MostlyData_Active user
Updated 2025-01-20
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 solana_daily_users as(
select
date_trunc('day', block_timestamp) as dt,
'Solana' as tag,
count(distinct signers[0]) as n_users
from solana.core.fact_transactions
where
block_timestamp >= current_date() - interval '30 days'
and block_timestamp < current_date()
group by 1
)
,ethereum_daily_users as(
select
date_trunc('day', block_timestamp) as dt,
'Ethereum' as tag,
count(distinct from_address) as n_users
from ethereum.core.fact_transactions
where
block_timestamp >= current_date() - interval '30 days'
and block_timestamp < current_date()
group by 1,2
)
,avalanche_daily_users as(
select
date_trunc('day', block_timestamp) as dt,
'Avalanche' as tag,
count(distinct from_address) as n_users
QueryRunArchived: QueryRun has been archived