NFT_ADDRESS | TRANSACTIONS | VOLUME_NEAR | VOLUME_USD | |
---|---|---|---|---|
1 | aa-harvest-moon-relics.near | 5174 | 29066.270199 | 128760.09464024 |
2 | harvestmoon.sharddog.near | 2570 | 1131.082476 | 7206.509293188 |
3 | x.paras.near | 591 | 408.9218 | 1868.477313185 |
4 | nft.ai-santa.tg | 498 | 523.38089 | 2655.0370094 |
5 | citizen.bodega-lab.near | 444 | 1481.386999998 | 3409.330094916 |
6 | tinkerunion_nft.enleap.near | 307 | 16347.429969 | 82409.547081144 |
7 | blackdragonforevernft.near | 259 | 1780.176 | 8800.254613 |
8 | mint.sharddog.near | 238 | 91.11445 | 626.335387097 |
9 | doubledog.hot.tg | 227 | 3335.98959 | 20615.70418526 |
10 | hapi-nearonaut.near | 195 | 139.94 | 514.38014 |
Afonso_DiazTop 10 Collections
Updated 5 days ago
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
29
30
›
⌄
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
platform_name = 'TradePort'
)
select
nft_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 transactions desc
limit 10
Last run: 5 days ago
10
550B
1s