ArioDEX Season - new users
Updated 2022-12-05
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 Dex_addresses as (
SELECT
'Ethereum' as chain,
address,
label as DEX_Name
from ethereum.core.dim_labels
where LABEL_TYPE ilike 'dex'
union ALL
select
'Solana' as chain,
address,
label as DEX_Name
from solana.core.dim_labels
where LABEL_TYPE ilike 'dex'
union ALL
select
'Binance Smart Chain' as chain,
address,
PROJECT_NAME as DEX_Name
from bsc.core.dim_labels
where LABEL_TYPE ilike 'dex'
union all
select
'Polygon' as chain,
address,
PROJECT_NAME as DEX_Name
from polygon.core.dim_labels
where LABEL_TYPE ilike 'dex'
)
,
Run a query to Download Data