Curated NFT market data across multiple blockchain networks
Non-fungible tokens (NFTs) have emerged as a major force in the crypto ecosystem, enabling unique digital assets and collectibles. Dune provides comprehensive coverage of NFT market activity through curated tables that capture trades, mints, transfers, and metadata across both EVM and Solana networks. These datasets enable analysis of sales volumes, collection trends, minting patterns, and market dynamics across major NFT marketplaces and networks.
Compare NFT trading activity across different blockchain networks:
Copy
Ask AI
-- EVM NFT tradesSELECT 'EVM' as ecosystem, blockchain, DATE_TRUNC('day', block_time) as date, COUNT(*) as num_trades, SUM(amount_usd) as volume_usdFROM nft.tradesWHERE block_time >= NOW() - INTERVAL '30' dayGROUP BY 1, 2, 3UNION ALL-- Solana NFT transfers (as proxy for activity)SELECT 'Solana' as ecosystem, 'solana' as blockchain, DATE_TRUNC('day', block_time) as date, COUNT(*) as num_transfers, NULL as volume_usdFROM solana.nft_transfersWHERE block_time >= NOW() - INTERVAL '30' dayGROUP BY 1, 2, 3ORDER BY date DESC, volume_usd DESC NULLS LAST