HosseinNFT sales volume on Flow since May 9th Per day
    Updated 2022-06-14
    select date_trunc('day', block_timestamp) as day,count(distinct(tx_id)) as volume from flow.core.fact_nft_sales
    where block_timestamp::date >= '2022-05-09'
    and tx_succeeded = 1
    group by day
    order by day
    Run a query to Download Data