| 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. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of the contract call. |
| ORIGIN_FROM_ADDRESS | TEXT | The from address of this transaction. |
| ORIGIN_TO_ADDRESS | TEXT | The to address of this transaction. |
| CONTRACT_ADDRESS | TEXT | The address interacted with for a given event. |
| POOL_NAME | TEXT | |
| EVENT_NAME | TEXT | The decoded event name for a given event. |
| AMOUNT_IN_UNADJ | FLOAT | The non-decimal adjusted amount of tokens put into the swap. |
| AMOUNT_IN | FLOAT | The amount of tokens put into the swap. |
| AMOUNT_IN_USD | FLOAT | The amount of tokens put into the swap converted to USD using the price of the token. |
| AMOUNT_OUT_UNADJ | FLOAT | The non-decimal adjusted amount of tokens taken out of or received from the swap. |
| AMOUNT_OUT | FLOAT | The amount of tokens taken out of or received from the swap. |
| AMOUNT_OUT_USD | FLOAT | The amount of tokens taken out of or received from the swap converted to USD using the price of the token. |
| SENDER | TEXT | The Router is the Sender in the swap function. |
| TX_TO | TEXT | The tx_to is the address who receives the swapped token. This corresponds to the βtoβ field in the swap function. |
| EVENT_INDEX | NUMBER | Event number within a transaction. |
| PLATFORM | TEXT | The protocol or platform that the liquidity pool belongs to or swap occurred on. |
| TOKEN_IN | TEXT | The address of the token sent for swap. |
| TOKEN_OUT | TEXT | The address of the token being swapped to. |
| SYMBOL_IN | TEXT | The symbol of the token sent for swap. |
| SYMBOL_OUT | TEXT | The symbol of the token being swapped to. |
| EZ_DEX_SWAPS_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. |
| _LOG_ID | TEXT | This column is being removed for standardization purposes. Please remove or update your queries with CONCAT(tx_hash, '_', event_index) to reconstruct _log_id by March 10, 2025. |