debug_traceTransaction
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. 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
| Name | Type | Required | Description |
|---|---|---|---|
| transactionHash | Hash | Yes | |
| options | TraceOptions | Yes |
Returns
| Field | Type |
|---|---|
| trace | TraceFrame |
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_traceTransaction","params":["<transactionHash>","<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_traceTransaction",
"params": [
"<transactionHash>",
"<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_traceTransaction","params":["<transactionHash>","<options>"]},
)
print(resp.json())Usage
- Transport: HTTP (JSON-RPC).
- Chain: Robinhood Chain.
- Clusters: mainnet.
- Credit cost: 5 per call.
FAQ
- What does debug_traceTransaction do?
- Trace one transaction.
- How many credits does debug_traceTransaction cost?
- debug_traceTransaction costs 5 credit(s) per call on Triport by default.
- Is debug_traceTransaction available over WebSocket?
- debug_traceTransaction is an HTTP JSON-RPC method.