Abolfazl_771025trade vol 1
    Updated 2023-01-04
    select DISTINCT PROJECT_NAME,
    sum(PRICE_USD) as trade_volume
    from ethereum.core.ez_nft_sales
    where BLOCK_TIMESTAMP>='2022-01-01' and BLOCK_TIMESTAMP<'2023-01-01' and PROJECT_NAME is not null and PRICE_USD >0
    GROUP BY 1
    ORDER BY 2 DESC
    LIMIT 10
    Run a query to Download Data