nsa2000Top 4 DEXes after the Merge
Updated 2022-10-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
distinct PLATFORM,
--POOL_NAME,
count(DISTINCT tx_hash) as swaps,
count(DISTINCT origin_from_address) as swappers,
sum (amount_out_usd) as Volume
FROM ethereum.core.ez_dex_swaps
where event_name ='Swap'
and block_number >= 15537351
and block_timestamp::date <='2022-10-30'
and (SYMBOL_IN ilike 'WETH' or SYMBOL_OUT ilike 'WETH' )
and SYMBOL_IN != SYMBOL_OUT
GROUP BY 1
having volume is not null
order by 3 desc
limit 10
Run a query to Download Data