Skip to main content
POST
debug_traceBlockByHash
Arc API method that returns detailed traces for all transactions in a block specified by block hash. This is useful for analyzing all contract interactions within a specific block.
Get your own node endpoint todayStart for free and get your app to production levels immediately. No credit card required.You can sign up with your GitHub, X, Google, or Microsoft account.

Parameters

  • blockHash — the hash of the block to trace
  • tracerConfig — (optional) tracer configuration object:
    • tracer — tracer type (e.g., callTracer, prestateTracer)
    • timeout — (optional) timeout for the trace
    • tracerConfig — (optional) tracer-specific configuration

Response

  • result — array of trace objects, one for each transaction in the block. The format depends on the tracer used.
For callTracer, each trace contains:
  • from — sender address
  • to — recipient address
  • gas — gas provided
  • gasUsed — gas consumed
  • input — call data
  • output — return data
  • calls — nested array of internal calls
  • type — call type (CALL, DELEGATECALL, etc.)

debug_traceBlockByHash code examples

Body

application/json
id
integer
default:1
jsonrpc
string
default:2.0
method
string
default:debug_traceBlockByHash
params
array

Response

200 - application/json

Returns the result of debug_traceBlockByHash.

jsonrpc
string
id
integer
result
object[]
Last modified on August 3, 2026