bachiFlowuser2.5
Updated 2022-12-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
select
'Solana' as chain,
date(
date_trunc('month', block_timestamp)
) as month,
count (distinct signers[0]) as active_users
from
solana.core.fact_transactions
where
block_timestamp >= '2022-01-01'
group by
1,
2
Run a query to Download Data