aptos.nft Table: fact_nft_mints Type: View
Description
This table records all raw on-chain NFT mint events on Aptos, capturing the creation of new NFTs across supported marketplaces and protocols. It includes the addresses involved, NFT identifiers, project names, and raw price data, without enrichment or price attribution.Key Use Cases
- Analyzing NFT minting activity and project launches
- Auditing raw NFT mint events for compliance or research
- Building dashboards for NFT mint volume, user activity, and project trends
- Supporting downstream enrichment models for NFT analytics
- Monitoring NFT project adoption and minting trends
Important Relationships
- Serves as the source for enriched NFT mint data in
nft.ez_nft_mints - Can be joined with token metadata from
core.dim_tokensfor symbol/decimals - Can be linked to price data in
price.ez_prices_hourlyfor USD values - Related to NFT sales data in
nft.fact_nft_salesfor lifecycle analysis
Commonly-used Fields
tx_hash,event_index: Unique identifiers for each mint eventnft_address,tokenid: NFT contract and token identifiersnft_from_address,nft_to_address: Addresses involved in the mintblock_timestamp: Time of the mint eventproject_name: Name of the NFT projecttotal_price_raw: Raw, non-decimal-adjusted mint price
Columns
| Column Name | Data Type | Description |
|---|---|---|
| BLOCK_TIMESTAMP | TIMESTAMP_NTZ | The block timestamp at which the NFT event occurred. |
| BLOCK_NUMBER | NUMBER | The block number at which the NFT event occurred. |
| VERSION | NUMBER | |
| TX_HASH | TEXT | The transaction hash for the NFT event. This is not necessarily unique in this table as a transaction may contain multiple NFT events. |
| EVENT_INDEX | NUMBER | The event number within a transaction |
| EVENT_TYPE | TEXT | The type of NFT event in this transaction, either sale, bid_won or redeem. |
| NFT_FROM_ADDRESS | TEXT | The account address that sent or originated the NFT in a mint or transfer event. |
- 0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
- Used for tracking NFT creators, senders, and transferors.
- Enables user-level analytics, provenance, and ownership history.
- Supports linking to address labels and user profiles. | | NFT_TO_ADDRESS | TEXT | The account address that received the NFT in a mint or transfer event.
- 0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
- Used for tracking NFT recipients, buyers, and new owners.
- Enables user-level analytics, ownership history, and transfer analysis.
- Supports linking to address labels and user profiles. | | NFT_ADDRESS | TEXT | The contract address of the NFT. | | TOKEN_VERSION | TEXT | The version of the NFT token. | | PROJECT_NAME | TEXT | The name of the NFT project. This field, along with metadata, will be filled in over time. | | TOKENID | TEXT | The token ID for this NFT contract. | | NFT_COUNT | NUMBER | The number of NFTs minted in this event.
- 1
- 10
- Used for quantifying NFT minting activity and project launches.
- Enables project-level analytics, trend analysis, and reporting.
- Supports dashboards and user-facing NFT discovery tools. | | TOTAL_PRICE_RAW | NUMBER | The non-decimal adjusted amount of the NFT event in the currency in which the transaction occurred.
- 100000000 (for 1 NFT at 1 unit with 8 decimals)
- 500000000000000000 (for 0.5 NFT at 18 decimals)
- Used for reconstructing the exact on-chain value of NFT sales or mints.
- Enables technical audits, protocol analytics, and downstream decimal adjustment.
- Supports accurate calculation of NFT volumes and value flows. | | CURRENCY_ADDRESS | TEXT | The contract address of the currency used for the NFT event (mint or sale).
- 0x1::aptos_coin::AptosCoin
- 0xabcdef1234567890abcdef1234567890abcdef1234567890abcdef1234567890
- Used for identifying the payment currency for NFT events.
- Enables currency-level analytics, filtering, and reporting.
- Supports joining with token metadata and price information. | | FACT_NFT_MINTS_ID | TEXT | The unique primary key identifier for each row in the table, ensuring data integrity and uniqueness.
- 0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
- Essential for data integrity and unique row identification.
- Critical for join operations and data relationship management.
- Enables precise data retrieval and referential integrity maintenance. | | INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The UTC timestamp when the row was inserted into the table, representing when the data was first recorded.
- 2024-01-15 14:30:25.123456
- Essential for data lineage tracking and insertion timing analysis.
- Critical for understanding data freshness and processing delays.
- Enables data quality analysis and processing performance monitoring. | | MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The UTC timestamp when the row was last modified, representing when the data was most recently updated.
- 2024-01-15 14:30:25.123456
- Essential for data freshness analysis and update tracking.
- Critical for understanding data modification patterns and change frequency.
- Enables data quality monitoring and update performance analysis. |