trace_block
Retrieves detailed execution information about transactions within a given block number. This is similar to debug_traceBlockByNumber.
Parameters
Quantity or tag - choose 1 of the following options:
A hexadecimal block number.
"earliest"- the earliest/genesis block."latest"- the latest mined block."safe"- the latest safe head block."finalized"- the latest finalized block."pending"- the pending state/transactions.
Sample Request
curl https://lb.nodies.app/v1/<INSERT URL> \
-H "x-api-key: <API-KEY>" \
-X POST \
-H "Content-Type: application/json" \
-d '{
"id": 1,
"jsonrpc": "2.0",
"method": "trace_block",
"params": [
"0x2973e"
]
}'Sample Response
Last updated