Afonso_DiazTop Sellers
Updated 2025-04-15
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
›
⌄
with
main as (
select
tx_hash,
block_timestamp,
buyer_address,
seller_address,
price,
price_usd,
nft_address,
token_id
from
near.nft.ez_nft_sales
where
nft_address = 'tinkerunion_nft.enleap.near'
)
select
seller_address,
count(distinct tx_hash) as transactions,
sum(price) as volume_near,
sum(price_usd) as volume_usd
from
main
group by 1
order by volume_usd desc
limit 100
QueryRunArchived: QueryRun has been archived