STATUS | N_WALLETS | TXS_CNT | |
---|---|---|---|
1 | 1 Game Participants | 5422149 | 110023933 |
2 | 2 Game Participants | 20406 | 1537696 |
3 | 3 Game Participants | 3258 | 572716 |
4 | 4 Game Participants | 617 | 183105 |
0xHaM-dUsers in Game
Updated 2025-03-28
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 first_ever_txs AS (
SELECT
BLOCK_TIMESTAMP,
TX_HASH,
FROM_ADDRESS,
CASE
when TO_ADDRESS in ('0xd887014121ddbad4494093689997125dde30612a'
,'0x3825ff6b6ad0f460660547e5890425ee821bd02c') then 'Fableborne'
when TO_ADDRESS in ('0x02790f32ad7e7eaaecfb0ad21950829932f1a2ee'
,'0x7eae20d11ef8c779433eb24503def900b9d28ad7') then 'Pixel'
when TO_ADDRESS in ('0x1136dac182ab639632a38540c6f33c01e02e51a6') then 'Wild Forest'
when TO_ADDRESS in ('0x19f70ecd63f40f11716c3ce2b50a6d07491c12fe') then 'Lumiterra'
when TO_ADDRESS in ('0x9d3936dbd9a794ee31ef9f13814233d435bd806c'
,'0x32950db2a7164ae833121501c797d79e7b79d74c'
,'0x05b0bb3c1c320b280501b86706c3551995bc8571'
,'0x3e0674b1ddc84b0cfd9d773bb2ce23fe8f445de3') then 'Axie Infinity'
end as first_game,
FROM ronin.core.fact_transactions
WHERE TO_ADDRESS in (
'0xd887014121ddbad4494093689997125dde30612a'
,'0x3825ff6b6ad0f460660547e5890425ee821bd02c'
,'0x02790f32ad7e7eaaecfb0ad21950829932f1a2ee'
,'0x7eae20d11ef8c779433eb24503def900b9d28ad7'
,'0x1136dac182ab639632a38540c6f33c01e02e51a6'
,'0x9d3936dbd9a794ee31ef9f13814233d435bd806c'
,'0x32950db2a7164ae833121501c797d79e7b79d74c'
,'0x05b0bb3c1c320b280501b86706c3551995bc8571'
,'0x3e0674b1ddc84b0cfd9d773bb2ce23fe8f445de3'
,'0x19f70ecd63f40f11716c3ce2b50a6d07491c12fe'
)
)
,
user_per_game as (
SELECT
FROM_ADDRESS,
count(DISTINCT first_game) as n_games,
Last run: 18 days ago
4
152B
185s