| 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 will not be unique in this table as a transaction could include multiple transfer events. |
| EVENT_INDEX | NUMBER | Event number within a transaction. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of this transaction. |
| ORIGIN_FROM_ADDRESS | TEXT | The from address at the transaction level. |
| ORIGIN_TO_ADDRESS | TEXT | The to address at the transaction level. |
| CONTRACT_ADDRESS | TEXT | Contract address of the token being transferred. |
| FROM_ADDRESS | TEXT | The sending address of this transfer. |
| TO_ADDRESS | TEXT | The receiving address of this transfer. This can be a contract address. |
| RAW_AMOUNT_PRECISE | TEXT | The amount of tokens transferred returned as a string to preserve precision. This value is not decimal adjusted. |
| RAW_AMOUNT | FLOAT | The amount of tokens transferred. This value is not decimal adjusted. |
| AMOUNT_PRECISE | TEXT | The decimal transformed amount for this token returned as a string to preserve precision. Tokens without a decimal adjustment will be nulled out here. |
| AMOUNT | FLOAT | The decimal transformed amount for this token. Tokens without a decimal adjustment will be nulled out here. |
| AMOUNT_USD | FLOAT | The amount in US dollars for this transfer at the time of the transfer. Tokens without a decimal adjustment or price will be nulled out here. |
| DECIMALS | NUMBER | The number of decimal places this contract needs adjusted where token values exist. For example, use the decimal field to correctly transform raw amounts in fact_token_transfers. |
| SYMBOL | TEXT | The symbol belonging to the address of the token |
| EZ_TOKEN_TRANSFERS_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. |
| _INSERTED_TIMESTAMP | TIMESTAMP_LTZ | This column is being removed for standardization purposes. Please update your queries to use the modified_timestamp column instead by March 10, 2025. |
| TOKEN_PRICE | FLOAT | This column is being deprecated for standardization purposes. Please remove from your queries by March 10, 2025. |