RhoninNBA Playoff Usage p2
    Updated 2022-06-27
    SELECT
    date_trunc('day', block_timestamp) as day,
    count(tx_id) as sales_tx,
    sum(price) as volume,
    count(distinct buyer) as buyers
    FROM flow.core.fact_nft_sales
    WHERE nft_collection = 'A.0b2a3299cc857e29.TopShot'
    AND tx_succeeded = 'TRUE'
    GROUP BY 1

    Run a query to Download Data