Robinhood Chain RPC, chain ID 4663, and the block explorer
Everything you must type into a wallet, a node client, or a script to reach Robinhood Chain mainnet. Each value below was read from a primary source on the date shown.
Last verified: 2026-08-25
Network parameters
| Field | Mainnet | Testnet |
|---|---|---|
| Network name | Robinhood Chain | Robinhood Chain Testnet |
| Chain ID | 4663 | 46630 |
| Chain ID (hex) | 0x1237 | 0xB626 |
| HTTP RPC | https://rpc.mainnet.chain.robinhood.com | https://rpc.testnet.chain.robinhood.com |
| Explorer | https://robinhoodchain.blockscout.com | https://explorer.testnet.chain.robinhood.com |
| Gas token | ETH (18 decimals) | Test ETH |
| Faucet | Not applicable | https://faucet.testnet.chain.robinhood.com |
| Live since | 2026-07-01 | 2026-02-10 |
Scroll the table sideways on a narrow screen.
Robinhood describes the chain as a permissionless, Ethereum-compatible Layer 2. Chainstack records the architecture as an Arbitrum Nitro rollup with a Robinhood-operated sequencer, and dispute resolution through BoLD with a permissioned validator set. Transactions therefore inherit Ethereum finality, which arrives roughly thirteen minutes after the batch is posted to Ethereum. Soft confirmation from the sequencer is sub-second. Ordering at the sequencer is first-come, first-served by arrival time. There is no native transaction privacy: every transaction and every contract is readable through the public RPC and through Blockscout.
Add the network to a wallet
Most wallets accept an EIP-3085 request or the same values typed by hand. Verify the RPC host against Robinhood's own support article before you paste anything. A wrong RPC host is a standard phishing route.
{
"chainId": "0x1237",
"chainName": "Robinhood Chain",
"rpcUrls": ["https://rpc.mainnet.chain.robinhood.com"],
"nativeCurrency": { "name": "Ether", "symbol": "ETH", "decimals": 18 },
"blockExplorerUrls": ["https://robinhoodchain.blockscout.com"]
}
To move funds in, Robinhood points at the canonical Arbitrum bridge at portal.arbitrum.io/bridge and at partner bridging routes. The canonical bridge is the slow, boring path and it is the one with the fewest moving parts.
Gas and block times
Average block time is about 100 milliseconds. Blockscout's own example output for the chain showed an average block time of 100 ms across more than 1.28 million blocks and more than 8.4 million transactions. Gas is paid in ETH and sits at sub-cent rates. A plain Uniswap v4 swap on the chain costs about $0.008 at the fee levels observed in August 2026.
Two cost caveats matter. First, Blockscout reported that trading actions were gas-free for users for the first ninety days after mainnet, while contract deployments and other developer transactions still paid gas. Ninety days from 2026-07-01 lands at the end of September 2026, so treat any gas-free behaviour you see as temporary and check it yourself. Second, a third-party network directory noted that Robinhood has been subsidising gas above $5 on wallet swaps. We could not confirm that figure against a Robinhood page, so we do not repeat it as fact.
Public RPC limits
The public endpoint is generous but it is shared. In our own testing the practical ceiling is about 100 requests per second per IP address, and a single client may hold one websocket connection at a time. If you are building an indexer, poll over HTTP, stay well under 50 requests per second, and treat the websocket as a convenience rather than a firehose. Anything that needs guaranteed headroom, archive depth, or trace calls belongs on a paid provider.
RPC providers
Robinhood's developer documentation names QuickNode, Alchemy, Blockdaemon, dRPC, and Validation Cloud. Goldsky, Tenderly, Chainstack, and thirdweb also publish support. Chainstack offers both mainnet 4663 and testnet 46630, on either geo-balanced shared nodes or dedicated nodes. QuickNode publishes a provider comparison of its own, which is worth reading with the usual caution about a vendor ranking itself first.
Pick a provider on three questions. Does it serve archive state, or only recent state? Does it support debug_traceTransaction, which you need for internal-transfer accounting? What is the real rate limit on the tier you will actually buy, rather than the headline number?
The Blockscout explorer and its API
Blockscout is the official explorer and has indexed the chain from block one. Three API shapes are available, all keyed to chain 4663:
- Etherscan-compatible JSON RPC v2:
https://api.blockscout.com/v2/api?chain_id=4663&module=... - Per-chain JSON RPC:
https://api.blockscout.com/4663/api?module=... - REST v2:
https://api.blockscout.com/4663/api/v2/addresses/... - Ethereum JSON-RPC by POST:
https://api.blockscout.com/4663/json-rpc
Read the record cap before you design around this API. Blockscout documents that txlistinternal and eth_getLogs are limited to 1,000 records on Robinhood Chain, to keep the service responsive. You must paginate in batches of 1,000 or smaller. That cap is the reason we do not use the explorer as a primary log firehose, and neither should you.
| Tier | Rate limit | Credits | Price |
|---|---|---|---|
| Free | 5 rps | 100K / day | $0 |
| Builder | 15 rps | 100M / month | $49 / mo |
| Pro | 30 rps | 500M / month | $199 / mo |
| Business | 50 rps | 3B / month | $999 / mo |
Most endpoints consume 20 credits per call, so divide the credit figure by 20 for a realistic call budget.
Contracts worth bookmarking
These addresses were read from verified contract pages on Blockscout on 2026-08-25. Check them yourself before you send a transaction anywhere near them.
- Uniswap v4 PoolManager:
0x8366a39CC670B4001A1121B8F6A443A643e40951 - pools.trade entry contract:
0x0000ffffbe8efe702c8703ae3477ff5de3d319c0 - pools.trade token factory:
0x000000e200088d55c39a11f609e5f667729ad49b
We deliberately do not publish event topic hashes for the launchpad. The correct way to get those is to pull real logs from the factory and decode them against the verified ABI on Blockscout. Topics copied out of a blog post go stale without warning.
What we could not verify. Robinhood's own support article does not state the block time, the gas cost, or the mainnet launch date, so those three come from Blockscout, Chainstack, and a third-party network directory instead. We have not found a Robinhood page that confirms the ninety-day gas-free window, and we did not find a published websocket URL for the public endpoint.
Related pages
- How pools.trade works — the launchpad that produces most of the chain's token activity.
- Robinhood Chain token screeners — if you would rather read a chart than an RPC response.
- Scams and safety on Robinhood Chain — approval hygiene and honeypot checks.