PLATFORMS | ADDRESS | TRANSACTIONS | |
---|---|---|---|
1 | Pixels | 1069205 | 23878814 |
2 | AXIE Infinity | 469153 | 21793855 |
3 | The Machines Arena | 172577 | 9712249 |
4 | Apeiron | 174953 | 4576811 |
5 | Kaidro Chronicle | 7152 | 3979637 |
6 | Wild Forest | 415032 | 3030905 |
7 | Pixel Dungeons | 11751 | 846970 |
8 | tanto kit | 87302 | 633955 |
9 | Pixel Heroes Adventure | 22845 | 593269 |
10 | Ragnarok: Monster World | 32535 | 442441 |
hess7. Top by Transactions
Updated 2025-04-09
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
with games as ( select * from $query('798c2d2f-083d-45a4-90e3-262eb17af08f')
where label_type = 'games')
select
label as platforms,
count(distinct FROM_ADDRESS) as address,
count(distinct tx_hash) as transactions
from ronin.core.fact_transactions a join games b on a.to_address = b.address
where block_timestamp::date >= '2025-01-01'
group by 1
order by 3 desc
limit 10
Last run: 18 days ago
10
333B
14s