DATE1 | SYMBOL | SUPPLY_TOKENS | |
---|---|---|---|
1 | 2025-03-24 00:00:00.000 | aUSD (StableJack) | 1767818.36710044 |
2 | 2025-03-24 00:00:00.000 | USDC | 582045890.694219 |
3 | 2025-03-24 00:00:00.000 | MIM | 5905143.145018 |
4 | 2025-03-24 00:00:00.000 | EURC | 3463872.84694293 |
5 | 2025-03-24 00:00:00.000 | BUIDL | 52915914.685 |
6 | 2025-03-24 00:00:00.000 | BNUSD | 38347.98929666 |
7 | 2025-03-17 00:00:00.000 | aUSD (StableJack) | 1743356.29062214 |
8 | 2025-03-17 00:00:00.000 | aUSD (Agora) | 27289081.11 |
9 | 2025-03-17 00:00:00.000 | YUSD | 11870426.3306648 |
10 | 2025-03-17 00:00:00.000 | USDV | 66747.750874501 |
11 | 2025-03-17 00:00:00.000 | USDC | 553282148.124411 |
12 | 2025-03-17 00:00:00.000 | MIM | 5849046.64877739 |
13 | 2025-03-17 00:00:00.000 | DAI | 14641028.146223 |
14 | 2025-03-17 00:00:00.000 | BUIDL | 53182880.046 |
15 | 2025-03-17 00:00:00.000 | BNUSD | 36704.357519477 |
16 | 2025-03-10 00:00:00.000 | aUSD (StableJack) | 1704724.93313996 |
17 | 2025-03-10 00:00:00.000 | aUSD (Agora) | 28498081.11 |
18 | 2025-03-10 00:00:00.000 | VEUR | 1028348.03188166 |
19 | 2025-03-10 00:00:00.000 | USDV | 66780.566220001 |
20 | 2025-03-10 00:00:00.000 | USDC | 530028228.276406 |
Ali3NStablecoins Supply (Avalanche Monitor)
Updated 2025-03-25
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with europricet as (
select block_timestamp::Date as day,
sum (amount_in) as volume1,
sum (amount_out) as volume2,
volume2/volume1 as europrice
from ethereum.defi.ez_dex_swaps
where token_in = '0x1abaea1f7c830bd89acc67ec4af516284b1bc33c'
and symbol_out in ('USDC','USDT')
and amount_in > 0
and amount_out > 0
group by 1),
mintst as (
select date_trunc (day,block_timestamp) as date1,
'Stablecoin' as token_type,
case when contract_address = '0x9702230a8ea53601f5cd2dc00fdbc13d4df4a8c7' then 'USDT'
when contract_address = '0xb97ef9ef8734c71904d8002f8b6bc66dd9c48a6e' then 'USDC'
when contract_address = '0x00000000efe302beaa2b3e6e1b18d08d69a9012a' then 'aUSD (Agora)'
when contract_address = '0xabe7a9dfda35230ff60d1590a929ae0644c47dc1' then 'aUSD (StableJack)'
when contract_address = '0xd586e7f844cea2f87f50152665bcbc2c279d8d70' then 'DAI'
when contract_address = '0xab05b04743e0aeaf9d2ca81e5d3b8385e4bf961e' then 'USDS'
when contract_address = '0x111111111111ed1d73f860f57b2798b683f2d325' then 'YUSD'
when contract_address = '0xf14f4ce569cb3679e99d5059909e23b07bd2f387' then 'NXUSD'
when contract_address = '0x130966628846bfd36ff31a822705796e8cb8c18d' then 'MIM'
when contract_address = '0xc891eb4cbdeff6e073e859e987815ed1505c2acd' then 'EURC'
when contract_address = '0x1c20e891bab6b1727d14da358fae2984ed9b59eb' then 'TUSD'
when contract_address = '0xd24c2ad096400b6fbcd2ad8b24e7acbc21a1da64' then 'FRAX'
when contract_address = '0x53fc82f14f009009b440a706e31c9021e1196a2f' then 'BUIDL'
when contract_address = '0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b' then 'VEUR'
when contract_address = '0xdbdd50997361522495ecfe57ebb6850da0e4c699' then 'BNUSD'
when contract_address = '0x323665443cef804a3b5206103304bd4872ea4253' then 'USDV'
when contract_address = '0x0f577433bf59560ef2a79c124e9ff99fca258948' then 'MONEY'
else null end as symbol,
contract_address as token_contract,
sum (case when contract_address in ('0xc891eb4cbdeff6e073e859e987815ed1505c2acd','0x7678e162f38ec9ef2bfd1d0aaf9fd93355e5fa0b') then amount*europrice else amount end) as Minted_Volume1
from avalanche.core.ez_token_transfers t1 left outer join europricet t2 on t1.block_timestamp::Date = t2.day
Last run: about 1 month ago
...
1391
69KB
14s