PS0G1Top5 most popular NFT collections on Opensea
    Updated 2022-09-29
    --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
    Run a query to Download Data