gaonipdex swaps
Updated 2023-12-16
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
-- what pool has the most volume
select
pool_name,
CASE
when platform = "uniswap-v3" then "uniswap"
when platform = "uniswap-v2" then "uniswap"
else platform
end as platform_simple
sum(amount_in_usd) total_volume
from ethereum.defi.ez_dex_swaps
where amount_in_usd is not null
group by 1
order by total_volume desc
limit 5
Run a query to Download Data