hbd1994002 - Daily Function Calls and Transactions
    Updated 2025-03-25
    with base_query as (
    select
    BLOCK_TIMESTAMP,
    TX_ID,
    replace(substr(utils.udf_base58_to_hex(INSTRUCTION:data),3,1000), '') as instruction_data,
    INDEX,
    signers[0] as user
    from eclipse.core.fact_events
    where SUCCEEDED = 'TRUE'
    and PROGRAM_ID = 'DcZMKcjz34CcXF1vx7CkfARZdmEja2Kcwvspu1Zw6Zmn')

    select
    date_trunc('day', BLOCK_TIMESTAMP) as "Date",
    case
    when substr(instruction_data,0,16) = '3b86a17013edc06b' then 'End And Start Game'
    when substr(instruction_data,0,16) = 'f6db9f60f8d1dac8' then 'Withdraw Unused Accounts Rent'
    when substr(instruction_data,0,16) = 'fe7270f425312080' then 'Predict'
    when substr(instruction_data,0,16) = '4bb494755164a932' then 'Withdraw Winnings'
    when substr(instruction_data,0,16) = 'f13de01f5091cacb' then 'Mark Withdrawn'
    when substr(instruction_data,0,16) = 'b17114e8b557783e' then 'Init User Stats'
    when substr(instruction_data,0,16) = 'cb7483c1bcb89132' then 'Init Season Stats'
    when substr(instruction_data,0,16) = '40f4bc78a7e9690a' then 'Idl Write'
    when substr(instruction_data,0,16) = '1d27c86c5e60638d' then 'Init Prediction Stats'
    end as "Functions",
    count(*) as "Program Calls",
    count(distinct tx_id) as "Transactions",
    count(distinct user) as "Unique Users"
    from base_query
    group by 1,2
    order by 1,2
    Last run: 11 days agoAuto-refreshes every 24 hours
    Date
    Functions
    Program Calls
    Transactions
    Unique Users
    1
    2024-08-29 00:00:00.000Idl Write771
    2
    2024-09-28 00:00:00.000End And Start Game87871
    3
    2024-09-29 00:00:00.000End And Start Game5915911
    4
    2024-09-29 00:00:00.000Init Prediction Stats221
    5
    2024-09-29 00:00:00.000Init Season Stats111
    6
    2024-09-29 00:00:00.000Init User Stats774
    7
    2024-09-29 00:00:00.000Mark Withdrawn542
    8
    2024-09-29 00:00:00.000Predict14143
    9
    2024-09-29 00:00:00.000Withdraw Winnings763
    10
    2024-10-01 00:00:00.000End And Start Game5415411
    11
    2024-10-01 00:00:00.000Init Season Stats111
    12
    2024-10-01 00:00:00.000Init User Stats111
    13
    2024-10-01 00:00:00.000Predict332
    14
    2024-10-01 00:00:00.000Withdraw Winnings111
    15
    2024-10-02 00:00:00.000End And Start Game9009001
    16
    2024-10-02 00:00:00.000Init Season Stats111
    17
    2024-10-02 00:00:00.000Init User Stats221
    18
    2024-10-02 00:00:00.000Mark Withdrawn542
    19
    2024-10-02 00:00:00.000Predict11112
    20
    2024-10-02 00:00:00.000Withdraw Unused Accounts Rent783361
    ...
    1212
    65KB
    71s