| platform | VARCHAR(16777216) | Platform where the NFT was minted from (if relevant). |
| minting_protocol | VARCHAR(20) | Minting protocol (if relevant). |
| order_match_type | VARCHAR(4) | How the order was fulfilled. BUY for a direct purchase at list price; ACCEPT_BID for a seller accepting an existing bid. |
| trade_type | VARCHAR(12) | Scope of the trade. SINGLE_TRADE for a single NFT, BUNDLE_TRADE when multiple NFTs are sold together in one transaction. |
| total_mint_quantity | NUMBER(23,5) | Number of NFTs minted. This is transaction level aggregated value. |
| token_to_address | VARCHAR(16777216) | Recipient address of the NFTs minted. |
| event_type | VARCHAR(16777216) | Type or category of the onchain event that produced this record. The specific values depend on the model (e.g. transfer_single / batch_transfer for ERC-1155, deposit / withdraw for bridges). |
| token_standard | VARCHAR(7) | 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). |
| token_address | VARCHAR(68) | Contract address of the token. For EVM chains, native currency (e.g. ETH, MATIC) is represented as the zero address (0x0000000000000000000000000000000000000000). For Solana, this is the mint address. |
| token_name | VARCHAR(16777216) | Full name of the token (e.g. “USD Coin”, “Wrapped Ether”). |
| token_symbol | VARCHAR(16777216) | Ticker symbol of the token (e.g. “USDC”, “WETH”). |
| token_id | VARCHAR(16777216) | Identifier for non-fungible tokens (ERC-721) or semi-fungible tokens (ERC-1155). Each unique token_id within a collection represents a distinct asset. |
| item_quantity | VARCHAR(16777216) | Number of NFT items transferred in this trade. Always 1 for ERC-721; may be greater than 1 for ERC-1155 bundle trades. |
| currency_address | VARCHAR(42) | Contract address of the currency used to pay for the NFT. Native currency (e.g. ETH) is represented as the zero address. |
| currency_symbol | VARCHAR(16777216) | Symbol of the currency used to pay for the NFT (e.g. ETH, WETH, USDC). |
| raw_price | FLOAT | Price paid for the NFT in the currency’s smallest unit (not decimal-adjusted). |
| price | FLOAT | Price per unit of the asset at the time of this event, in USD or in the quote token’s units depending on context. |
| usd_price | FLOAT | USD value of the NFT trade at the time of the transaction. |
| log_index | NUMBER(38,0) | Zero-based position of this event log within its transaction. The first log emitted by a transaction has index 0. |
| transaction_hash | VARCHAR(66) | Hash of the transaction that produced this record. Uniquely identifies a transaction within the blockchain. |
| block_timestamp | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the block that contains this record. |
| block_number | NUMBER(38,0) | Sequential number of the block that contains this record. Starts at 0 (genesis block) and increments by 1 for each new block. |
| block_hash | VARCHAR(66) | Cryptographic hash of the block header that contains this record. Uniquely identifies a block. |
| defi_mint | BOOLEAN | True if this NFT was minted by a DeFi protocol contract (e.g. Uniswap v3 position) rather than a user-initiated mint. |
| unique_id | VARCHAR(16777216) | Allium’s deterministic unique identifier for this row. Generated from the fields that uniquely identify the record (e.g. transaction hash + log index). Stable across full refreshes. |
| _updated_at | TIMESTAMP_LTZ(9) | Timestamp of when the entry was last updated in the database. |
| _helper_nft_tokens__updated_at | TIMESTAMP_NTZ(9) | Timestamp (UTC) of the most recent update to the NFT token metadata helper table row referenced by this record. |
| _changed_since_full_refresh | BOOLEAN | Indicates if the record has changed since the last full data refresh. |
| _preference | NUMBER(1,0) | Internal ordering preference for source deduplication. |
| royalty_reg_status | BOOLEAN | Whether the NFT collection has registered royalty enforcement via the Operator Filter Registry (introduced by OpenSea in November 2022). True if the collection opted in; false if not registered or if the trade occurred before block 15907060 (pre-registry). |
| is_opensea_delisted | BOOLEAN | True if the NFT collection has been delisted from OpenSea. |
| token_standard_variant | VARCHAR(16777216) | Specific token standard variant (e.g. erc721, erc1155, cryptopunks). Distinguishes edge cases within the same broad standard. |
| is_sanitized | BOOLEAN | True if this mint passes basic quality filters: not a DeFi protocol mint and not from an OpenSea-delisted collection. Use to filter for organic user-initiated mints. |