Updated 2022-10-21
    SELECT sum(price) as volume ,
    count(DISTINCT BUYER) as buyers , count(tx_id ) as tx_number , COUNT(DISTINCT NFT_ID) as NFT
    from flow.core.ez_nft_sales
    where NFT_COLLECTION ilike '%raceday%'
    and TX_SUCCEEDED ilike '%TRUE%'

    Run a query to Download Data