TriportRPC

debug_traceBlockByHash

Robinhood Chain / https://triport.io/rpc/robinhood

Minimum tier: Pro

Robinhood Chain method guide

Last updated:

Best-effort: held by one upstream operator (blockmachine), so availability has no SLA. The method-specific live response was confirmed by the 2026-09-07 local-vantage addendum at an 8 s cadence; card 05 independently confirmed routing of the same evm.trace namespace with debug_traceBlockByNumber. The main EU run did not confirm this method because blockmachine was rate-limited; that result is not evidence that the method is absent from the network.

Parameters

debug_traceBlockByHash parameters
NameTypeRequiredDescription
blockHashHashYes
optionsTraceOptionsYes

Returns

debug_traceBlockByHash return value
FieldType
tracesarray

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_traceBlockByHash","params":["<blockHash>","<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_traceBlockByHash",
  "params": [
    "<blockHash>",
    "<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_traceBlockByHash","params":["<blockHash>","<options>"]},
)
print(resp.json())

Usage

  1. Transport: HTTP (JSON-RPC).
  2. Chain: Robinhood Chain.
  3. Clusters: mainnet.
  4. Credit cost: 5 per call.

FAQ

What does debug_traceBlockByHash do?
Trace every transaction in a block selected by hash.
How many credits does debug_traceBlockByHash cost?
debug_traceBlockByHash costs 5 credit(s) per call on Triport by default.
Is debug_traceBlockByHash available over WebSocket?
debug_traceBlockByHash is an HTTP JSON-RPC method.