mmdrezaTotal Sale Volume of Topshots over time
    Updated 2022-07-09
    select date_trunc('day',block_timestamp)as date,sum(price) as total_sale
    from flow.core.fact_nft_sales
    where nft_collection = 'A.0b2a3299cc857e29.TopShot' and price is not null
    group by date
    order by date asc
    Run a query to Download Data