NuveveCryptoArchivedTotal Squid Users By Chain
Updated 2023-04-28
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 ethereum as (
select
concat('Ethereum') as chain,
count(distinct from_address) as active_users
from ethereum.core.fact_transactions
where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
),
arbitrum as (
select
concat('Arbitrum') as chain,
count(distinct from_address) as active_users
from arbitrum.core.fact_transactions
where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
),
avalanche as (
select
concat('Avalanche') as chain,
count(distinct from_address) as active_users
from avalanche.core.fact_transactions
where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
),
polygon as (
select
concat('Polygon') as chain,
count(distinct from_address) as active_users
from polygon.core.fact_transactions
where to_address = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
),
bsc as (
select
concat('BSC') as chain,
count(distinct from_address) as active_users
Run a query to Download Data