farid-c9j0VMUntitled Query
    Updated 2022-07-01
    select date(block_timestamp) as day, sum(price) as total_sales
    from flow.core.fact_nft_sales
    where marketplace = 'A.c1e4f4f4c4257510.TopShotMarketV3' and block_timestamp >= '2022-01-01' and tx_succeeded = 'TRUE'
    group by 1
    order by 1
    Run a query to Download Data