hess5. Daily Share
    Updated 2025-04-09
    with games as ( select * from $query('798c2d2f-083d-45a4-90e3-262eb17af08f')
    )
    ,
    total as ( select label,
    count(distinct tx_hash) as txns
    from ronin.core.fact_transactions a join games b on a.to_address = b.address
    group by 1
    order by 2 desc
    limit 7)
    ,
    tops as (select address,
    label as platform,
    count(distinct tx_hash) as txns
    from ronin.core.fact_transactions a join games b on a.to_address = b.address
    where label in (select label from total)
    group by 1,2)

    select block_timestamp::date as date,
    case when platform is null then 'Others' else platform end as platforms,
    count(distinct FROM_ADDRESS) as address,
    count(distinct tx_hash) as transactions
    from ronin.core.fact_transactions a left outer join tops b on a.to_address = b.address
    where block_timestamp::date >= '2025-01-01'
    group by 1,2
    Last run: 17 days ago
    DATE
    PLATFORMS
    ADDRESS
    TRANSACTIONS
    1
    2025-01-19 00:00:00.000AXIE Infinity121440187512
    2
    2025-02-05 00:00:00.000Others30947190623
    3
    2025-01-06 00:00:00.000Apeiron5454154771
    4
    2025-02-07 00:00:00.000Wild Forest2021721413
    5
    2025-01-28 00:00:00.000Apeiron3097431087
    6
    2025-02-11 00:00:00.000Lumiterra14461497
    7
    2025-04-06 00:00:00.000Pixels165636168478
    8
    2025-01-29 00:00:00.000Pixels230115235225
    9
    2025-02-07 00:00:00.000The Machines Arena119039119552
    10
    2025-02-26 00:00:00.000Pixels261917270317
    11
    2025-03-15 00:00:00.000Lumiterra18141839
    12
    2025-03-05 00:00:00.000Apeiron5155351681
    13
    2025-03-10 00:00:00.000AXIE Infinity121893198717
    14
    2025-03-09 00:00:00.000Kaidro Chronicle70278822
    15
    2025-03-17 00:00:00.000Apeiron3698837154
    16
    2025-03-20 00:00:00.000Kaidro Chronicle536747
    17
    2025-01-11 00:00:00.000Wild Forest104799107069
    18
    2025-01-14 00:00:00.000AXIE Infinity123182200263
    19
    2025-01-21 00:00:00.000Kaidro Chronicle891126516
    20
    2025-01-16 00:00:00.000Pixels283325290853
    ...
    792
    42KB
    31s