| BLOCK_NUMBER | NUMBER | Sequential counter representing the position of a block in the blockchain since genesis (block 0). |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the block was produced by validators/miners. |
| TX_HASH | TEXT | Unique 66-character identifier for the transaction. |
| TX_POSITION | NUMBER | Zero-indexed position of transaction within its block. |
| EVENT_INDEX | NUMBER | Zero-based sequential position of the event within a transaction’s execution. |
| FROM_ADDRESS | TEXT | The from address for the token transfer. This may or may not be the same as the origin_from_address. |
| TO_ADDRESS | TEXT | The to address for the token transfer. This may or may not be the same as the origin_to_address. |
| CONTRACT_ADDRESS | TEXT | The contract address for the token transfer. |
| TOKEN_STANDARD | TEXT | The token standard for the transfer, in this case always erc20. |
| TOKEN_IS_VERIFIED | BOOLEAN | Boolean flag indicating if the token is verified by the Flipside team. |
| NAME | TEXT | Human-readable contract name from the name() function. |
| SYMBOL | TEXT | Token/contract symbol from the symbol() function. |
| DECIMALS | NUMBER | Number of decimal places for token amounts, read directly from the contract code. |
| RAW_AMOUNT_PRECISE | TEXT | String representation of raw amount for precision preservation. |
| RAW_AMOUNT | FLOAT | Original token amount without decimal adjustment. |
| AMOUNT_PRECISE | TEXT | String representation of decimal-adjusted amount preserving full precision. |
| AMOUNT | FLOAT | Decimal-adjusted token amount for human-readable values. |
| AMOUNT_USD | FLOAT | USD value of the token transfer at transaction time. |
| ORIGIN_FUNCTION_SIGNATURE | TEXT | Function signature (first 4 bytes) of the called method. |
| ORIGIN_FROM_ADDRESS | TEXT | The externally-owned account (EOA) or contract address that initiated the transaction. |
| ORIGIN_TO_ADDRESS | TEXT | The destination address for the transaction - either an EOA or contract address. |
| EZ_TOKEN_TRANSFERS_ID | TEXT | Primary key - unique identifier for each row ensuring data integrity. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp when the record was first added to the Flipside database. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | UTC timestamp of the most recent update to this record. |