JeffersPublic minting analysis
    Updated 2025-03-08
    with mint_data as
    (
    select *
    from monad.testnet.fact_event_logs
    where contract_address = lower('0xE8F0635591190Fb626F9D13C49b60626561Ed145')
    and topic_1 = lower('0x0000000000000000000000000000000000000000000000000000000000000000')
    and block_timestamp >= '2025-02-19 16:00:00'
    ),

    public_mint as
    (
    select
    m.tx_hash,
    m.contract_address AS nft_contract,
    m.origin_from_address AS minter_wallet,
    m.origin_to_address AS minting_contract,
    t.block_timestamp,
    t.from_address,
    t.to_address,
    t.value as MON_value,
    t.tx_fee as gas_fee,
    from mint_data m
    join monad.testnet.fact_transactions t
    on m.tx_hash = t.tx_hash
    where m.block_timestamp >= '2025-02-20 15:59:00'
    order by m.block_timestamp
    )

    SELECT
    gas_fee,
    COUNT(DISTINCT minter_wallet) AS unique_minting_wallets,
    COUNT(*) AS total_mints
    FROM public_mint
    GROUP BY gas_fee
    ORDER BY gas_fee DESC;


    Last run: about 2 months ago
    GAS_FEE
    UNIQUE_MINTING_WALLETS
    TOTAL_MINTS
    1
    1.823294444
    2
    1.28111
    3
    0.32511
    4
    0.1511
    5
    0.1252522
    6
    0.09230975111
    7
    0.06757878
    8
    0.0544
    9
    0.04066662611
    10
    0.03489035611
    11
    0.03198274811
    12
    0.03198030411
    13
    0.0317526361515
    14
    0.01892987411
    15
    0.01855871111
    16
    0.018557233
    17
    0.01842512222
    18
    0.01497064877
    19
    0.01496950422
    20
    0.0148629361616
    25
    421B
    10s