TriportRPC

debug_traceCall

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

Minimum tier: Pro

Robinhood Chain method guide

Last updated:

Best-effort: observed OK on one node; the expected trace-capable blockmachine node was not measured after rate limiting. This does not imply trace is otherwise absent.

Parameters

debug_traceCall parameters
NameTypeRequiredDescription
callCallYes
blockBlockTagYes
optionsTraceOptionsYes

Returns

debug_traceCall return value
FieldType
resultobject

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_traceCall","params":["<call>","<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_traceCall",
  "params": [
    "<call>",
    "<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_traceCall","params":["<call>","<block>","<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_traceCall do?
Trace a read-only EVM call.
How many credits does debug_traceCall cost?
debug_traceCall costs 5 credit(s) per call on Triport by default.
Is debug_traceCall available over WebSocket?
debug_traceCall is an HTTP JSON-RPC method.