| 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. |
| INTRA_EVENT_INDEX | NUMBER | Position within a batch transfer event, primarily for ERC-1155. Always starts with 1 for single transfers. |
| TOKEN_TRANSFER_TYPE | TEXT | The specific event type emitted by the contract. Values include ‘erc721_Transfer’, ‘erc1155_TransferSingle’, ‘erc1155_TransferBatch’, etc. |
| IS_MINT | BOOLEAN | Boolean flag indicating if this transfer is a minting event (from address is 0x0). |
| FROM_ADDRESS | TEXT | The address sending/transferring the NFT. Special value of ‘0x0000000000000000000000000000000000000000’ indicates minting event. |
| TO_ADDRESS | TEXT | The address receiving the NFT. Special value of ‘0x0000000000000000000000000000000000000000’ indicates burning event. |
| CONTRACT_ADDRESS | TEXT | The address of the contract that emitted the NFT transfer event. |
| TOKEN_ID | TEXT | The unique identifier for a specific NFT within a collection. String format to handle various token_id formats. |
| QUANTITY | TEXT | The number of NFTs transferred for this specific token_id. Always 1 for ERC-721, can be more for ERC-1155. |
| TOKEN_STANDARD | TEXT | The standard of the NFT. Values include ‘erc721’, ‘erc1155’, ‘cryptopunks’, and ‘legacy’. |
| NAME | TEXT | The name of the NFT collection. For Ethereum only, join with nft.dim_nft_collection_metadata for token-level details. |
| 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_NFT_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. |