MLDZMNGMT3
Updated 2023-04-16Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
BLOCK_TIMESTAMP::date as day,
count(distinct PURCHASER) as prchsr,
sum(SALES_AMOUNT) as volume
from flipside_prod_db.solana.fact_nft_sales
where mint in (select ADDRESS from flipside_prod_db.solana.dim_labels
where label ilike '%StepN%'
and LABEL_TYPE='nft')
and BLOCK_TIMESTAMP>=CURRENT_DATE-75
and SUCCEEDED='TRUE'
group by 1
Run a query to Download Data