debug_traceblockbyhash - Worldchain

Example code for the debug_traceBlockByHash JSON-RPC method. Complete guide on how to use debug_traceBlockByHash JSON-RPC in GetBlock Web3 documentation.

Returns all traces of all transactions in a block by block hash on the World Chain network.

Parameters

Parameter
Type
Description

blockHash

string

Hash of the block to trace

tracerConfig

object

(Optional) Tracer configuration options

Request

curl --location --request POST 'https://go.getblock.io/<ACCESS-TOKEN>/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "jsonrpc": "2.0",
    "method": "debug_traceBlockByHash",
    "params": ["0x9b14d73f45c836bfb0e1f59453c39fe8cddab45a0f78670dc6190e5c85b65a8e", {}],
    "id": "getblock.io"
}'

Response

{
    "jsonrpc": "2.0",
    "id": "getblock.io",
    "result": [
        {
            "txHash": "0x...",
            "result": {...}
        }
    ]
}

Response Parameters

Field
Type
Description

result

array

Array of trace results for each transaction in the block

Use Case

The debug_traceBlockByHash method on World Chain is typically used for:

  • Block analysis

  • Transaction debugging

  • Execution tracing

  • Historical analysis

Error Handling

Status Code
Error Message
Cause

403

Forbidden

Missing or invalid ACCESS-TOKEN

Web3 Integration

Last updated

Was this helpful?