Files
2026-04-14 11:40:52 +02:00

2.5 KiB

title, description, keywords, slug
title description keywords slug
Status Network RPC: Public Endpoints & Configuration Access official Status Network RPC endpoints. Configure MetaMask or your dApp for gasless execution using our rate-limited, privacy-preserving infrastructure.
Status Network RPC
JSON-RPC
blockchain API
web3 configuration
MetaMask setup
blockchain development
/tools/core-infrastructure/rpc-endpoints

import AddToMetaMask from '@site/src/components/AddToMetaMask';

RPC Endpoints

The Status Network provides public RPC (Remote Procedure Call) endpoints that allow you to interact with the network.

:::warning Sepolia Testnet Sunset The Sepolia-based testnet is subject to be sunsetted by the end of April 2026. Please migrate to the new Status Network Hoodi Testnet below. Refer to the migration guide for more information. :::

Status Network Hoodi Testnet — Public RPC URL

https://public.hoodi.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.hoodi.rpc.status.network');

// Ethers.js v5
const provider = new ethers.providers.JsonRpcProvider('https://public.hoodi.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 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