USER_COUNT | |
---|---|
1 | 1837 |
h4wkusers total
Updated 2025-01-30
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
›
⌄
-- forked from users daily @ https://flipsidecrypto.xyz/studio/queries/2b943a92-081a-4ffd-8d11-56263f444d2f
with base as (
select block_timestamp,
tx_id,
signers[0] as user_address
from solana.core.fact_events
where program_id = 'abfcSQac2vK2Pa6UAJb37DzarVxF15bDTdphJzAqYYp'
and block_timestamp::date >= '2024-11-05'
UNION
select block_timestamp,
tx_id,
signers[0] as user
from solana.core.fact_events_inner
where program_id = 'abfcSQac2vK2Pa6UAJb37DzarVxF15bDTdphJzAqYYp'
and block_timestamp::date >= '2024-11-05'
)
, first_date as (
select
user_address
, min(block_timestamp) as first_date
from base
group by 1
)
, daily_new_users as (
select
first_date::date as date
, count(distinct user_address) as daily_new_user_count
from first_date
group by 1
)
, daily_users as (
select
Last run: 21 days ago
1
8B
597s