block Read the docs

Where chain data
speaks for itself.

Read the chain live. Verify every number. All from one console — no key, no account, no middleman.

Hood Synapse Core
block —
Live Console
Streaming
RPC Reference
Documented
Orbit Internals
Decoded
Block Feed
~4s cadence
Network Params
chainId 4663
A — CONSOLE

The chain, as it is right now.

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.

hood-synapse — live console · rpc.mainnet.chain.robinhood.com connecting
$eth_chainIdmainnet
$eth_blockNumberconnecting…
$eth_gasPricecurrent base
$block_timerolling average
$subscribe latest_blocks
B — QUERY IT

No key. Just read it.

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.

latest block height curl
# 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"}
read a block javascript
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]);
methods this page uses — full reference → json-rpc
eth_chainId            → network identifier (4663)
eth_blockNumber        → current height
eth_getBlockByNumber   → timestamp, gas used, tx count
eth_gasPrice           → current gas price in wei

Verify it yourself.

Open your console on this page and run the same calls. If our numbers ever disagree with the chain, the chain is right.

Network params
C — CONNECT

Connect to Robinhood Chain.

Add the network to any EVM wallet or SDK. These are the official public parameters.

Network nameRobinhood Chain Mainnet
Chain ID4663 (0x1237)
RPC URLhttps://rpc.mainnet.chain.robinhood.com
Gas tokenETH
Explorerrobinhoodchain.blockscout.com
StackArbitrum Orbit (Ethereum L2)
CORSOpen — browser requests allowed