Pine Analyticsfight_horse
    Updated 6 days ago
    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: 6 days ago
    HOUR
    TOKENS_MINTED
    TOTAL_TOKENS_MINTED
    1
    2025-05-22 21:00:00.00015155
    2
    2025-05-21 06:00:00.00025154
    3
    2025-05-21 04:00:00.00015152
    4
    2025-05-19 22:00:00.00015151
    5
    2025-05-19 10:00:00.00015150
    6
    2025-05-18 18:00:00.00015149
    7
    2025-05-18 04:00:00.00015148
    8
    2025-05-11 21:00:00.00015147
    9
    2025-05-11 18:00:00.00015146
    10
    2025-05-10 18:00:00.00015145
    11
    2025-05-09 11:00:00.00015144
    12
    2025-05-09 10:00:00.00015143
    13
    2025-05-09 07:00:00.00015142
    14
    2025-05-09 06:00:00.00015141
    15
    2025-05-09 05:00:00.00015140
    16
    2025-05-08 15:00:00.00015139
    17
    2025-05-08 12:00:00.00015138
    18
    2025-05-08 11:00:00.00015137
    19
    2025-05-07 19:00:00.00015136
    20
    2025-05-07 13:00:00.00015135
    ...
    1941
    66KB
    355s