debug
traceBlockByHash(id: BlockHash
, params?: TraceParams
): Vec<TransactionTrace>
BlockHash
, params?: TraceParams
): Vec<TransactionTrace>
jsonrpc:
debug_traceBlockByHash
summary:
traceBlockByHash
accepts a block hash and will replay the block that is already present in the database. For the second parameter, see theTraceParams
reference.
traceBlockByNumber(id: BlockNumber
, params?: TraceParams
): Vec<TransactionTrace>
BlockNumber
, params?: TraceParams
): Vec<TransactionTrace>
jsonrpc:
debug_traceBlockByNumber
summary:
traceBlockByNumber
accepts a block number and will replay the block that is already present in the database. For the second parameter, see theTraceParams
reference.
traceTransaction(transaction_hash: hash
, params?: TraceParams
): TransactionTrace
hash
, params?: TraceParams
): TransactionTrace
jsonrpc:
debug_traceTransaction
summary: The
traceTransaction
debugging method will attempt to run the transaction in the exact same manner as it was executed on the network. It will replay any transaction that may have been executed prior to the current one before it finally attempts to execute the transaction that corresponds to the given hash. For the second parameter, see theTraceParams
reference.
Last updated