Hessishstkem - txs
    Updated 2025-03-19
    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: about 1 month ago
    TIME
    TXS
    PLAYERS
    ACTION
    1
    2025-02-09 00:00:00.00080811179New game 🏁
    2
    2025-01-26 00:00:00.00029077New game 🏁
    3
    2025-01-28 00:00:00.000148926Stack 🧱
    4
    2025-02-09 00:00:00.0001632781179Stack 🧱
    5
    2025-02-17 00:00:00.0002752593End game ✋
    6
    2025-01-23 00:00:00.000873153End game ✋
    7
    2025-01-19 00:00:00.000133End game ✋
    8
    2025-01-19 00:00:00.0002643Stack 🧱
    9
    2025-02-26 00:00:00.0001221405New game 🏁
    10
    2025-02-24 00:00:00.0001892517New game 🏁
    11
    2025-03-05 00:00:00.00032959653Stack 🧱
    12
    2025-03-17 00:00:00.000767308New game 🏁
    13
    2025-02-22 00:00:00.00047281448Stack 🧱
    14
    2025-03-05 00:00:00.0001508628End game ✋
    15
    2025-02-28 00:00:00.0001658546New game 🏁
    16
    2025-01-21 00:00:00.000737106End game ✋
    17
    2025-03-13 00:00:00.000988331End game ✋
    18
    2025-03-15 00:00:00.000710187New game 🏁
    19
    2025-03-04 00:00:00.00028173660Stack 🧱
    20
    2025-03-19 00:00:00.0006186119Stack 🧱
    ...
    183
    9KB
    189s