A collection of SQL queries and interactive dashboards created on Dune for analyzing blockchain data, including DeFi protocols, NFTs, token transfers, and DAO activities.
- Prebuilt queries for DeFi, NFT, and DAO analytics.
- Dashboards to visualize key metrics and trends.
- Supports Ethereum and other EVM-compatible chains.
- Easy-to-modify SQL queries for custom insights.
Explore the dashboards on Dune:
- Visit the respective dashboard link above.
- Fork or modify the queries to suit your use case.
- Visualize data and export results as needed.
SELECT
date_trunc('day', block_time) AS day,
SUM(volume_usd) AS total_volume
FROM
swaps
WHERE
platform = 'Uniswap'
GROUP BY
day
ORDER BY
day;
SELECT
COUNT(DISTINCT wallet_address) AS active_wallets
FROM
transactions
WHERE
block_time >= current_date - interval '7 days';