Skip to main content

Overview

OrbitFlare provides node infrastructure for Robinhood Chain, the EVM-compatible Ethereum Layer 2 that Robinhood launched on mainnet in July 2026. The chain is built on the Arbitrum Orbit (Nitro) stack, uses ETH for gas, and is home to Robinhood’s tokenized stocks, which trade around the clock and integrate with DeFi protocols such as Uniswap and Chainlink from day one. If you are building trading systems, indexers, or DeFi integrations around tokenized equities, OrbitFlare gives you direct node access without operating Nitro infrastructure yourself. Because the chain is fully EVM-compatible, standard tooling like Hardhat, Foundry, ethers.js, viem, and Wagmi works against the endpoint without modification, and the chain has first-class support for ERC-4337 account abstraction.
Robinhood Chain node access is currently offered as a free trial. Reach out to the team to get provisioned.

Endpoints

Robinhood Chain mainnet uses chainId: 4663 with ETH as the gas token.

Access

Access is controlled by IP allowlisting rather than API keys. When requesting a trial, include the public IP addresses of the servers that will connect. Requests from addresses that are not on the allowlist are rejected.

Making RPC Calls

Robinhood Chain is EVM-compatible and speaks standard JSON-RPC 2.0. Pass Content-Type: application/json with a POST body:

WebSocket Subscriptions

Real-time subscriptions run over the WebSocket endpoint. In Node.js, install the ws package (npm install ws):
Robinhood Chain produces blocks roughly every 100 milliseconds, so expect a much faster newHeads cadence than on Ethereum mainnet or most L2s.

Supported Methods

The node exposes the standard EVM JSON-RPC surface, including:
As an Arbitrum Nitro chain, the node also serves the arb_* extension methods alongside the standard eth_* set. For the full method reference, see the Ethereum JSON-RPC specification.

Example: Reading a Tokenized Stock

The chain’s flagship assets are Robinhood’s tokenized stocks, which are standard ERC-20 contracts. Here is the NVIDIA token (NVDA) read directly from chain state:
Search the explorer carefully before hardcoding token addresses: many copycat tokens use the NVDA symbol. The official Robinhood stock tokens carry the • Robinhood Token naming, and the address above is the one held by tens of thousands of accounts.

Use Cases

Tokenized Stock Trading

Trade and monitor on-chain equities like NVDA and AAPL 24/7, without market-hours limits.

DeFi Integrations

Build against Uniswap pools and Chainlink feeds live on the chain since launch.

Indexers & Analytics

Follow 100ms blocks in real time over WebSocket and keep your own view of chain state.

Get Started

Request a Trial on Discord

Open a ticket in the OrbitFlare Discord with your use case and the server IPs to allowlist, and we will get you connected.

Dashboard

Manage your OrbitFlare services, keys, and plans from the dashboard.

Official Resources