Skip to main content

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 number
  • eth_getBalance: Get account balance
  • eth_sendRawTransaction: Send signed transactions
  • eth_call: Execute a call without creating a transaction
  • eth_getLogs: Get event logs
  • eth_getTransactionByHash: Get transaction details
  • eth_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 Telegram.

Support

If you experience issues with the RPC endpoint:

  • Join our Telegram Community for support
  • Consider implementing a fallback RPC strategy in your application