hess13. New Game Users
    Updated 2025-04-09
    with platforms as ( select * from $query('798c2d2f-083d-45a4-90e3-262eb17af08f')
    where label_type = 'games'
    )
    ,
    final as (select min(block_timestamp::date) as date,
    from_address,
    count(distinct block_timestamp::Date) as days
    from ronin.core.fact_transactions a join platforms b on a.to_address = b.address
    group by 2)

    select date,
    count(distinct from_address) as "New Game Player",
    sum("New Game Player") over (order by date asc) as "Cumulative New Game Player"
    from final
    where date >= '2025-01-01'
    group by 1
    Last run: 15 days ago
    DATE
    New Game Player
    Cumulative New Game Player
    1
    2025-01-15 00:00:00.00015127172717
    2
    2025-01-08 00:00:00.000790472289
    3
    2025-01-24 00:00:00.00011042309104
    4
    2025-02-21 00:00:00.00011911607427
    5
    2025-03-12 00:00:00.0003147757967
    6
    2025-02-03 00:00:00.0007295402436
    7
    2025-02-20 00:00:00.00015941595516
    8
    2025-03-10 00:00:00.0006476750171
    9
    2025-03-28 00:00:00.0007242914688
    10
    2025-01-21 00:00:00.00012537272012
    11
    2025-01-07 00:00:00.0002635064385
    12
    2025-03-29 00:00:00.0005359920047
    13
    2025-03-19 00:00:00.0006555850982
    14
    2025-02-02 00:00:00.0005789395141
    15
    2025-03-01 00:00:00.0009051675413
    16
    2025-03-17 00:00:00.0004041835299
    17
    2025-01-16 00:00:00.00016785189502
    18
    2025-02-26 00:00:00.0006762651960
    19
    2025-02-04 00:00:00.0007486409922
    20
    2025-01-27 00:00:00.00029665356914
    99
    4KB
    12s