Table Details
| Property | Value |
|---|---|
| Table Name | ethereum_sepolia.decoded.logs |
| Table Status | Production-Ready |
| Unique Key | block_timestamp::date, transaction_hash, log_index |
| Clustering Key(s) | to_date("block_timestamp") |
| Search Optimization | transaction_hash, address, topic0 |
Table Columns
| Column Name | Data Type | Description |
|---|---|---|
| name | VARCHAR(16777216) | Decoded event log name. |
| params | VARIANT | Decoded parameters in JSON format. |
| signature | VARCHAR(16777216) | Event log signature. |
| transaction_hash | VARCHAR(66) | Unique identifier of the transaction that contains this log. |
| transaction_index | NUMBER(38,0) | The position of this transaction in the block. First transaction has index 0. |
| log_index | NUMBER(38,0) | The position of this log in the block. First log has index 0. |
| address | VARCHAR(42) | The address of the contract that emitted this log. |
| data | VARCHAR(16777216) | Unindexed data with further event info, encoded in hex. |
| topic0 | VARCHAR(66) | The keccak256 hash of a flattened event signature string. |
| topic1 | VARCHAR(66) | First indexed topic of the event. |
| topic2 | VARCHAR(66) | Second indexed topic of the event. |
| topic3 | VARCHAR(66) | Third indexed topic of the event. |
| transaction_from_address | VARCHAR(42) | The address of the sending party of this transaction. |
| transaction_to_address | VARCHAR(42) | The address of the receiving party of this transaction. |
| interface_id | VARCHAR(16777216) | Interface ID. |
| params_keys_mapping | ARRAY | Mapping of parameter keys in decoding. |
| block_timestamp | TIMESTAMP_NTZ(9) | The time when the block was included on the blockchain. |
| block_number | NUMBER(38,0) | The length of the chain, in blocks. |
| block_hash | VARCHAR(66) | Unique identifier of the block that includes this log. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of the entry creation. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of the entry update. |