NuveveCryptoArchivedTop NFT Buyers 2022 (Count)
    Updated 2023-01-22
    select
    buyer_address,
    sum(price_usd) as volume_usd
    from ethereum.core.ez_nft_sales
    where block_timestamp >= '2022-01-01'
    and block_timestamp < '2023-01-01'
    and price_usd is not null
    group by buyer_address
    order by 2 desc
    limit 10



    Run a query to Download Data