Skip to main content

Table Description

The logs_decoded table contains decoded logs from Ethereum transactions. The table matches topic0 to the event signature and the corresponding event name. The table does not contain the full event data and is not suitable for analysis of smart contract level data. For that, use the specific event tables as described in Event Logs. 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 log
block_numberbigintBlock number containing this log
namespacevarcharProject namespace (e.g., uniswap_v3)
contract_namevarcharName of the contract that emitted the event
contract_addressvarbinaryAddress of the contract that emitted the event
tx_hashvarbinaryHash of the transaction containing this log
tx_fromvarbinaryAddress that initiated the transaction
tx_tovarbinaryAddress the transaction was sent to
tx_indexintegerPosition of the transaction within the block
indexintegerPosition of the log within the block
signaturevarbinaryEvent signature hash (topic0)
event_namevarcharDecoded name of the event
created_attimestampWhen this record was created in Dune

Table Sample