Updated 2025-02-22
    WITH erc1155_contracts AS (
    SELECT
    contract_address
    FROM monad.testnet.fact_event_logs
    WHERE topic_0 IN (
    '0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62',
    '0x4a39dc06d4c0dbc64b70b5eb2aa10c99d1887e3f0adf967c6fbbfb89c4a79e11'
    )
    AND block_timestamp >= '2025-02-19'
    GROUP BY contract_address
    ),

    decoded_erc1155_mints AS (
    SELECT
    origin_from_address AS minter,
    '0x' || SUBSTR(topics[2], 27) AS to_address,
    l.contract_address AS contract_address,
    ethereum.public.udf_hex_to_int(topics[3]) AS token_id,
    DATE_TRUNC('hour', l.block_timestamp) AS hour,
    l.tx_hash AS tx_hash
    FROM monad.testnet.fact_event_logs l
    WHERE topic_0 IN (
    '0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62',
    '0x4a39dc06d4c0dbc64b70b5eb2aa10c99d1887e3f0adf967c6fbbfb89c4a79e11'
    )
    AND l.contract_address IN (SELECT contract_address FROM erc1155_contracts)
    AND l.block_timestamp >= '2025-02-19'
    ),

    erc721_contracts AS (
    SELECT
    contract_address
    FROM monad.testnet.fact_event_logs
    WHERE topic_0 = '0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef'
    AND ARRAY_SIZE(topics) = 4
    AND block_timestamp >= '2025-02-19'
    Last run: 25 days ago
    HOUR
    TOTAL_MINTERS
    TOTAL_MINTS
    1
    2025-02-19 00:00:00.000716
    2
    2025-02-19 01:00:00.00014
    3
    2025-02-19 02:00:00.00023
    4
    2025-02-19 03:00:00.000711
    5
    2025-02-19 04:00:00.0001020
    6
    2025-02-19 05:00:00.000628
    7
    2025-02-19 06:00:00.0001414
    8
    2025-02-19 07:00:00.0001167
    9
    2025-02-19 08:00:00.0001250
    10
    2025-02-19 09:00:00.00071227
    11
    2025-02-19 10:00:00.00082408
    12
    2025-02-19 11:00:00.00091226
    13
    2025-02-19 12:00:00.000186381
    14
    2025-02-19 13:00:00.000360670
    15
    2025-02-19 14:00:00.00011661516
    16
    2025-02-19 15:00:00.00038375345
    17
    2025-02-19 16:00:00.000567910465
    18
    2025-02-19 17:00:00.0001634040244
    19
    2025-02-19 18:00:00.0001802036692
    20
    2025-02-19 19:00:00.0001297326802
    75
    3KB
    3s