> ## 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.

# Solana NFT Metadata

> Metadata for non-fungible tokens (NFTs) on the Solana blockchain.

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_solana.nft` table contains metadata for non-fungible tokens (NFTs) on the Solana blockchain indexed on Dune. This dataset provides essential information about Solana NFTs, including:

* The NFT mint address and associated accounts
* Token details such as name, symbol, and URI
* Creator and collection information
* Transaction details of the NFT creation

### Utility

The Solana NFT metadata table offers valuable information for NFT analysis and integration, allowing you to:

* Identify and track NFTs on the Solana blockchain
* Retrieve essential NFT information for display and analysis
* Access creator and collection data for comprehensive NFT insights

## Table Schema

| Column             | Type        | Description                        |
| ------------------ | ----------- | ---------------------------------- |
| `account_mint`     | `VARCHAR`   | NFT mint address                   |
| `token_name`       | `VARCHAR`   | NFT name                           |
| `token_symbol`     | `VARCHAR`   | NFT symbol                         |
| `token_uri`        | `VARCHAR`   | NFT metadata URI                   |
| `token_standard`   | `VARCHAR`   | Token standard (e.g., NonFungible) |
| `collection_mint`  | `VARCHAR`   | Collection mint address            |
| `verified_creator` | `VARCHAR`   | Verified creator address           |
| `metadata_program` | `VARCHAR`   | Program used for metadata          |
| `call_block_time`  | `TIMESTAMP` | Block time of NFT creation         |
| `call_tx_signer`   | `VARCHAR`   | Transaction signer                 |
| `call_tx_id`       | `VARCHAR`   | Transaction ID                     |

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

### Network Coverage

This table covers NFT metadata for the Solana blockchain.

## Sample Queries

**Query Solana NFTs**

This query returns NFTs on the Solana blockchain:

```sql theme={null}
SELECT
    account_mint,
    token_name,
    token_symbol,
    token_uri
FROM tokens_solana.nft
LIMIT 100
```

**Find NFTs from a specific collection**

This query finds all NFTs from a specific collection on Solana:

```sql theme={null}
SELECT
    account_mint,
    token_name,
    token_symbol,
    token_uri
FROM tokens_solana.nft
WHERE collection_mint = 'your_collection_mint_address_here'
LIMIT 50
```

**List NFTs by a specific creator**

This query lists NFTs created by a specific verified creator on Solana:

```sql theme={null}
SELECT
    account_mint,
    token_name,
    token_symbol,
    token_uri,
    call_block_time
FROM tokens_solana.nft
WHERE verified_creator = 'your_creator_address_here'
ORDER BY call_block_time DESC
LIMIT 50
```
