near.nft Table: fact_nft_transfers Type: View
Description
This table contains all NFT transfer transactions on the NEAR Protocol blockchain, capturing the movement of NFTs between accounts and contracts. The data includes transfer details such as sender and receiver addresses, token IDs, contract addresses, and associated metadata. This table provides the foundation for NFT ownership tracking, transfer pattern analysis, and marketplace activity monitoring across the NEAR ecosystem.Key Use Cases
- NFT ownership tracking and transfer history analysis
- NFT marketplace activity monitoring and volume analysis
- NFT transfer pattern analysis and user behavior tracking
- Cross-collection transfer comparison and performance analysis
- NFT liquidity analysis and trading pattern identification
- NFT holder analysis and distribution tracking
- NFT ecosystem health monitoring and activity assessment
Important Relationships
- Links to
core.fact_transactionsthrough tx_hash for transaction context - Connects to
core.fact_blocksthrough block_id for temporal context - Provides transfer data for
nft.ez_nft_saleswith enhanced metadata - Supports
nft.fact_nft_mintswith transfer 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 trackingfrom_addressandto_address: Important for ownership analysis and flow trackingcontract_address: Essential for collection identification and contract analysisaction_id: Important for action-level analysis and receipt contextblock_id: Useful for temporal ordering and block-level analysis
Columns
| Column Name | Data Type | Description |
|---|---|---|
| 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. |
| TX_HASH | TEXT | Unique identifier (hash) of this transaction. |
| ACTION_ID | TEXT | |
| CONTRACT_ADDRESS | TEXT | The address of the deployed contract for the token, nft, or other smart contract. |
| FROM_ADDRESS | TEXT | The address the sends the token. |
| TO_ADDRESS | TEXT | The receiver of usn token. |
| TOKEN_ID | TEXT | The identifier of the token being transferred or minted. |
| FACT_NFT_TRANSFERS_ID | TEXT | A unique identifier for the record. |
| INSERTED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which the record was initially created and inserted into this table. |
| MODIFIED_TIMESTAMP | TIMESTAMP_NTZ | The timestamp at which this record was last modified by an internal process. |