RPC Endpoints
The Status Network provides public RPC (Remote Procedure Call) endpoints that allow you to interact with the network.
Public RPC URLβ
https://public.sepolia.rpc.status.network
Using the RPCβ
Adding to MetaMaskβ
For instructions on adding Status Network to your wallet using this RPC, see our Add Network guide.
Web3 Library Configurationβ
// Web3.js
const web3 = new Web3('https://public.sepolia.rpc.status.network');
// Ethers.js v5
const provider = new ethers.providers.JsonRpcProvider('https://public.sepolia.rpc.status.network');
Available Methodsβ
The RPC endpoint supports standard Ethereum JSON-RPC methods, including:
eth_blockNumber
: Get the latest block numbereth_getBalance
: Get account balanceeth_sendRawTransaction
: Send signed transactionseth_call
: Execute a call without creating a transactioneth_getLogs
: Get event logseth_getTransactionByHash
: Get transaction detailseth_getBlockByNumber
: Get block information
For a complete list of supported RPC methods and detailed specifications, refer to the Linea API Reference, as Status Network is based on Linea technology.
Rate Limitsβ
The public RPC endpoint has rate limiting to ensure fair usage:
- 10 requests per second per IP
- 100,000 requests per day per IP
For higher limits, get in touch with us on our Telegram Builder's Community.
Supportβ
If you experience issues with the RPC endpoint:
- Join our Telegram Community for support
- Consider implementing a fallback RPC strategy in your application