select
project_name,
avg(mint_price_usd)
from ethereum.core.ez_nft_mints
where block_timestamp > '2022-01-01'
and mint_price_usd is not null
and project_name is not null
and project_name not like 'uniswap'
and project_name not like '%curve%'
group by 1
order by 2 desc
limit 10