Skip to main content

Table Description

The traces_decoded table contains decoded traces from mezo transactions. The table matches MethodID, which consists of the first 4 bytes of any eth call, to the trace signature and the corresponding Method name. The table does not contain the full trace data and is not suitable for analysis of smart contract level data. For that, use the specific event tables as described in Call-tables.This table is great for gaining a high level understanding of the types of events that are being emitted by a smart contract or smart contracts of a certain protocol.

Column Descriptions

ColumnTypeDescription
block_datedateDate of the block (UTC)
block_timetimestampTimestamp of the block containing this trace
block_numberbigintBlock number containing this trace
namespacevarcharProject namespace (e.g., uniswap_v3)
contract_namevarcharName of the contract that was called
tovarbinaryAddress of the contract that was called
trace_addressarray(bigint)Path of this trace within the call tree
tx_hashvarbinaryHash of the parent transaction
tx_fromvarbinaryAddress that initiated the transaction
tx_tovarbinaryAddress the transaction was sent to
tx_indexintegerPosition of the transaction within the block
successbooleanWhether this trace executed successfully
signaturevarbinaryFunction signature (first 4 bytes of calldata)
function_namevarcharDecoded name of the function called
created_attimestampWhen this record was created in Dune

Table Sample