par_rnActivity of Solana users since September
Updated 2022-12-24
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
›
⌄
select
'NFTs' as activity,
count(tx_id) as no_txn
from solana.core.fact_nft_sales
where SUCCEEDED='TRUE'
and BLOCK_TIMESTAMP>='2022-09-01'
group by 1
union all
select
'NFTs' as activity,
count(tx_id) as no_txn
from solana.core.fact_nft_mints
where SUCCEEDED='TRUE'
and BLOCK_TIMESTAMP>='2022-09-01'
group by 1
union all
select
'stake' as activity,
count(tx_id) as no_txn
from solana.core.fact_events
where EVENT_TYPE in ('delegate')
and BLOCK_TIMESTAMP>='2022-09-01'
group by 1
union all
select
'unstake' as activity,
count(tx_id) as no_txn
from solana.core.fact_events
where EVENT_TYPE='withdraw'
and BLOCK_TIMESTAMP>='2022-09-01'
group by 1
union all
select
'Add liquidity' as activity,
Run a query to Download Data