CarlOwOsdaily volume 2
    Updated 2022-06-10
    -- sales volume on flow since may 9th
    -- Which NFT projects are trending on Flow right now and what is the general trend of NFT sales over the last month?
    --
    -- Do the projects that are trending seem to have common wallets or is there not much crossover between buyers/sellers?
    -- % de holders de una q tienen de la otra
    WITH daily_volume AS (
    SELECT COUNT(DISTINCT tx_id) AS sales
    , DATE(block_timestamp) AS date
    , SPLIT(nft_collection, '.')[2] AS collection
    , row_number() over (partition by date order by sales desc) AS rank
    FROM flow.core.fact_nft_sales
    WHERE block_timestamp BETWEEN '2022-05-09' AND CURRENT_DATE - 1
    GROUP BY date, collection
    ORDER BY date, rank
    )
    SELECT *
    FROM daily_volume
    WHERE rank <= 5
    ORDER BY date, rank
    Run a query to Download Data