mu-tafaUntitled Query
    Updated 2022-10-19
    SELECT
    count(DISTINCT tx_hash) as sales_count,
    project_name
    from ethereum.core.ez_nft_sales
    where event_type='sale'
    and block_timestamp between '2022-09-1' and '2022-09-30'
    and project_name is not null
    group by project_name
    order by 1 DESC
    limit 10
    Run a query to Download Data