Skip to main content
The tokens_solana.nft table contains NFT transfer events for tokens on the Solana blockchain indexed on Dune. This dataset encompasses transfer events for various Solana NFT standards.
Some Solana NFTs may have non-standard transfer mechanisms and might not be included in the transfers table. You can check the logic for the transfers table here.

Utility

The Solana NFT transfers table provides a comprehensive view of NFT movement on the Solana network, enabling you to:
  • Track NFT flows between accounts
  • Analyze NFT transaction volumes and patterns
  • Identify significant NFT movements
  • Monitor NFT marketplace and protocol activity on Solana

Table Schema

ColumnTypeDescription
account_mintVARCHARNFT mint address
token_nameVARCHARNFT name
token_symbolVARCHARNFT symbol
token_uriVARCHARNFT metadata URI
token_standardVARCHARToken standard
collection_mintVARCHARCollection mint address
verified_creatorVARCHARVerified creator address
metadata_programVARCHARProgram used for metadata
call_block_timeTIMESTAMPBlock time of the transfer
call_tx_signerVARCHARTransaction signer
call_tx_idVARCHARTransaction ID

Sample Queries

Query recent NFT transfers for a specific account This query returns the most recent NFT transfers for a specified account:
SELECT
    call_block_time,
    token_standard,
    account_mint,
    token_name,
    token_symbol,
    call_tx_signer
FROM tokens_solana.nft
WHERE call_tx_signer = '7F9KJm6rcW2PAgUkRmqXhzMmUpxWcQcLFjarE4bwniqZ'
    AND call_block_time > now() - interval '30' day
ORDER BY call_block_time DESC
LIMIT 100