ArioUntitled Query
Updated 2022-12-21
9
1
2
3
4
5
6
7
8
›
⌄
--select distinct platform from ethereum.core.ez_dex_swaps
--select * from ethereum.core.ez_dex_swaps where platform = 'sushiswap' limit 1
select Top 10 POOL_NAME,
PLATFORM,
sum(AMOUNT_IN_USD) as "Swap Volume(USD)"
from ethereum.core.ez_dex_swaps
where 1=1
and BLOCK_TIMESTAMP >= '2022-01-01'
Run a query to Download Data