zpencerTop NFT Sales 2022
    Updated 2022-12-14
    select top 100 nft_address, project_name, sum(price) as sales, sum(price_usd) as salesUSD, count(tx_hash) as txns
    from ethereum.core.ez_nft_sales
    where block_timestamp >= '2022-01-01'
    and price_usd > 0
    and project_name not in ('terraforms', 'more loot', 'dotdotdots', 'dreadfulz')
    group by nft_address, project_name
    order by salesUSD desc
    Run a query to Download Data