DrsimonTop 10 Buyers
    Updated 2022-08-28
    select
    BUYER_ADDRESS ,
    count(distinct tx_hash) as nft_sales ,
    count(distinct tokenid) ,
    sum(price_usd) as price_usd
    from ethereum.core.ez_nft_sales
    where project_name = 'cryptopunks'
    and event_type = 'sale'
    group by 1
    order by 2 desc
    offset 1 rows FETCH first 10 rows only

    Run a query to Download Data