freemartianSales Volume
    Updated 2022-07-09
    select
    sum(price) as volume,
    date_trunc('day', block_timestamp::date) as TIME
    from flow.core.fact_nft_sales
    where nft_collection = 'A.0b2a3299cc857e29.TopShot'
    and block_timestamp > '2022-05-10'
    group by TIME

    Run a query to Download Data