Afonso_DiazTop 10 Collections cop
Updated 2025-03-22
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
›
⌄
with t as (
select
tx_hash,
block_timestamp,
buyer_address,
seller_address,
price,
price_usd,
nft_address,
token_id
from near.nft.ez_nft_sales
where platform_name = 'Mitte'
)
select
nft_address,
count(distinct tx_hash) as transactions,
sum(price) as volume_near,
sum(price_usd) as volume_usd
from t
group by 1
order by volume_usd desc
limit 10
QueryRunArchived: QueryRun has been archived