monadmetrics-JFe1_RGas fees paid for mints
    Updated 2025-02-28
    SELECT
    DATE_TRUNC('day', t.block_timestamp) AS mint_date,
    SUM(t.tx_fee) AS total_gas_fees,
    AVG(t.tx_fee) AS avg_gas_fee_per_mint
    FROM monad.testnet.fact_event_logs e
    JOIN monad.testnet.fact_transactions t
    ON e.tx_hash = t.tx_hash
    WHERE e.contract_address = '0x66e40f67afd710386379a6bb24d00308f81c183f'
    AND e.origin_to_address = '0x66e40f67afd710386379a6bb24d00308f81c183f'
    AND e.topic_0 = '0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62'
    AND e.tx_succeeded = 'TRUE'
    GROUP BY mint_date
    ORDER BY mint_date ASC

    Last run: about 1 month ago
    MINT_DATE
    TOTAL_GAS_FEES
    AVG_GAS_FEE_PER_MINT
    1
    2025-02-23 00:00:00.00033.1360109570.01116066385
    2
    2025-02-24 00:00:00.0000.1002057630.00357877725
    3
    2025-02-25 00:00:00.0000.0146291680.003657292
    4
    2025-02-26 00:00:00.0000.0788430310.003754430048
    5
    2025-02-27 00:00:00.0000.7381637890.005198336542
    6
    2025-02-28 00:00:00.0000.0636405610.003349503211
    6
    327B
    9s