freemartianMinutely phase2 mints
    Updated 2025-02-01
    with mints AS (
    SELECT
    block_timestamp,
    tx_hash,
    decoded_log:dropStageIndex AS phase,
    decoded_log:feeRecipient AS fee_recipient,
    decoded_log:minter AS minter,
    decoded_log:quantityMinted AS quantity_minted,
    decoded_log:unitMintPrice / pow(10,18) AS unit_mint_price,
    unit_mint_price * quantity_minted AS mint_price,
    FROM ethereum.core.ez_decoded_event_logs
    WHERE block_timestamp::date >= '2024-12-20'
    -- AND block_timestamp::date <= '2024-12-21'
    -- AND tx_hash = lower('0x750d65f99cd335a12a08738bd8442ddf9b998377ae2e1df9fd1495466b50580e')
    AND event_name = 'SeaDropMint'
    AND decoded_log:nftContract = lower('0x9830b32f7210f0857A859c2A86387e4d1bB760B8')
    ),

    phase1 AS(
    SELECT * FROM mints
    where phase = 1
    ),

    phase2 AS(
    SELECT * FROM mints
    where phase = 2
    )


    SELECT
    date_trunc('minute',block_timestamp) AS time,
    count(tx_hash) AS transactions,
    count(DISTINCT minter) AS minters,
    SUM(quantity_minted) AS qty_minted,
    SUM(mint_price) AS mint_price
    FROM phase2
    Last run: 2 months ago
    TIME
    TRANSACTIONS
    MINTERS
    QTY_MINTED
    MINT_PRICE
    1
    2024-12-22 12:02:00.0007575757.5
    2
    2024-12-22 12:01:00.00052152152152.1
    3
    2024-12-22 12:00:00.0001110.1
    3
    125B
    4s