Comprehensive token and asset tracking across multiple blockchain networks
Blockchain networks have become popular platforms for creating, managing, and trading digital assets. These assets are often represented as tokens, which can be transferred between addresses and owned by users. Dune provides comprehensive asset tracking capabilities across multiple blockchain networks through curated tables that simplify the process of monitoring and analyzing token transfers, balances, and metadata across both EVM and Solana ecosystems.
Compare token transfer activity across different blockchain networks:
Copy
Ask AI
-- EVM token transfersSELECT 'EVM' as ecosystem, blockchain, DATE_TRUNC('day', block_time) as date, COUNT(*) as num_transfers, COUNT(DISTINCT from_address) as unique_sendersFROM tokens.transfersWHERE block_time >= NOW() - INTERVAL '30' dayGROUP BY 1, 2, 3UNION ALL-- Solana token transfersSELECT 'Solana' as ecosystem, 'solana' as blockchain, DATE_TRUNC('day', block_time) as date, COUNT(*) as num_transfers, COUNT(DISTINCT from_address) as unique_sendersFROM solana.token_transfersWHERE block_time >= NOW() - INTERVAL '30' dayGROUP BY 1, 2, 3ORDER BY date DESC, num_transfers DESC
These datasets enable users to perform a wide range of analyses across multiple blockchain networks, providing valuable insights into the dynamics of digital assets across various blockchain ecosystems.