picasoTotal Active Addresses per game
Updated 2025-02-17
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 game_contracts AS (
SELECT *
FROM VALUES
('0x02790f32ad7e7eaaecfb0ad21950829932f1a2ee', 'Pixel'),
('0x1136dac182ab639632a38540c6f33c01e02e51a6', 'Wild Forest'),
('0x58ad3594758b0f74478dbc07168812ddf460a07f', 'Apeiron'), -- Daily Checkin
('0xa62bbfe37d5fd209a83e17c385b0d1034ac41ade', 'The Machines Arena'), -- Raffle
('0x9d3936dbd9a794ee31ef9f13814233d435bd806c', 'Axie Infinity'), -- Atia's Blessing
('0x7eae20d11ef8c779433eb24503def900b9d28ad7', 'Pixel'),
('0xd97c9707528141b3b505eec03ee90aebf055a901', 'Kaidro'), -- Kalodium Token
('0x19f70ecd63f40f11716c3ce2b50a6d07491c12fe', 'Lumiterra'), -- CBT
('0x32950db2a7164ae833121501c797d79e7b79d74c', 'Axie Infinity'), -- Axie Token
('0x59cfa86b6820901ebeddd60f131c473c15eae130', 'Ragnarok: Monster World'), -- Nyan Kit Token
('0xda1c8c1d7df35ecf91186e3cb410ecdb4fb29a3a', 'Ragnarok: Monster World'), -- Check In
('0x0e268edc8750d50c440d715c935eba2e7c6ae775', 'Pixel HeroZ'),
('0x9fD6f787A46Ea213EEc09106B93a2a7c7eAEd617', 'Pixel HeroZ'),
('0x05b0bb3c1c320b280501b86706c3551995bc8571', 'Axie Infinity'),
('0x0a9e7795ab1d691986b8f944f99560a7ed9e0708', 'Kongz'), -- Jungle Adventure (Kredit Token)
('0x9eb8857d07a833b47cc95a1f5c8331d627622511', 'Kongz'), -- Jungle Logic
('0x3e0674b1ddc84b0cfd9d773bb2ce23fe8f445de3', 'Axie Infinity'), -- Gacha
('0x3825ff6b6ad0f460660547e5890425ee821bd02c', 'Fableborne'), -- FE Token
('0xd887014121ddbad4494093689997125dde30612a', 'Fableborne') -- FG Token
AS t (contract_address, project)
),
transaction_data AS (
SELECT
t.project,
from_address AS address
FROM ronin.core.fact_transactions ft
JOIN game_contracts t ON ft.to_address = t.contract_address
UNION
SELECT
t.project,