Updated 2025-02-27
    WITH mint_events AS (
    SELECT
    tx_hash,
    DATE_TRUNC('day', block_timestamp) AS mint_date,
    '0x' || SUBSTR(topics[2], 27) AS minter_address,
    ethereum.public.udf_hex_to_int(topics[3]) AS nft_id
    FROM kaia.core.fact_event_logs
    WHERE
    contract_address = LOWER('0x2f0bcecce06b6eb32a83073984d0b793640aeaf6')
    AND '0x' || SUBSTR(topics[1], 27) = '0x0000000000000000000000000000000000000000'
    )

    SELECT
    mint_date,
    COUNT(DISTINCT tx_hash) AS total_mints,
    COUNT(DISTINCT minter_address) AS unique_minters,
    COUNT(DISTINCT nft_id) AS total_unique_nfts
    FROM mint_events
    GROUP BY mint_date
    ORDER BY mint_date;

    Last run: 2 months ago
    MINT_DATE
    TOTAL_MINTS
    UNIQUE_MINTERS
    TOTAL_UNIQUE_NFTS
    1
    2025-01-22 00:00:00.000611323022
    2
    2025-01-23 00:00:00.000777
    3
    2025-01-24 00:00:00.000333
    4
    2025-01-25 00:00:00.0004320
    5
    2025-01-26 00:00:00.000333
    6
    2025-01-27 00:00:00.000111
    7
    2025-01-28 00:00:00.000111
    8
    2025-01-29 00:00:00.000111
    9
    2025-01-30 00:00:00.000111
    10
    2025-01-31 00:00:00.000222
    11
    2025-02-03 00:00:00.000111
    12
    2025-02-05 00:00:00.000111
    13
    2025-02-06 00:00:00.000111
    14
    2025-02-10 00:00:00.000111
    15
    2025-02-13 00:00:00.000223
    16
    2025-02-14 00:00:00.000111
    17
    2025-02-15 00:00:00.000111
    18
    2025-02-17 00:00:00.000333
    19
    2025-02-18 00:00:00.000333
    20
    2025-02-22 00:00:00.000111
    21
    722B
    3s