MLDZMNAB.nft4
Updated 2022-09-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
select
date_trunc('day', first_transaction_stamp) as day,
MARKETPLACE,
count (distinct sender) as new_users,
sum(new_users) over (partition by MARKETPLACE order by day) as cum_new_users
from (
select
distinct purchaser as sender,
MARKETPLACE,
min(block_timestamp) as first_transaction_stamp
from solana.core.fact_nft_sales
where block_timestamp>='2022-05-01'
and SUCCEEDED='TRUE'
group by 1,2
)
group by 1,2
Run a query to Download Data