Cryptosidefatal-blush
    Updated 2025-05-14
    select
    sum(case
    when from_address = '0x0000000000000000000000000000000000000000' then amount
    else 0
    end) as total_minted,
    sum(case
    when to_address = '0x0000000000000000000000000000000000000000' then amount
    else 0
    end) as total_burned,
    sum(case
    when from_address = '0x0000000000000000000000000000000000000000' then amount
    when to_address = '0x0000000000000000000000000000000000000000' then -amount
    else 0
    end) as current_supply
    from avalanche.core.ez_token_transfers
    where contract_address = lower('0x0f669808d88b2b0b3d23214dcd2a1cc6a8b1b5cd')
    Last run: about 1 month ago
    TOTAL_MINTED
    TOTAL_BURNED
    CURRENT_SUPPLY
    1
    100000000001000000000
    1
    27B
    3s