datavortexBy protocol
Updated 2024-11-26
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
platform,
SUM(amount_in_usd) AS "total_swap_volume",
COUNT(DISTINCT tx_hash) AS "total_swaps",
COUNT(DISTINCT origin_from_address) AS "total_users"
FROM
avalanche.defi.ez_dex_swaps
WHERE
block_timestamp >= '2024-01-01'
AND block_timestamp <= '2024-12-31'
GROUP BY
platform
ORDER BY
"total_swap_volume" DESC;
QueryRunArchived: QueryRun has been archived