freemartianHourly mints
    Updated 2025-03-05
    with temp1 AS(
    SELECT
    *
    FROM eclipse.core.fact_events_inner

    WHERE instruction_PROGRAM_ID = 'RariUNM3vz1rwxPg8UJyRAN7rSKXxgd2ncS2ddCa4ZE'
    AND instruction:parsed:info:destination = '25EdY4Q6ejAT5FRuK71pjvxitq88vQwcggEHbUnrEYvx'
    AND block_timestamp::date >= '2025-01-01'
    ),
    temp2 as(
    SELECT
    *
    FROM eclipse.core.fact_events_inner
    WHERE instruction_PROGRAM_ID = 'RariUNM3vz1rwxPg8UJyRAN7rSKXxgd2ncS2ddCa4ZE'
    AND instruction:parsed:info:destination = 'AsSKqK7CkxFUf3KaoQzzr8ZLPm5fFguUtVE5QwGALQQn'
    AND block_timestamp::date >= '2025-01-01'

    ),

    all_temps AS(
    SELECT temp1.*
    FROM temp1
    left JOIN temp2 on (temp1.tx_id = temp2.tx_id)
    ),
    all_minters AS(
    SELECT
    block_timestamp, tx_id, signers[0] as minter,
    FROM eclipse.core.fact_events_inner
    WHERE event_type = 'mintTo'
    AND INSTRUCTION:program = 'spl-token'
    AND block_timestamp::date >= '2025-01-01'
    AND tx_id IN (SELECT tx_id FROM all_temps)
    )

    SELECT
    date_trunc('hour',block_timestamp) AS time,
    Last run: 25 days agoAuto-refreshes every 1 hour
    TIME
    MINTS
    MINTERS
    ETH_MINT_PRICES
    1
    2025-01-21 23:00:00.000660.0039
    2
    2025-01-21 00:00:00.00018160.0117
    3
    2025-01-21 12:00:00.00025250.01625
    4
    2025-01-21 09:00:00.00029290.01885
    5
    2025-01-23 12:00:00.00036350.0234
    6
    2025-01-17 19:00:00.00033290.02145
    7
    2025-01-21 07:00:00.00028260.0182
    8
    2025-01-20 13:00:00.00029280.01885
    9
    2025-01-17 16:00:00.00067540.04355
    10
    2025-01-22 01:00:00.000330.00195
    11
    2025-01-18 04:00:00.000770.00455
    12
    2025-01-19 19:00:00.00018150.0117
    13
    2025-01-19 16:00:00.00021180.01365
    14
    2025-01-23 00:00:00.000990.00585
    15
    2025-01-18 16:00:00.000990.00585
    16
    2025-01-19 04:00:00.000660.0039
    17
    2025-01-22 14:00:00.00011110.00715
    18
    2025-01-17 02:00:00.00040380.026
    19
    2025-01-22 12:00:00.00011110.00715
    20
    2025-01-17 18:00:00.00013130.00845
    ...
    168
    7KB
    935s