TOTAL_MINTED | TOTAL_BURNED | CURRENT_SUPPLY | |
---|---|---|---|
1 | 1000000000 | 0 | 1000000000 |
Cryptosidefatal-blush
Updated 2025-05-14
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
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
1
27B
3s