RamaharSushiswap TOP 10 Swap Pairs
Updated 2022-10-26
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 dexs as (select
platform,
block_timestamp::date as dayz,
tx_hash,
origin_from_address,
symbol_in,
amount_in,
amount_in_usd,
symbol_out,
amount_out,
amount_out_usd,
pool_name
from optimism.sushi.ez_swaps
where block_timestamp::date >= CURRENT_DATE - {{period}}
UNION ALL
select
platform,
block_timestamp::date as dayz,
tx_hash,
origin_from_address,
symbol_in,
amount_in,
amount_in_usd,
symbol_out,
amount_out,
amount_out_usd,
pool_name
from optimism.velodrome.ez_swaps
where block_timestamp::date >= CURRENT_DATE - {{period}}
),
uniswap_from as (
SELECT
block_timestamp,
Run a query to Download Data