| platform | VARCHAR(134217728) | Platform where the NFT was minted from (if relevant). |
| protocol | VARCHAR(134217728) | Minting protocol, if applicable. |
| program_id | VARCHAR(44) | Program ID of the minting protocol. |
| mint_type | VARCHAR(134217728) | Type of mint event, can be SINGLE_MINT or BUNDLE_MINT. |
| total_item_quantity | NUMBER(38,0) | Total item minted in the transaction. |
| signer | VARCHAR(44) | Transaction signer, which is often the account minting the NFTs. Althought NFTs can also be minted to other wallet accounts. |
| payer | VARCHAR(44) | Transaction payer of the mint, if applicable. |
| token_standard | VARCHAR(134217728) | Token standard of the NFT. erc721 for non-fungible tokens (unique IDs, balance 0 or 1), erc1155 for semi-fungible tokens (multiple copies per ID). |
| item_quantity | NUMBER(38,0) | Total item minted. |
| token_mint | VARCHAR(44) | Token mint address. |
| token_metadata | VARCHAR(44) | Token metadata address. |
| token_metadata_program | VARCHAR(44) | Token metadata program address. |
| collection_mint | VARCHAR(44) | Collection mint address of the NFT minted. |
| collection_metadata | VARCHAR(44) | Collection metadata address of the NFT minted. |
| collection_master_edition | VARCHAR(44) | Collection mater edition address of the NFT minted. |
| is_cnft | BOOLEAN | Boolean indicator on whether the NFT is a cNFT (compressed NFT). |
| merkle_tree | VARCHAR(44) | cNFT data: The account that contains the Merkle tree, initialized by create_tree. |
| leaf_index | NUMBER(38,0) | cNFT data: The index of the leaf node in the Merkle tree. Can be retrieved from off-chain data store. |
| asset_id | VARCHAR(134217728) | Asset address ID. |
| name | VARCHAR(134217728) | Name of NFT. |
| symbol | VARCHAR(134217728) | Symbol of NFT. |
| collection_name | VARCHAR(134217728) | Collection name of NFT. |
| collection_symbol | VARCHAR(134217728) | Collection symbol of NFT. |
| currency_mint | VARCHAR(44) | Currency used for mint. |
| currency_symbol | VARCHAR(134217728) | Symbol used for mint. |
| raw_price | VARCHAR(134217728) | Raw, unnormalized price of the NFT mint. |
| price | FLOAT | Normalized price of the NFT mint. |
| usd_price | FLOAT | USD price of the NFT mint. |
| txn_fee | FLOAT | Transaction fee paid (in SOL) for the minting transaction. |
| block_slot | NUMBER(38,0) | Block slot at the time of the mint. |
| block_height | NUMBER(38,0) | Block height at the time of the mint. |
| block_timestamp | TIMESTAMP_NTZ(9) | Block timestamp at the mint. |
| block_hash | VARCHAR(44) | Block hash at the time of the mint, |
| txn_id | VARCHAR(88) | Transaction id of the minting transaction. |
| txn_index | NUMBER(38,0) | Transaction index number. |
| instruction_index | NUMBER(38,0) | Instruction index of the transaction. |
| inner_instruction_index | NUMBER(38,0) | Zero-based position of this inner instruction within its parent instruction’s inner instructions array. -1 for top-level instructions that are not inner instructions. |
| outer_program_id | VARCHAR(44) | Program ID of the outermost instruction that invoked this inner instruction on Solana |
| _metadata_updated_at | TIMESTAMP_NTZ(9) | When the stablecoin metadata was last updated. |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full data refresh. |
| _updated_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was last updated in the database. |
| unique_id | VARCHAR(134217728) | Unique ID assigned for the minting transaction. |
| _created_at | TIMESTAMP_NTZ(9) | Timestamp of when the entry was created in the database. |
| extra_fields | VARIANT | Protocol-specific fields as a JSON object. Keys: transfer_uuid (transfer identifier, uint128 as varchar, from the event). |