HosseinUntitled Query
Updated 2023-01-08
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
with t as (
select signers[0] as user_address,
min(block_timestamp) as min_date
from solana.core.fact_transactions
group by user_address
)
select trunc(min_date, 'day')::date as day,
count (distinct (user_address)) as new_users_count
from t
where day >= '2022-12-01'
group by day
order by day
Run a query to Download Data