NFT trades of multiple blockchains aggregated into a single table.
Last updated
Chain Coverage
Project and protocol coverage is available at each chain's respective NFT trades page.
EVM Chains
Non-EVM Chains
Sample Query
NFT Volume Across Blockchains.
selectdate(block_timestamp) asdate, chain,sum(usd_amount) as usd_volumefrom crosschain.nfts.tradeswhere block_timestamp >= current_timestamp - interval '90 days'group by all