gonisgone50/50%
    Updated 2025-03-18

    select
    DATE_TRUNC('month', block_timestamp) AS month,
    sum(AMOUNT) as burn_amount
    from
    kaia.core.ez_token_transfers
    where
    block_timestamp > current_date - interval '12 months'
    AND SYMBOL = 'MBX'
    AND LOWER(TO_ADDRESS) = LOWER('0x1ae5f532724aEe9d8FF9c6456b3466882d1bD7d1')
    GROUP BY
    month
    ORDER BY
    month;
    QueryRunArchived: QueryRun has been archived