Pine Analyticsfight_horse
    Updated 2025-04-05
    SELECT
    date_trunc('hour', block_timestamp) as hour,
    count(*) as tokens_minted,
    sum(tokens_minted) over (order by hour) as total_tokens_minted

    FROM (
    SELECT
    t.*,
    f.value as log_message,
    f.index as log_index
    FROM eclipse.core.fact_transactions t,
    LATERAL FLATTEN(input => LOG_MESSAGES) f
    WHERE log_message LIKE '%InitializeMint2%'
    AND block_timestamp > '2024-11-10'
    and log_messages[0] like 'Program 7X3YmPcRu4V5GKxeFvC9MQq4bemCdR5MWea5tVs62bM9 invoke [1]'
    and SUCCEEDED
    and not signers[0] like '2SpeaLUs5SUBauC3xDwDyArz28buhi44QP4RBQq3Gn4E'
    )

    GROUP BY 1
    order by hour DESC


    Last run: 20 days ago
    HOUR
    TOKENS_MINTED
    TOTAL_TOKENS_MINTED
    1
    2025-04-05 13:00:00.00054972
    2
    2025-04-05 11:00:00.00014967
    3
    2025-04-05 09:00:00.00014966
    4
    2025-04-05 07:00:00.00014965
    5
    2025-04-05 05:00:00.00014964
    6
    2025-04-05 02:00:00.00014963
    7
    2025-04-04 20:00:00.00014962
    8
    2025-04-04 12:00:00.00014961
    9
    2025-04-04 11:00:00.00014960
    10
    2025-04-04 10:00:00.00014959
    11
    2025-04-04 09:00:00.00024958
    12
    2025-04-04 06:00:00.00014956
    13
    2025-04-04 04:00:00.00014955
    14
    2025-04-04 00:00:00.00014954
    15
    2025-04-03 22:00:00.00014953
    16
    2025-04-03 18:00:00.00014952
    17
    2025-04-03 16:00:00.00014951
    18
    2025-04-03 13:00:00.00014950
    19
    2025-04-03 11:00:00.00014949
    20
    2025-04-03 05:00:00.00014948
    ...
    1808
    61KB
    226s