COLLECTION_NAME | TRANSACTIONS | |
---|---|---|
1 | Axie | 144190 |
2 | RuniverseItem | 35037 |
3 | Wild Forest Units | 23086 |
4 | Ronkeverse | 21358 |
5 | Ragnarok Monsters | 13694 |
6 | Fableborne Kingdoms | 7116 |
7 | Wild Forest Skins | 6977 |
8 | KaidroJournal | 5548 |
9 | Moki Collection | 2116 |
10 | Ronin Name Service | 1733 |
Afonso_DiazTop Collections
Updated 2025-05-18
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
txns as (
select
tx_hash,
block_timestamp,
nvl(a.decoded_log:_from, a.decoded_log:from) as seller,
nvl(a.decoded_log:_to, a.decoded_log:to) as buyer,
a.contract_address as collection_id,
a.contract_name as collection_name,
nvl(a.decoded_log:_tokenId, a.decoded_log:tokenId) as token_id,
b.amount as price,
b.amount_usd as price_usd
from
ronin.core.ez_decoded_event_logs a
join
ronin.core.ez_native_transfers b using (tx_hash, origin_to_address)
where
origin_to_address = '0x0000000000000068f116a894984e2db1123eb395'
and a.event_name = 'Transfer'
and token_id is not null
and seller = b.to_address
and trace_address != 'ORIGIN'
),
main as (
select
tx_hash,
block_timestamp,
seller,
buyer,
collection_id,
collection_name,
token_id,
price / (select count(*) from txns b where a.seller = b.seller) as price,
price_usd / (select count(*) from txns b where a.seller = b.seller) as price_usd
Last run: 14 days ago
10
250B
3s