debug_traceBlockByHash

It accepts a block hash and will replay the block that is already present in the database.

Parameters:

String - The hash of a block.

Object - tracer

  • tracer: string - the type of tracer. Currently supports callTracer and prestateTracer

Returns:

Array - Block traces

Example:

// Request
curl https://cronos.blockpi.network/v1/rpc/your-rpc-key -X POST -H "Content-Type: application/json" --data '{"method":"debug_traceBlockByHash","params":["0xeae7a314317c565cca1ced26f09d1cd50a8a0c31c40336e5e9244f799cd5de20", {"tracer": "callTracer"}],"id":1,"jsonrpc":"2.0"}'

// Result
{
    "jsonrpc": "2.0",
    "id": 1,
    "result":{as described above}
}

Last updated