ETH network documentation
Robinhood Chain
https://triport.io/rpc/robinhoodRobinhood 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 / Endpoint | Network | Chain ID | Authentication | Required scope | Tier / rate limit |
|---|---|---|---|---|---|
POST https://triport.io/rpc/robinhood | Robinhood Chain mainnet | 4663 | x-token: $TRIPORT_API_KEY | robinhood:rpc | Category-specific RPS; see Limits |
Endpoints
| Surface | Endpoint | Reference |
|---|---|---|
| HTTPS | https://triport.io/rpc/robinhood | Backend path /rpc/robinhood |
| WSS | wss://triport.io/ws/robinhood | Registry path /ws/robinhood |
| WSS | wss://triport.io/ws/robinhood-feed | Pro+; robinhood:feed scope |
| Stream contract | robinhood feed | AsyncAPI |
| Stream contract | robinhood ws | AsyncAPI |
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: 7robinhood_read_rpc: 18robinhood_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.
| Category | Free | Basic | Pro | Business | Enterprise |
|---|---|---|---|---|---|
robinhood_read_rpc | 15 | 20 | 100 | 250 | unlimited |
robinhood_read_rpc_heavy | 15 | 20 | 100 | 250 | unlimited |
robinhood_send_tx | 3 | 5 | 30 | 80 | unlimited |
Errors
See network-specific errors and the shared error reference.
Methods
robinhood read rpc heavy (7)
debug_traceBlockByHashdebug_traceBlockByNumberdebug_traceCalldebug_traceTransactioneth_getBlockReceiptseth_getLogseth_getProof
robinhood read rpc (18)
eth_blockNumbereth_calleth_chainIdeth_estimateGaseth_feeHistoryeth_gasPriceeth_getBalanceeth_getBlockByHasheth_getBlockByNumbereth_getCodeeth_getStorageAteth_getTransactionByHasheth_getTransactionCounteth_getTransactionReceipteth_maxPriorityFeePerGaseth_syncingnet_versionweb3_clientVersion
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.
Related
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.