tokens.nft table contains metadata for NFTs across all EVM-compatible networks indexed on Dune. This dataset provides essential information about NFTs, including:
- The blockchain on which the NFT exists
- The contract address of the NFT
- The name of the NFT collection
- The symbol of the NFT collection
- The standard used by the NFT (e.g., ERC721, ERC1155)
Utility
The NFT metadata table offers valuable information for NFT analysis and integration, allowing you to:- Identify NFT collections across different blockchains
- Retrieve essential NFT information for calculations and display
- Cross-reference NFT data with other tables like
tokens.nft_transfers
Table Schema
| Column | Type | Description |
|---|---|---|
blockchain | VARCHAR | Blockchain on which the NFT exists |
contract_address | VARBINARY | Contract address of the NFT collection |
name | VARCHAR | Name of the NFT collection |
symbol | VARCHAR | Symbol of the NFT collection |
standard | VARCHAR | Token standard (ERC721, ERC1155) |