Debug/trace APIs on Gnosis elastic nodes
complete
Eugene Aseev
complete
We are currently running Nethermind for Elastic Nodes. The debug & trace APIs are available, including the
withLog
parameterHere's an example for https://gnosisscan.io/tx/0x4a379c33e55c6b4d7fb81fd088be1c695ee2b03ad9529cd6df2e08ae55c61f7d#eventlog
You should see 0xace543 in the output
curl --request POST \
--url <your_gnosis_endpoint> \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '
{
"jsonrpc": "2.0",
"method": "debug_traceTransaction",
"id": 1,
"params": [
"0x4a379c33e55c6b4d7fb81fd088be1c695ee2b03ad9529cd6df2e08ae55c61f7d",
{
"tracer": "callTracer",
"tracerConfig": {
"onlyTopCall": false,
"withLog": true
}
}
]
}
'
Feel free to reach out if you have any questions: https://support.chainstack.com/hc/en-us/requests/new
Eugene Aseev
Merged in a post:
Full debug API support on Gnosis
S
Sway Wu
The argument of
withLog
is not work for debug_trace* APIS
Sway Wu
there is no
withLog
in the debug api ~