peteerDistribution of NFT sales on Optimism chain(above 1 $ETH)
    Updated 2022-10-15
    select sum(price) as sm , nft_address , 1 ,
    case
    when sm < 1 then '< 1'
    when sm >= 1 then ' >= 1'
    end as distribution
    from optimism.core.ez_nft_sales
    group by 2
    order by 1 desc
    Run a query to Download Data