mmdrezaDaily Volume of Sales NFL
    Updated 2022-07-02
    select date_trunc('day',block_timestamp) as date,sum(price)
    from flow.core.fact_nft_sales
    where NFT_COLLECTION in ('A.e4cf4bdc1751c65d.AllDay','A.e4cf4bdc1751c65d.PackNFT')
    group by date
    order by date asc
    Run a query to Download Data