DB_x2y2 top 10
    Updated 2022-12-08
    SELECT
    project_name,
    sum(price) as volume_eth,
    avg(price) as avg_nft_price
    FROM ethereum.core.ez_nft_sales
    WHERE
    block_timestamp::date >= '2022-10-19'
    AND platform_name = 'x2y2'
    AND not project_name is NULL

    group by 1
    order by 2 desc
    limit 10
    Run a query to Download Data