blast.core Table: fact_decoded_event_logs Type: View
This table is being deprecated for standardization purposes. Please update your queries to use
ez_decoded_event_logs instead by March 10, 2025.
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_NUMBER | NUMBER | Also known as block height. The block number, which indicates the length of the blockchain, increases after the addition of each new block. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block was produced. |
| TX_HASH | TEXT | Transaction hash is a unique 66-character identifier that is generated when a transaction is executed. This field will not be unique in this table, as a given transaction can include multiple events. |
| EVENT_INDEX | NUMBER | Event number within a transaction. |
| CONTRACT_ADDRESS | TEXT | The address interacted with for a given event. |
| EVENT_NAME | TEXT | The name of the event, as defined in the contract ABI. |
| DECODED_LOG | OBJECT | The flattened decoded log, where the keys are the names of the event parameters, and the values are the values of the event parameters. |
| FULL_DECODED_LOG | VARIANT | The full decoded log, including the event name, the event parameters, and the data type of the event parameters. |
| FACT_DECODED_EVENT_LOGS_ID | TEXT | The unique identifier for each row in the table. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was inserted into the table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The utc timestamp at which the row was last modified. |