ultimate_evm_tracing_reference
ultimate_evm_tracing_reference copied to clipboard
Change Erigon support for 'trace_rawTransaction'
Overview
Erigon doesn not support 'trace_rawTransaction' yet, according to https://github.com/erigontech/erigon/blob/main/cmd/rpcdaemon/README.md?plain=1#L344
PoC
Input:
curl --location 'url' --header 'Content-Type: application/json' --data '{
"jsonrpc": "2.0",
"method": "trace_rawTransaction",
"params": ["0x6ae1f98e148d21a75bb2ea42d11d076c4132e986747a75cd3b6fce5fe049e7aa",["trace","vmTrace","stateDiff"]], "id": 1
}'
Output:
{
"jsonrpc": "2.0",
"id": 1,
"error": {
"code": -32000,
"message": "the method is currently not implemented: trace_rawTransaction"
}
}