Skip to main content
Schema: sei.nft Table: ez_nft_transfers Type: Base Table This table contains all NFT transfer events for ERC-721 and ERC-1155 tokens on EVM blockchains. It provides a comprehensive view of NFT movements including transfers, mints, and burns.

Columns

Column NameData TypeDescription
BLOCK_NUMBERNUMBERAlso known as block height. The block number, which indicates the length of the blockchain, increases after the addition of each new block.
BLOCK_TIMESTAMPTIMESTAMP_NTZThe date and time at which the block was produced.
TX_HASHTEXTTransaction 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_INDEXNUMBEREvent number within a transaction.
INTRA_EVENT_INDEXNUMBERPosition within a batch transfer event, primarily for ERC-1155. Always starts with 1 for single transfers.
Example: 1 | | TOKEN_TRANSFER_TYPE | TEXT | The specific event type emitted by the contract. Values include ‘erc721_Transfer’, ‘erc1155_TransferSingle’, ‘erc1155_TransferBatch’, etc. Example: ‘erc721_Transfer’ | | IS_MINT | BOOLEAN | Boolean flag indicating if this transfer is a minting event (from address is 0x0). Example: true | | FROM_ADDRESS | TEXT | The address sending/transferring the NFT. Special value of ‘0x0000000000000000000000000000000000000000’ indicates minting event. Example: ‘0x1234567890123456789012345678901234567890’ | | TO_ADDRESS | TEXT | The address receiving the NFT. Special value of ‘0x0000000000000000000000000000000000000000’ indicates burning event. Example: ‘0x1234567890123456789012345678901234567890’ | | CONTRACT_ADDRESS | TEXT | The address of the contract that emitted the NFT transfer event. Example: ‘0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d’ | | TOKEN_ID | TEXT | The unique identifier for a specific NFT within a collection. String format to handle various token_id formats. Example: ‘1234’ | | QUANTITY | TEXT | The number of NFTs transferred for this specific token_id. Always 1 for ERC-721, can be more for ERC-1155. Example: 1 | | TOKEN_STANDARD | TEXT | The standard of the NFT. Values include ‘erc721’, ‘erc1155’, ‘cryptopunks’, and ‘legacy’. Example: ‘erc721’ | | NAME | TEXT | The name of the NFT collection. For Ethereum only, join with nft.dim_nft_collection_metadata for token-level details. Example: ‘Bored Ape Yacht Club’ | | ORIGIN_FUNCTION_SIGNATURE | TEXT | The function signature of this transaction. | | ORIGIN_FROM_ADDRESS | TEXT | The from address of this transaction. | | ORIGIN_TO_ADDRESS | TEXT | The to address of this transaction. | | EZ_NFT_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. |