> ## Documentation Index
> Fetch the complete documentation index at: https://docs.allium.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Mints W Flags

### Table Details

| Property     | Value                           |
| ------------ | ------------------------------- |
| Table Name   | `ethereum.nfts.mints_w_flags`   |
| Table Status | Production-Ready                |
| Unique Key   | `transaction_hash`, `unique_id` |

### Table Columns

| Column Name                          | Data Type         | Description                                                                                                                                                                                                                                                      |
| ------------------------------------ | ----------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| 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.                                                                                            |
