COLLECTION | N_SALES | BUYERS | SELLERS | SALES_VOLUME_USD | |
---|---|---|---|---|---|
1 | Lumiterra Game Item | 175827 | 4739 | 3625 | 2316531.30204612 |
2 | Wild Forest Units | 69215 | 5397 | 7528 | 545694.115579997 |
3 | Ragnarok Monsters | 37904 | 3844 | 5969 | 554118.725541141 |
4 | Axie | 36139 | 9282 | 8753 | 3683956.4307064 |
5 | Primal HeroZ | 24707 | 2735 | 4624 | 505171.560542627 |
6 | FightLeagueChips | 11964 | 6510 | 2775 | 12977.437213778 |
7 | PHZM | 9741 | 2109 | 6041 | 607523.936296549 |
8 | Nyang Kit | 9514 | 1698 | 3704 | 1736576.18948028 |
9 | RuniverseItem | 9145 | 1750 | 2360 | 87801.098976821 |
10 | 8745 | 1615 | 1796 | 241437.285790093 |
feyikemiTop NFTs by Sales
Updated 2025-04-07
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
31
32
33
34
35
36
›
⌄
WITH Price AS(
SELECT
HOUR::date AS Date,
token_address,
avg(price) AS price_usd
FROM ronin.price.ez_prices_hourly
GROUP BY 1,2
),
NFT_TXNS AS (
SELECT
block_timestamp,
tx_hash,
from_address AS seller,
to_address AS buyer,
name AS collection,
decoded_log:acceptedSettlePrice / 1e18 as nft_price,
(decoded_log:acceptedSettlePrice / 1e18)*price_usd as nft_Price_usd
from ronin.nft.ez_nft_transfers tr
join ronin.core.ez_decoded_event_logs log using (tx_hash, block_timestamp)
left join price p on block_timestamp::date = p.date and log.decoded_log:settleToken = token_address
where event_name = 'OrderMatched'
and decoded_log:order[0]:extraData[0][2] = token_id
and tx_succeeded
)
select
Collection,
count(distinct tx_hash) as n_sales,
count(distinct buyer) as buyers,
count(distinct seller) as sellers,
sum(nft_Price_usd) as sales_volume_usd
from nft_txns
group by 1
order by n_sales desc
limit 10
Last run: about 2 months ago
10
486B
16s