Decoded Traces

The ethereum.decoded.traces table includes additional decoded columns on top of what is in the raw traces table.

Table Columns

Decoded uniswapV3SwapCallback trace call.

Column NameDescriptionExample

transaction_hash

Unique identifier of the transaction that contains this trace.

0xf17cc1d6e9a2684926e6da57fb5c81cd4832d590fd8c5305d0e6c25093527f06

transaction_index

The position of this transaction in the block that it belongs to. The first transaction has index 0.

182

from_address

The address of the sending party of this trace.

0x4f37c19212aa5b45392af720d73fa87cdb40edc1

to_address

The address of the receiving party of this trace (null for contract creation).

0xdef1c0ded9bec7f1a1670819833240f027b25eff

value

The amount of ether moved from the from_address to to_address.

0

input

The bytecode of the call that is made to another smart contract.

0xfa461e33fffffffffffffffffffffffffffffffffffffffffffffffffffffffdffa695cf00000000000000000000000000000000000000000000036327edaad7f8a32cc000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000080000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c23446fafa77ae29f01c4f1bddf411e69ee4b8e4

output

The bytecode answer the smart contract that was called gives back.

0x

trace_type

The value of the method such as call, create, create2, suicide.

call

call_type

REWARD_TYPE

call

reward_type

Populated when trace_type =reward. Possible values: block, uncle

gas

Gas provided with the trace call, in wei.

126,406

gas_used

The amount of gas consumed, in wei.

18,168

subtraces

Number of children traces.

1

trace_address

The address of the trace within the call graph. More detail to come soon.

0,0,2

error

Human readable developer error message. Examples: "Out of gas", "Reverted", "Bad instruction", "Bad jump destination"

status

Success status of the trace. Either 1 (success) or 0 (failure).

1

block_timestamp

The time when the block that contains this trace was included on the blockchain.

2022-02-23 20:16:24

block_number

The length of the chain, in blocks.

14,264,414

block_hash

Unique identifier of the block that includes this trace.

0x879dbd583e96945b12086cbb7db47b75b1906084b8d6ae21d6e99d1ee2f5c857

trace_id

Unique identifier for this trace. Generated by combining the trace_type, transaction_hash and trace_address.

call_0xf17cc1d6e9a2684926e6da57fb5c81cd4832d590fd8c5305d0e6c25093527f06_0_0_2

selector

Selector of the txn.

0xfa461e33

name

Name of the function call.

uniswapV3SwapCallback

params

Parameters of the decoded input data, in JSON format.

{ "amount0": "-8595794481", "amount1": "15996204255487707000000", "data": "0x000000000000000000000000e41d2489571d322189246dafa5ebde1f4699f498000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb480000000000000000000000000000000000000000000000000000000000002710000000000000000000000000c23446fafa77ae29f01c4f1bddf411e69ee4b8e4" }

_signature

Signature of the function call.

uniswapV3SwapCallback(int256,int256,bytes)

_error

Error message for input data that cannot be decoded from contract ABI.

_materialized_at

The timestamp of the data materialization.

2023-02-14 16:46:00.619 +0000

Last updated