adriaparcerisasCopy of ETH 6
Updated 2023-01-10
99
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
tab1 as (
SELECT
'Stakewise' as platform,
block_timestamp,
amount_out as eth_amount
FROM ethereum.core.ez_dex_swaps
where symbol_out like '%sETH2%' and block_timestamp >= '2023-01-01'
), tab2 as (
SELECT
'Ankr' as platform,
block_timestamp,
amount_out as eth_amount
FROM ethereum.core.ez_dex_swaps
where symbol_out like '%aETH%' and block_timestamp >= '2023-01-01'
), tab3 as (
SELECT
'Rocketpool' as platform,
block_timestamp,
amount_out as eth_amount
FROM ethereum.core.ez_dex_swaps
where symbol_out like '%rETH%' and block_timestamp >= '2023-01-01'
), tab4 as (
SELECT
'Lido' as platform,
block_timestamp,
amount_out as eth_amount
FROM ethereum.core.ez_dex_swaps
where symbol_out like '%stETH%' and block_timestamp >= '2023-01-01'
),
tab5 as (
SELECT
'Cream Finance' as platform,
block_timestamp,
amount_out as eth_amount
FROM ethereum.core.ez_dex_swaps
Run a query to Download Data