Drsimontop 10 sellers
Updated 2023-02-13
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
select
SELLER_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 block_timestamp >= '2023-01-01'
and event_type = 'sale'
group by 1
order by 4 DESC
offset 1 rows FETCH first 10 rows only
Run a query to Download Data