Hessishstkem - txs
    Updated 2025-05-11
    SELECT date_trunc('day',block_timestamp) as time,
    count(DISTINCT TX_ID) as txs,
    count(DISTINCT signers[0]) as players,
    case
    when LOG_MESSAGES[1] like '%Start%' then 'New game 🏁'
    when LOG_MESSAGES[1] like '%EndGame%' then 'End game ✋'
    when LOG_MESSAGES[1] like '%Step%' then 'Stack 🧱'
    end as action
    from eclipse.core.fact_transactions
    where LOG_MESSAGES[0] like '%STKgRMpqo41oATf18cHGFWaqVEe9gAWjLGzGZ9WpGH2%'
    and SUCCEEDED = 'TRUE'
    group by all
    having action is not null
    Last run: 14 days ago
    TIME
    TXS
    PLAYERS
    ACTION
    1
    2025-04-11 00:00:00.000172633Stack 🧱
    2
    2025-02-04 00:00:00.00010497Stack 🧱
    3
    2025-03-31 00:00:00.000472231New game 🏁
    4
    2025-03-15 00:00:00.000572155End game ✋
    5
    2025-02-07 00:00:00.0004338647End game ✋
    6
    2025-03-22 00:00:00.000703185End game ✋
    7
    2025-03-15 00:00:00.00014442186Stack 🧱
    8
    2025-02-01 00:00:00.0002110End game ✋
    9
    2025-01-23 00:00:00.0001063157New game 🏁
    10
    2025-02-24 00:00:00.0001569496End game ✋
    11
    2025-03-16 00:00:00.000495186New game 🏁
    12
    2025-02-08 00:00:00.00093371077New game 🏁
    13
    2025-03-25 00:00:00.000331146End game ✋
    14
    2025-02-08 00:00:00.00077711057End game ✋
    15
    2025-04-09 00:00:00.000305150New game 🏁
    16
    2025-04-10 00:00:00.00010743End game ✋
    17
    2025-04-12 00:00:00.00041End game ✋
    18
    2025-01-16 00:00:00.000124End game ✋
    19
    2025-03-10 00:00:00.0001098302New game 🏁
    20
    2025-04-08 00:00:00.0005404211Stack 🧱
    ...
    254
    13KB
    671s