SniperDaily total Sales volume (May 17th- May 29th)
    Updated 2022-07-09
    select BLOCK_TIMESTAMP::DATE ,sum(PRICE) FROM flow.core.fact_nft_sales
    WHERE SPLIT_PART(marketplace, '.', 3) = 'TopShotMarketV3'
    and BLOCK_TIMESTAMP::DATE BETWEEN '2022-05-017' and '2022-05-29'
    and TX_SUCCEEDED = 'TRUE'
    GROUP by 1
    Run a query to Download Data