hessTotal Number of New users
Updated 2024-09-27
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
›
⌄
with users as ( select block_timestamp,
tx_from as user
from axelar.core.fact_transactions
UNION all
select BLOCK_TIMESTAMP,
SENDER as user
from axelar.core.fact_transfers
UNION all
select CREATED_AT as block_timestamp,
sender_address as user
from axelar.axelscan.fact_transfers
UNION all
select block_timestamp,
ATTRIBUTE_VALUE as user
from axelar.core.fact_msg_attributes
where ATTRIBUTE_KEY in ('fee_payer','sender')
)
,
new as ( select min(block_timestamp::date) as date,
user
from users
group by 2)
select date,
count(DISTINCT user) as "New Users",
sum("New Users") over (order by date asc ) as "Cumulative New users"
from new
where date >= '2024-01-01'
group by 1
order by 1 asc
QueryRunArchived: QueryRun has been archived