Read the chain live. Verify every number. All from one console — no key, no account, no middleman.
Pulled straight from rpc.mainnet.chain.robinhood.com the moment
this page loaded, then refreshed every few seconds. Nothing here is cached, simulated, or estimated.
Robinhood Chain exposes a standard JSON-RPC endpoint with open CORS, which means you can query it from a server, a script, or straight from the browser. These are the same calls this page makes.
# returns the current block, hex-encoded
curl -X POST https://rpc.mainnet.chain.robinhood.com \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","method":"eth_blockNumber",
"params":[],"id":1}'
# {"jsonrpc":"2.0","id":1,"result":"0x5762a27"}
const rpc = 'https://rpc.mainnet.chain.robinhood.com';
async function call(method, params = []) {
const r = await fetch(rpc, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ jsonrpc: '2.0', method, params, id: 1 })
});
return (await r.json()).result;
}
const block = await call('eth_getBlockByNumber', ['latest', false]);
eth_chainId → network identifier (4663)
eth_blockNumber → current height
eth_getBlockByNumber → timestamp, gas used, tx count
eth_gasPrice → current gas price in wei
Open your console on this page and run the same calls. If our numbers ever disagree with the chain, the chain is right.
Add the network to any EVM wallet or SDK. These are the official public parameters.