Day | NFT Address | NFT Name | Total Transactions | Total Users | Item Sales | Daily Volume | |
---|---|---|---|---|---|---|---|
1 | 2025-03-25 00:00:00.000 | 0x32950db2a7164ae833121501c797d79e7b79d74c | Axie | 2703 | 15 | 2703 | 24675.47 |
2 | 2025-03-25 00:00:00.000 | 0xa899849929e113315200609be208e6a0858f645c | Wild Forest Skins | 16 | 4 | 16 | 1.68 |
3 | 2025-03-25 00:00:00.000 | 0x727b7ff568e7173134eb02517c4a87eac390a77b | Fableborne Kingdoms | 84 | 3 | 84 | 16002.24 |
4 | 2025-03-25 00:00:00.000 | 0x883649b1d9e8b6d69ac9c36ca58531419d7dda8f | FightLeagueChips | 8 | 1 | 8 | 1.04 |
5 | 2025-03-25 00:00:00.000 | 0x810b6d1374ac7ba0e83612e7d49f49a13f1de019 | Ronkeverse | 85 | 38 | 85 | 397.99 |
6 | 2025-03-25 00:00:00.000 | 0x9c76fc5bd894e7f51c422f072675c876d5998a9e | Fishing Frenzy Chests | 439 | 52 | 439 | 1395.47 |
7 | 2025-03-25 00:00:00.000 | 0x814a9c959a3ef6ca44b5e2349e3bba9845393947 | Axie Charm | 125 | 14 | 128 | 437.91 |
8 | 2025-03-25 00:00:00.000 | 0xeec30410b2f1a2de6bfd1030468d2d033e307378 | Sunflower Land Pass | 9 | 7 | 9 | 0.36 |
9 | 2025-03-25 00:00:00.000 | 0x12b707c3d2786570cfdc3a998a085b62acdba4b3 | Axie Material | 1565 | 152 | 99679 | 4381.31 |
10 | 2025-03-25 00:00:00.000 | 0x4079da822e8972982b8569e38cdf719a21069934 | Fishing Frenzy Fish | 1249 | 92 | 1249 | 1998.68 |
11 | 2025-03-25 00:00:00.000 | 0x72288a7f32bec9de4a42bd19a746b9e7798996bb | Primal HeroZ | 1264 | 7 | 1264 | 5822.51 |
12 | 2025-03-25 00:00:00.000 | 0x5accb2f7ed043ee30565e2d8ee3c6a8f63012f01 | Pixel Dragons Hatchlings | 6 | 5 | 6 | 31.78 |
13 | 2025-03-25 00:00:00.000 | 0x578b65568b7a6a081a477748590774a64d8a4923 | RuniverseItem | 40 | 8 | 40 | 42.33 |
14 | 2025-03-25 00:00:00.000 | 0xc25970724f032af21d801978c73653c440cf787c | Axie Rune | 260 | 22 | 265 | 1626.18 |
15 | 2025-03-25 00:00:00.000 | 0x23924869ff64ab205b3e3be388a373d75de74ebd | Primos The Stone Age | 6 | 4 | 6 | 172.29 |
16 | 2025-03-25 00:00:00.000 | 0xa038c593115f6fcd673f6833e15462b475994879 | Wild Forest Units | 1678 | 33 | 1678 | 2101.9 |
17 | 2025-03-25 00:00:00.000 | 0x554bced1db572e16fdf4c8a6f23a301f7eb0293b | Pixel Heroes: Material Items | 2 | 2 | 2 | 0 |
18 | 2025-03-25 00:00:00.000 | 0xd78efaec85c1a4f42e6edb7209067702a2be8c90 | KaidroJournal | 1 | 1 | 1 | 0.02 |
19 | 2025-03-25 00:00:00.000 | 0x029bb759353f6547fbe387e97869057849ab4d23 | Ragnarok Monsters | 69 | 8 | 69 | 97.84 |
20 | 2025-03-25 00:00:00.000 | 0x737b80335a9396a8658405d7adcbc57343ff0558 | Axie Consumable Item | 189 | 55 | 884 | 124.8 |
i_danRONKE: NFTs Daily Metrics
Updated 7 days ago
999
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 main_data AS (
SELECT
block_timestamp
, contract_address
, name
, tx_hash
, is_mint
, origin_from_address
, from_address
, to_address
, quantity
, token_id
FROM ronin.nft.ez_nft_transfers
WHERE block_timestamp >= current_date - INTERVAL '30 Days'
AND contract_address != '0x810b6d1374ac7ba0e83612e7d49f49a13f1de019'
),
sales_txs AS (
SELECT
tx_hash,
from_address as buyer,
symbol,
amount,
amount_usd
FROM ronin.core.ez_token_transfers
WHERE to_address IN (
'0x3ef234bc2a04d86f6041e419458d9acbd077f2c1',
'0x3b3adf1422f84254b7fbb0e7ca62bd0865133fe3',
'0x21a0a1c081dc2f3e48dc391786f53035f85ce0bc'
)
),
Ronke_sales AS (
SELECT
block_timestamp
, contract_address
Last run: 7 days ago
...
549
58KB
9s