NavidCopy of Untitled Query
    Updated 2022-10-23
    select
    sum(price) as total_sales_volume,
    avg(price) as average_price_of_an_nft,
    count(distinct tx_id) as number_of_sales,
    count(distinct buyer) as number_of_buyers
    from
    flow.core.ez_nft_sales
    where
    NFT_COLLECTION like '%RaceDay%'

    Run a query to Download Data