Table Description
Thelogs_decoded table contains decoded logs from mezo 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
| Column | Type | Description |
|---|---|---|
block_date | date | Date of the block (UTC) |
block_time | timestamp | Timestamp of the block containing this log |
block_number | bigint | Block number containing this log |
namespace | varchar | Project namespace (e.g., uniswap_v3) |
contract_name | varchar | Name of the contract that emitted the event |
contract_address | varbinary | Address of the contract that emitted the event |
tx_hash | varbinary | Hash of the transaction containing this log |
tx_from | varbinary | Address that initiated the transaction |
tx_to | varbinary | Address the transaction was sent to |
tx_index | integer | Position of the transaction within the block |
index | integer | Position of the log within the block |
signature | varbinary | Event signature hash (topic0) |
event_name | varchar | Decoded name of the event |
created_at | timestamp | When this record was created in Dune |