> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# NFT Metadata

> Metadata for NFTs across EVM networks.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

The `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)       |

<TableSample tableSchema="tokens" tableName="nft" />

### Network Coverage

NFT metadata is available for all EVM-compatible networks indexed by Dune.

## Sample Queries

**Query NFT collections on a specific blockchain**

This query returns NFT collections on the Ethereum blockchain:

```sql theme={null}
SELECT
    contract_address,
    name,
    symbol,
    standard
FROM tokens.nft
WHERE blockchain = 'ethereum'
LIMIT 100
```

**Find NFTs with a specific standard across blockchains**

This query finds all NFTs using the ERC721 standard across different blockchains:

```sql theme={null}
SELECT
    blockchain,
    contract_address,
    name,
    symbol
FROM tokens.nft
WHERE standard = 'erc721'
```

**List NFT collections with a specific keyword in their name**

This query lists NFT collections that have "Punk" in their name:

```sql theme={null}
SELECT
    blockchain,
    contract_address,
    name,
    symbol,
    standard
FROM tokens.nft
WHERE name LIKE '%Punk%'
ORDER BY blockchain, name
LIMIT 50
```
