fb3ce38c-7bfe-475c-bca8-3f1e44ae80a6Ethereum Top Sales Collections
    Updated 2023-04-17

    SELECT
    project_name,
    SUM(price)as sales_usd,
    COUNT(DISTINCT TX_HASH)volume

    FROM ethereum.core.ez_nft_sales
    WHERE project_name IS NOT NULL
    GROUP BY project_name
    ORDER BY sales_usd DESC
    LIMIT 100


    Run a query to Download Data