jackguyVolume Scoring with NBA Top Shot
    Updated 2022-06-04
    SELECT
    date_trunc('day', block_timestamp),
    sum(price) as sales_volume,
    count(DISTINCT buyer) as buyers,
    COUNT(DISTINCT seller) as sellers
    FROM flow.core.fact_nft_sales
    where nft_collection LIKE '%TopShot%'
    GROUP BY 1
    Run a query to Download Data