Flipside Team2.4. Users daily 7d copy
Updated 2024-12-04
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
›
⌄
-- Analyst: mar1na-catscatscode
select
date(t.block_timestamp) as date,
'All active' as user_type,
count(distinct b.value) as n_users
from solana.core.fact_transactions t
, lateral flatten(
input => signers
) b
where
t.block_timestamp::date >= current_date - 31
and t.block_timestamp::date < current_date
group by date
union
select
first_tx_date as date,
'New' as user_type,
count(distinct signer) as n_users
-- ,first_program_id
from solana.core.ez_signers
where first_tx_date >= current_date - 31
and first_tx_date < current_date
group by date
;
QueryRunArchived: QueryRun has been archived