OP Mainnet
debug_traceCall250 credits
Executes a call and returns a full structural trace (debug API).
Parameters
| Name | Type | Description |
|---|---|---|
| callObject | Object | Transaction call object. |
| block | QUANTITY | TAG | Block number or tag. |
| options | Object | Tracer 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"
}
]
}'