OP Mainnet

debug_traceCall250 credits

Executes a call and returns a full structural trace (debug API).

Network: optimism

Parameters

NameTypeDescription
callObjectObjectTransaction call object.
blockQUANTITY | TAGBlock number or tag.
optionsObjectTracer options. (optional)

Returns

Type

Object

Trace result.

Code examples

curl https://optimism-mainnet.rpcnode.dev/7c9e6679-7425-40de-944b-e07fc1f90ae7 \
  -X POST \
  -H 'content-type: application/json' \
  -d '{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "debug_traceCall",
  "params": [
    {
      "to": "0x0000000000000000000000000000000000000000",
      "data": "0x"
    },
    "latest",
    {
      "tracer": "callTracer"
    }
  ]
}'