MLDZMNwer3
Updated 2023-08-29
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
-- forked from gp3 @ https://flipsidecrypto.xyz/edit/queries/9eb452c2-1d87-422d-bd3c-9ec6faee3a3f
select
date_trunc('week', first_transaction_stamp) as date,
count (distinct sender) as new_users,
sum(new_users) over (order by date) as total_new_users
from (
select
distinct BUYER as sender,
min(block_timestamp) as first_transaction_stamp
from flow.core.ez_nft_sales s
Where NFT_COLLECTION='A.396646f110afb2e6.RogueBunnies_NFT' and tx_succeeded = true
group by 1
)
group by 1
Run a query to Download Data