LittlerDataBiggest swaps per Platform
Updated 2022-12-21Copy Reference Fork
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with uniswapv3 as (
select
max(amount_out_usd) as Amount_USD_Out
,symbol_out
,platform
,pool_name
from ethereum.core.ez_dex_swaps
where block_timestamp > '2022-01-01'
and platform = 'uniswap-v3'
and amount_out_usd is not null
and amount_in_usd is not null
group by 2, 3, 4
order by 1 desc
limit 1
),
uniswapv2 as (
select
max(amount_out_usd) as Amount_USD_Out
,symbol_out
,platform
,pool_name
from ethereum.core.ez_dex_swaps
where block_timestamp > '2022-01-01'
and platform = 'uniswap-v2'
and amount_out_usd is not null
and amount_in_usd is not null
group by 2, 3, 4
order by 1 desc
limit 1
),
synthetix as (
select
max(amount_out_usd) as Amount_USD_Out
Run a query to Download Data