NavidNBA Playoff Usage
    Updated 2022-06-26
    select
    Transaction_Date,
    Transaction_Count,
    avg(Transaction_Count) OVER (ORDER BY Transaction_Date) AS Cum_Transaction_Count
    from
    (
    select
    date(BLOCK_TIMESTAMP) as Transaction_Date, count(*) as Transaction_Count
    from flow.core.fact_nft_sales
    where NFT_COLLECTION like '%TopShot%'
    group by
    date(BLOCK_TIMESTAMP)
    order by
    date(BLOCK_TIMESTAMP)
    ) tbl
    -- 0x7B09b79aB30Fa670c29DD1ED4dcaB11f4D7Afefc
    Run a query to Download Data