TriportRPC

ETH network documentation

Robinhood Chain

MainnetChain ID 466327 RPC methods
HTTPS endpointhttps://triport.io/rpc/robinhood

Robinhood Chain is an EVM-compatible Orbit L2. Triport publishes the measured mainnet surface for chain ID 4663 (0x1237): 27 catalogued JSON-RPC methods, two JSON-RPC WebSocket subscriptions, and a separate live sequencer feed.

Method / EndpointNetworkChain IDAuthenticationRequired scopeTier / rate limit
POST https://triport.io/rpc/robinhoodRobinhood Chain mainnet4663x-token: $TRIPORT_API_KEYrobinhood:rpcCategory-specific RPS; see Limits

Endpoints

SurfaceEndpointReference
HTTPShttps://triport.io/rpc/robinhoodBackend path /rpc/robinhood
WSSwss://triport.io/ws/robinhoodRegistry path /ws/robinhood
WSSwss://triport.io/ws/robinhood-feedPro+; robinhood:feed scope
Stream contractrobinhood feedAsyncAPI
Stream contractrobinhood wsAsyncAPI

Quickstart

curl https://triport.io/rpc/robinhood \
  -H "x-token: $TRIPORT_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_blockNumber","params":[]}'

What's available

27 JSON-RPC methods in the OpenRPC catalog:

  • robinhood_read_rpc_heavy: 7
  • robinhood_read_rpc: 18
  • robinhood_send_tx: 2

Account and pending-state reads, block receipts, logs, proofs, four debug methods, and both standard and conditional transaction submission are available through the published catalog. WebSocket subscriptions start at Basic; the live sequencer feed starts at Pro.

Limits

See network limits and Rate Limits & Tiers.

CategoryFreeBasicProBusinessEnterprise
robinhood_read_rpc1520100250unlimited
robinhood_read_rpc_heavy1520100250unlimited
robinhood_send_tx353080unlimited

Errors

See network-specific errors and the shared error reference.

Methods

robinhood read rpc heavy (7)

robinhood read rpc (18)

robinhood send tx (2)

Streams

SDK

The generated TypeScript client includes this network:

const result = await c.robinhood.call("eth_blockNumber", []);

Equivalent requests can be made with the Python SDK or the curl example above.

The OpenRPC document and methods catalog define the RPC contract. Pages in this guide are generated and checked for exact method-set equality with that catalog.