luisraNTrending NFT projects sales volume
    Updated 2022-06-13
    select
    trunc(block_timestamp,'day') as days,
    count(distinct tx_id) as sales,
    sum(price) as volume
    from flow.core.fact_nft_sales
    where block_timestamp>='2022-05-09'
    group by 1
    order by 1 asc
    Run a query to Download Data