near.nft Table: fact_nft_mints Type: View
Description
This table contains all NFT minting transactions on the NEAR Protocol blockchain, capturing the creation of new NFTs across various collections and standards. The data includes minting details such as token IDs, minting methods, arguments, deposits, and associated metadata. This table provides the foundation for NFT analytics, collection growth tracking, and minting pattern analysis across the NEAR ecosystem.Key Use Cases
- NFT collection growth analysis and minting velocity tracking
- NFT minting pattern analysis and user behavior monitoring
- Collection launch analysis and initial distribution tracking
- NFT minting cost analysis and gas optimization
- Cross-collection minting comparison and performance benchmarking
- NFT creator analysis and minting strategy evaluation
- NFT ecosystem health monitoring and collection discovery
Important Relationships
- Links to
core.fact_transactionsthrough tx_hash for transaction context - Connects to
core.fact_blocksthrough block_id for temporal context - Provides minting data for
nft.ez_nft_saleswith enhanced metadata - Supports
nft.fact_nft_transferswith minting context - Enables analysis in
stats.ez_core_metrics_hourlyfor NFT metrics - Powers cross-collection analysis and ecosystem mapping
Commonly-used Fields
tx_hash: Essential for linking to transaction details and verificationblock_timestamp: Primary field for time-series analysis and trend detectiontoken_id: Critical for unique NFT identification and trackingowner_id: Important for creator analysis and ownership trackingmethod_name: Essential for minting method classification and analysisdepositandimplied_price: Important for minting cost analysistx_receiver: Critical for collection identification and contract analysis
Columns
| Column Name | Data Type | Description |
|---|---|---|
| RECEIPT_OBJECT_ID | TEXT | Please note this column is being deprecated in favor of simply “receipt_id”. |
| TX_HASH | TEXT | Unique identifier (hash) of this transaction. |
| BLOCK_ID | NUMBER | The height of the chain this block corresponds with. |
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The date and time at which the block began. |
| TOKEN_ID | TEXT | The token ID for this NFT contract. |
| METHOD_NAME | TEXT | Name of the method(s) approved for use. NULL if permission is FullAccess. |
| ARGS | VARIANT | Decoded (where possible) arguments passed alongside the method_name. If decoding failed, the table will contain the raw message. |
| MEMO | VARIANT | Optional log message within the transaction (often null). This field contains additional information or context about the transfer, such as transaction notes, reference numbers, or descriptive text. Memos are commonly used in cross-chain bridges, exchange deposits, or other scenarios where additional context is needed to identify or process the transfer. The memo field is optional and frequently null for standard transfers. |
| DEPOSIT | NUMBER | Sum of all NEAR tokens transferred from the signing account to the receiver account during receipt processing. This includes tokens sent in a Transfer action(s), and tokens sent in a FunctionCall action(s) with a deposit attached. |
data array’s len in the LOG message | | MINT_PER_TX |
NUMBER | Number of NFTs minted per nft_mint event called. | | GAS_BURNT | NUMBER | Gas burned for
the receipt action. This field represents the amount of computational resources consumed
specifically for the receipt being processed. Gas burning is the mechanism by which NEAR charges for
computational work, and this field tracks the exact amount burned for this particular receipt
action. In raw number format with 16 decimal places, to adjust divide by POW(10,16) or multiply by
1e-16. | | TRANSACTION_FEE | NUMBER | Total fee paid in NEAR to execute this transaction, which is a
summation of all fees paid for actions and receipts within the transaction.
In raw number format, to adjust divide by POW(10,24) | | IMPLIED_PRICE | FLOAT | | | TX_STATUS |
TEXT | | | TX_SUCCEEDED | BOOLEAN | Boolean indicating if the transaction was successful (rarely
used, most tx succeed, it is receipts that can fail). This field tracks the overall success status
of the transaction. While most transactions succeed at the transaction level, individual receipts
within the transaction can still fail. This field is less commonly used for filtering since
receipt-level success tracking provides more granular information about specific operations within
the transaction. | | MINT_ACTION_ID | TEXT | | | FACT_NFT_MINTS_ID | TEXT | A unique identifier for
the record. | | INSERTED_TIMESTAMP | TIMESTAMP_LTZ | The timestamp at which the record was initially
created and inserted into this table. | | MODIFIED_TIMESTAMP | TIMESTAMP_LTZ | The timestamp at
which this record was last modified by an internal process. |