NuveveCryptoArchivedaETH, stETH, and rETH Pools
Updated 2022-09-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 aETH as (
select
symbol_out as symbol,
count(distinct(pool_name)) as pools
from ethereum.core.ez_dex_swaps
where token_out = '0xe95a203b1a91a908f9b9ce46459d101078c2c3cb' -- aETH
and symbol_out is not null
group by symbol
),
stETH as (
select
symbol_out as symbol,
count(distinct(pool_name)) as pools
from ethereum.core.ez_dex_swaps
where token_out = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84' -- stETH
group by symbol
),
rETH as (
select
symbol_out as symbol,
count(distinct(pool_name)) as pools
from ethereum.core.ez_dex_swaps
where token_out = '0xae78736cd615f374d3085123a210448e74fc6393' -- rETH
group by symbol
)
select *
from aETH
union
select *
from stETH
union
select *
from rETH
Run a query to Download Data