debug_traceBlockByNumber
Robinhood Chain / https://triport.io/rpc/robinhood
Minimum tier: Pro
Last updated:
Best-effort: held by one upstream operator (blockmachine), so availability has no SLA. A live response was confirmed by the 2026-09-07 local-vantage addendum at an 8 s cadence, and card 05 independently confirmed this exact method through the route smoke. The main EU run did not confirm it because blockmachine was rate-limited; that result is not evidence that the method is absent from the network.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| block | BlockTag | Yes | |
| options | TraceOptions | Yes |
Returns
| Field | Type |
|---|---|
| traces | array |
Examples
curl https://triport.io/rpc/robinhood \
-X POST -H 'Content-Type: application/json' \
-H 'Authorization: Bearer <api-key>' \
-d '{"jsonrpc":"2.0","id":1,"method":"debug_traceBlockByNumber","params":["<block>","<options>"]}'const res = await fetch("https://triport.io/rpc/robinhood", {
method: "POST",
headers: { "Content-Type": "application/json", Authorization: "Bearer <api-key>" },
body: JSON.stringify({
"jsonrpc": "2.0",
"id": 1,
"method": "debug_traceBlockByNumber",
"params": [
"<block>",
"<options>"
]
}),
});
const data = await res.json();import requests
resp = requests.post(
"https://triport.io/rpc/robinhood",
headers={"Authorization": "Bearer <api-key>"},
json={"jsonrpc":"2.0","id":1,"method":"debug_traceBlockByNumber","params":["<block>","<options>"]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Robinhood Chain.
- Clusters: mainnet.
- Credit cost: 5 per call.
FAQ
- What does debug_traceBlockByNumber do?
- Trace every transaction in a block selected by number.
- How many credits does debug_traceBlockByNumber cost?
- debug_traceBlockByNumber costs 5 credit(s) per call on Triport by default.
- Is debug_traceBlockByNumber available over WebSocket?
- debug_traceBlockByNumber is an HTTP JSON-RPC method.