--credit alik110
select project_name,
sum (price_usd) as Total_Volume
from ethereum.core.ez_nft_sales
where platform_name = 'opensea' and project_name is not null and price_usd > 0 and block_timestamp >= '2022-07-01'
group by 1
order by 2 desc
limit 5