rpc.ordofi.network · Robinhood Chain · chain 4663

Private Send is now default.

Every signed transaction is routed through our private execution path before reaching the sequencer. Simulated first, refused if it would revert, never on a public relay. No toggle. No separate API. Just use rpc.ordofi.network.

Read the gateway docs one click · MetaMask, Rabby, Rainbow and any EIP-3085 wallet
Endpoint
checking…
Chain head
Round trip
Protected volume
through rpc.ordofi.network
Transactions
simulated, delivered privately
MEV observed
on-chain, last 24h
Rebate share
90%to users · 5% apps · 5% protocol
Active searchers
last 24h on-chain

What happens to a transaction here

Three things, in order, on every eth_sendRawTransaction, for wallets with no key at all.

01

Simulated first

Every send is executed from the recovered sender against current state before it is forwarded. If it would revert, it is rejected with code -32000 and never reaches the sequencer, no gas for a guaranteed failure. If it would pay an address nobody controls (a precompile, the zero or dead address, the classic unwrapWETH9(…, address(1)) mistake), or hand an unlimited allowance to a plain wallet, it is rejected the same way. ordo_sendRawTransaction with { "allowUnlimitedApproval": true } overrides it if you meant it.

02

Private Send

Transactions never touch a public mempool before execution. They go to the sequencer operator's own ingress and to nobody else first. No toggle, no separate endpoint, no wallet extension: if your wallet uses Ordo RPC, private delivery is the default.

03

Backrun pays you

With a key that carries a rebate address, transactions that move a pool go through a sealed-bid, second-price auction for the right to rebalance it. The clearing price is charged on-chain and 90% comes back as rebates, to the user who created it.

Get a key →

Network parameters

Add these manually in any wallet, or use the button above.

Network nameRobinhood Chain
RPC URLhttps://rpc.ordofi.network copy
WebSocketwss://rpc.ordofi.network copy
Chain ID4663 (0x1237)
CurrencyETH
Block explorerrobinhoodchain.blockscout.com
Send pathPrivate Send · our node → sequencer · never a public relay
Tracingdebug_traceTransaction · no key · last ~1.2M blocks
Authnone for wallets · x-api-key for plans, auction routing & bundles
Rate limit3,000 upstream reads/min per IP anonymous · per plan with a key

From code

eth_sendRawTransaction → automatically private. Standard eth_* methods pass through. OrdoFi adds ordo_simulate, ordo_sendPrivateTransaction, ordo_sendBundle, ordo_bundlerInfo and ordo_quoteSwap.

# Private Send, same method every wallet already calls
curl https://rpc.ordofi.network \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_sendRawTransaction","params":["0x02f8…"]}'

# dry-run first, no key needed
curl https://rpc.ordofi.network \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"ordo_simulate","params":["0x02f8…"]}'

# and when it already failed: which call reverted, no key
curl https://rpc.ordofi.network \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"debug_traceTransaction","params":["0x…",{"tracer":"callTracer"}]}'

Tracing is behind a paid key almost everywhere, because a hosted provider pays for every replay. We run the node, so it is open: debug_traceTransaction, debug_traceCall and the block tracers, no key, 120/min per IP. Our node holds about a day and a half of state and traces inside it in tens of milliseconds. Older transactions fall through to a fallback upstream; when that is unavailable the error says so plainly.

The chain's own RPC is HTTP only, so anything watching it has to poll. wss://rpc.ordofi.network answers eth_subscribe for newHeads and logs, and carries ordinary calls on the same socket. No key. Watch it →

# every block, pushed, no key
wscat -c wss://rpc.ordofi.network
> {"jsonrpc":"2.0","id":1,"method":"eth_subscribe","params":["newHeads"]}

# or from viem, watchBlocks and watchEvent just work
const client = createPublicClient({ chain, transport: webSocket("wss://rpc.ordofi.network") });
client.watchBlocks({ onBlock: (b) => console.log(b.number) });

Keys and plans are self-served at app.ordofi.network/account; the method reference, error codes and bundle semantics are in the docs.

Build on Robinhood Chain without the plumbing

Wallets need nothing. Apps, bots and terminals get a key with a budget in ten seconds. Priced in dollars, paid in ETH or USDG. One key works on every network Ordo serves.