COLLECTION | N_SALES | BUYERS | SELLERS | SALES_VOLUME_USD | |
---|---|---|---|---|---|
1 | Axie | 36139 | 9282 | 8753 | 3683956.4307064 |
2 | Axie Material | 8415 | 1766 | 3391 | 3208674.41441364 |
3 | Axie Land | 2396 | 1294 | 1002 | 3002261.2443788 |
4 | Lumiterra Game Item | 175827 | 4739 | 3625 | 2316531.30204612 |
5 | Nyang Kit | 9514 | 1698 | 3704 | 1736576.18948028 |
6 | Axie Consumable Item | 2996 | 688 | 1246 | 1337365.16468437 |
7 | 7034 | 1312 | 1314 | 1093791.35193214 | |
8 | Wild Forest Packs | 6895 | 1246 | 1723 | 970389.457354274 |
9 | Moki Collection | 3645 | 1740 | 2253 | 936813.322569744 |
10 | CambriaCores | 2855 | 891 | 1827 | 907606.632047801 |
feyikemiTop NFTs By Vol
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 sales_volume_usd desc
limit 10
Last run: about 2 months ago
10
490B
33s