trace_transaction

Returns all traces of given transaction.

This method will use 80 Compute Units.


Parameters

hash - String - Required - The hash of a transaction

Returns

array - The block traces, which have the following fields (all return types are hexadecimal unless otherwise noted):

  • action - object The ParityTrace action object containing call details

    • from - string - The address of the sender

    • callType - string - The type of method such as call, staticcall, delegatecall

    • gas - string - The gas provided by the sender, encoded as hexadecimal

    • input - string - The input data sent along with the transaction

    • to - string - The address of the receiver

    • value - string - The integer of the value sent with this transaction, encoded as hexadecimal

  • blockHash - string - The hash of the block where this transaction was included

  • blockNumber - integer - The block number where this transaction was in

  • result - object - The result of the trace execution

    • gasUsed - string -The amount of gas used by this specific transaction

    • output - string - The return value of the contract call, empty if no RETURN executed

  • subtraces - integer - The number of subtraces (internal calls) made by the transaction

  • traceAddress - array - The list of addresses where the call executed, including parent addresses and call order

  • transactionHash - string - The hash of the transaction

  • transactionPosition - integer - The transaction index position within the block

  • type - string - The type of the trace, such as call or create

Last updated

Was this helpful?