ROBINHOOD CHAIN

The network, measured.

RPC endpoint, chain ID, gas fees and block time — read from the network a few minutes ago rather than copied from documentation. Everything below is checkable, and most of it is not written down anywhere else.

4663

Chain ID

0.41870

Gas price, gwei

0.101s

Block time

$0.02183

Cost of a transfer

Measured at block 55,547,438, Sun, 06 Sep 2026 00:25:31 GMT.

Network details

Everything a wallet or a script needs. Add the network to MetaMask with one click, or copy the fields.

Network nameRobinhood Chain
RPC URLhttps://rpc.mainnet.chain.robinhood.com
Chain ID4663
Currency symbolETH
Decimals18
Block explorerhttps://robinhoodchain.blockscout.com

Add to your wallet

One click in MetaMask, Rabby or any wallet that supports the standard request.

What the public RPC will and will not do

This is the part nobody writes down, and the part that costs an afternoon to discover. The public endpoint serves ordinary reads without complaint: balances, contract calls, blocks, receipts.

Two things it refuses. It does not keep archive state, so asking for a balance at a block from months ago returns an error rather than a number. And eth_getLogs is capped by the size of the response rather than by the block range — a hundred blocks of a busy contract can exceed it while ten thousand blocks of a quiet one do not.

The practical consequence is that reading a contract's history means walking it in windows and shrinking the window when a request comes back refused, rather than picking a range and hoping.

  • eth_call, eth_getBalance, eth_getBlockByNumber — served normally
  • eth_getLogs — capped by response size, not block count
  • Archive state on old blocks — refused
  • No key required, no rate limit documented

Speed, and what it changes

Blocks arrive roughly every 0.101 seconds — about 859,701 a day, close to seventy times Ethereum's rate. Recent blocks carried an average of 11.4 transactions each.

The consequence that matters is not the speed itself. It is the ordering: Robinhood Chain sequences transactions by arrival rather than by fee. Paying more gas buys no position at all, which makes every priority-fee strategy from other chains pointless here.

What it rewards instead is latency — preparing everything in advance so a transaction can leave the instant it becomes valid. Why that changes the approach.

Launching a token on this chain?

Arrow creates it on PonsFamily and takes the opening with up to 32 wallets.

See the bundler