COLLECTION | N_SALES | BUYERS | SELLERS | SALES_VOLUME_USD | |
---|---|---|---|---|---|
1 | Axie | 5792 | 2580 | 2415 | 397351.327627072 |
2 | RuniverseLand | 1162 | 439 | 560 | 308479.884821351 |
3 | Axie Land | 360 | 234 | 190 | 259951.200230605 |
4 | Adventure LandZ | 817 | 444 | 547 | 152133.374622812 |
5 | Ronkeverse | 1064 | 477 | 592 | 121958.318505198 |
6 | Farm Land | 98 | 70 | 71 | 108261.230463188 |
7 | Fableborne Kingdoms | 495 | 253 | 290 | 92641.888099772 |
8 | WatchersRing | 55 | 38 | 32 | 83209.200502754 |
9 | Axie Material | 1036 | 435 | 528 | 72969.424718566 |
10 | Axie Consumable Item | 348 | 104 | 190 | 69990.187664829 |
feyikemiTop NFT by Vol 30D
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
AND block_timestamp::date >= CURRENT_DATE - INTERVAL '30 days'
)
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
Last run: about 2 months ago
10
461B
3s