elsinaThe volume and number of sale on NBA TOP SHOT in the FLOW blockchain
    Updated 2022-07-12
    select
    block_timestamp::date as date,
    sum(price) as volume,
    count(*) as "count"
    from
    flow.core.fact_nft_sales
    where
    marketplace = 'A.c1e4f4f4c4257510.TopShotMarketV3'
    group by 1
    Run a query to Download Data