datavortexby protocol
Updated 2024-11-18
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
platform,
COUNT(DISTINCT tx_hash) AS total_swaps,
SUM(amount_in_usd) AS total_volume,
COUNT(DISTINCT trader) AS unique_users
FROM near.defi.ez_dex_swaps
WHERE block_timestamp BETWEEN '2024-01-01' AND '2024-12-31'
GROUP BY platform
ORDER BY total_swaps DESC;
QueryRunArchived: QueryRun has been archived