KingTigerMafia-7mwRZbNFTx Sales Volume
    Updated 2022-06-13
    select project_name, count(distinct tx_hash) as tx_count, sum(price_usd)
    from ethereum.core.ez_nft_sales
    where platform_name = 'nftx' and block_timestamp::date >= CURRENT_DATE-60 and project_name != ''
    group by project_name
    order by 3 desc
    limit 10
    Run a query to Download Data