jackguyVolume Scoring with NBA Top Shot 2
    Updated 2022-06-04
    SELECT
    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%'
    Run a query to Download Data