curl --request POST \
--url https://api.mainnet.abs.xyz/debug_traceCall \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "debug_traceCall",
"params": [
{
"from": "0x1111111111111111111111111111111111111111",
"to": "0x2222222222222222222222222222222222222222",
"data": "0xa9059cbb000000000000000000000000a7253f21f1d9f5ce90da63a6c2b5548226cc9627000000000000000000000000000000000000000000000000000000000001e240"
},
"latest",
{
"tracer": "callTracer"
}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
Returns debug trace of a call
curl --request POST \
--url https://api.mainnet.abs.xyz/debug_traceCall \
--header 'Content-Type: application/json' \
--data '{
"jsonrpc": "2.0",
"id": 1,
"method": "debug_traceCall",
"params": [
{
"from": "0x1111111111111111111111111111111111111111",
"to": "0x2222222222222222222222222222222222222222",
"data": "0xa9059cbb000000000000000000000000a7253f21f1d9f5ce90da63a6c2b5548226cc9627000000000000000000000000000000000000000000000000000000000001e240"
},
"latest",
{
"tracer": "callTracer"
}
]
}'
{
"jsonrpc": "2.0",
"id": 1,
"result": {}
}
Returns the debug trace
The response is of type any
.
Was this page helpful?