Mints
The NFT mints tables contain all ERC721 and ERC1155 mints and their respective prices in one consolidated table.
Methodology
In an NFT minting transaction, there is a transfers of erc721/erc1155 tokens from the zero address.
The cost of an NFT mint can be assigned to
Free: the NFT recipient receives the NFT without paying any other cost aside from transaction fees.
Paid by minter: the mint payer is the same as the NFT recipient
Paid by non-minter: the mint payer is different from the NFT recipient
We identify all erc721 and erc1155 token transfers from zero address as mints. In these transactions, the minting cost of the mints were identified by the balance changes / deduction of erc20/native tokens (ETH) from the mint recipient. The cost of the NFT mint is deducted from the total cost of the transfers divided by counts of mints within the same transactions (excluding transaction fees cost).
Protocol-based mints
We identify protocol-based mints based on the token address collection created by minting protocol’s factory address. NFT mints of these collections are then tagged based on the contract address or transactions from these factory address.
NFT minting may involve native gas token, ERC20, or no currency.
Free mints will be included by an empty currency address field and 0 value in price.
Native gas tokens are represented as
0x0000000000000000000000000000000000000000
in thetoken_address
in our assets schemas.To identify native gas token-specific minting volume, currency_address filters will need to be applied as shown in the example below.
Sample Query
Example: nfts minted with native gas token (0x00000000000000000000000000000000) on Ethereum.
Table Columns
Unique Key: unique_id
Column Name | Description |
---|---|
minting_protocol | Minting protocol used (if relevant). Currently includes standard_mint protocol(s) from opensea, zora and fair.xyz |
platform | Minting platform if relevant. Currently includes: fair.xyz, zora, opensea. Mints not associated with a platform will be null. |
protocol | Minting protocol used (if relevant). Currently includes standard_mint protocol(s) from opensea, zora and fair.xyz |
order_match_type | MINT order type. |
trade_type | SINGLE_TRADE or BUNDLE_TRADE |
total_mint_quantity | Number of NFTs minted. This is transaction level aggregated value. |
token_to_address | Recipient address of the NFTs minted. |
event_type | Type of event transferred involved in the mint. erc1155_transfer_single, erc1155_transfer_batch, erc721_transfer |
token_standard | Token standard e.g. erc721 or erc1155 |
token_address | Address of the NFT collection. |
token_name | Name of the NFT collection. |
token_symbol | Symbol of the NFT collection. |
token_id | Token ID of the NFT minted. |
fungible_amount | Amount of token transferred. |
item_quantity | Number of NFTs bought. |
currency_address | Address of the currency used in the mint. |
currency_symbol | Symbol of the currency used in the mint. |
raw_price | The price of the NFT in the currency used to mint (not divided by the number of decimals) |
price | 'raw_price' divided by the number of decimals of the currency. |
usd_price | USD price paid for the NFTs in this mint. The USD value of the mint is calculated by multiplying the hourly exchange rate of the currency . |
log_index | Log index of this mint. |
transaction_hash | Transaction hash of where this mint occurred. |
block_timestamp | Block timestamp of the mint. |
block_number | Block number of the mint. |
block_hash | Block hash of the mint. |
defi_mint | Whether this mint is associated with a defi transaction, such as minting an NFT position for Uniswap v3. |
unique_id | Unique ID of this mint. |
_updated_at | Timestamp of the entry update. |
_helper_nft_tokens__updated_at | Token info last update. |
Last updated