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