Skip to content

Commit 7b7045c

Browse files
fix(cache): automated cache update - updated addresses (#982)
Co-authored-by: Cache-bot <[email protected]>
1 parent 003a0fa commit 7b7045c

File tree

5 files changed

+63
-10
lines changed

5 files changed

+63
-10
lines changed

safe.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3484,6 +3484,11 @@ address,name,chainId
34843484
0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da,AaveV3Avalanche ASSETS AUSD INTEREST_RATE_STRATEGY,43114
34853485
0x83f32c0882B12Ef16214c417efF11FD9e764bf34,AaveV3Avalanche ASSETS AUSD ORACLE,43114
34863486
0x45cf39EeB437FA95Bb9b52c0105254a6BD25D01e,AaveV3Avalanche ASSETS AUSD STATA_TOKEN,43114
3487+
0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73,AaveV3Avalanche ASSETS GHO UNDERLYING,43114
3488+
0xf611aEb5013fD2c0511c9CD55c7dc5C1140741A6,AaveV3Avalanche ASSETS GHO A_TOKEN,43114
3489+
0x38d693cE1dF5AaDF7bC62595A37D667aD57922e5,AaveV3Avalanche ASSETS GHO V_TOKEN,43114
3490+
0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da,AaveV3Avalanche ASSETS GHO INTEREST_RATE_STRATEGY,43114
3491+
0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12,AaveV3Avalanche ASSETS GHO ORACLE,43114
34873492
0xD2C92b5A793e196aB11dBefBe3Af6BddeD6c3DD5,AaveV3Avalanche CAPS_PLUS_RISK_STEWARD,43114
34883493
0x6c2B732cB368322E460D718df3CD4F553d5fbAde,AaveV3Avalanche CLINIC_STEWARD,43114
34893494
0x5ba7fd868c40c16f7aDfAe6CF87121E13FC2F7a0,AaveV3Avalanche COLLECTOR,43114

src/AaveV3Avalanche.sol

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,23 @@ library AaveV3AvalancheAssets {
427427

428428
// https://snowtrace.io/address/0x45cf39EeB437FA95Bb9b52c0105254a6BD25D01e
429429
address internal constant AUSD_STATA_TOKEN = 0x45cf39EeB437FA95Bb9b52c0105254a6BD25D01e;
430+
431+
// https://snowtrace.io/address/0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73
432+
address internal constant GHO_UNDERLYING = 0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73;
433+
434+
uint8 internal constant GHO_DECIMALS = 18;
435+
436+
// https://snowtrace.io/address/0xf611aEb5013fD2c0511c9CD55c7dc5C1140741A6
437+
address internal constant GHO_A_TOKEN = 0xf611aEb5013fD2c0511c9CD55c7dc5C1140741A6;
438+
439+
// https://snowtrace.io/address/0x38d693cE1dF5AaDF7bC62595A37D667aD57922e5
440+
address internal constant GHO_V_TOKEN = 0x38d693cE1dF5AaDF7bC62595A37D667aD57922e5;
441+
442+
// https://snowtrace.io/address/0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12
443+
address internal constant GHO_ORACLE = 0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12;
444+
445+
// https://snowtrace.io/address/0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da
446+
address internal constant GHO_INTEREST_RATE_STRATEGY = 0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da;
430447
}
431448
library AaveV3AvalancheEModes {
432449
uint8 internal constant NONE = 0;

src/ts/AaveV3Avalanche.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,15 @@ export const ASSETS = {
252252
ORACLE: '0x83f32c0882B12Ef16214c417efF11FD9e764bf34',
253253
STATA_TOKEN: '0x45cf39EeB437FA95Bb9b52c0105254a6BD25D01e',
254254
},
255+
GHO: {
256+
decimals: 18,
257+
id: 13,
258+
UNDERLYING: '0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73',
259+
A_TOKEN: '0xf611aEb5013fD2c0511c9CD55c7dc5C1140741A6',
260+
V_TOKEN: '0x38d693cE1dF5AaDF7bC62595A37D667aD57922e5',
261+
INTEREST_RATE_STRATEGY: '0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da',
262+
ORACLE: '0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12',
263+
},
255264
} as const;
256265
export const E_MODES = {
257266
'1': {

src/ts/AaveV3Ethereum.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ export const E_MODES = {
674674
],
675675
ltv: 9000,
676676
liquidationThreshold: 9200,
677-
liquidationBonus: 10410,
677+
liquidationBonus: 10380,
678678
},
679679
'9': {
680680
label: 'PT-eUSDe Stablecoins May 2025',
@@ -708,7 +708,7 @@ export const E_MODES = {
708708
],
709709
ltv: 9100,
710710
liquidationThreshold: 9300,
711-
liquidationBonus: 10330,
711+
liquidationBonus: 10300,
712712
},
713713
'11': {
714714
label: 'USDe Stablecoin',
@@ -733,8 +733,8 @@ export const E_MODES = {
733733
],
734734
borrowableBitmap: '1073741824',
735735
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
736-
ltv: 9270,
737-
liquidationThreshold: 9470,
736+
ltv: 9310,
737+
liquidationThreshold: 9510,
738738
liquidationBonus: 10220,
739739
},
740740
'13': {
@@ -750,8 +750,8 @@ export const E_MODES = {
750750
'0xdAC17F958D2ee523a2206206994597C13D831ec7',
751751
'0xdC035D45d973E3EC169d2276DDab16f1e407384F',
752752
],
753-
ltv: 9010,
754-
liquidationThreshold: 9220,
753+
ltv: 9060,
754+
liquidationThreshold: 9270,
755755
liquidationBonus: 10350,
756756
},
757757
'14': {
@@ -763,8 +763,8 @@ export const E_MODES = {
763763
],
764764
borrowableBitmap: '1073741824',
765765
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
766-
ltv: 9110,
767-
liquidationThreshold: 9310,
766+
ltv: 9160,
767+
liquidationThreshold: 9360,
768768
liquidationBonus: 10250,
769769
},
770770
'15': {

tokenlist.json

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4408,6 +4408,28 @@
44084408
"underlyingAToken": "0x724dc807b04555b71ed48a6896b6F41593b8C637"
44094409
}
44104410
},
4411+
{
4412+
"chainId": 43114,
4413+
"address": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73",
4414+
"name": "Gho Token",
4415+
"decimals": 18,
4416+
"symbol": "GHO",
4417+
"tags": ["underlying"],
4418+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/gho.svg"
4419+
},
4420+
{
4421+
"chainId": 43114,
4422+
"address": "0xf611aEb5013fD2c0511c9CD55c7dc5C1140741A6",
4423+
"name": "Aave Avalanche GHO",
4424+
"decimals": 18,
4425+
"symbol": "aAvaGHO",
4426+
"tags": ["aTokenV3", "aaveV3"],
4427+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/agho.svg",
4428+
"extensions": {
4429+
"pool": "0x794a61358D6845594F94dc1DB02A252b5b4814aD",
4430+
"underlying": "0xfc421aD3C883Bf9E7C4f42dE845C4e4405799e73"
4431+
}
4432+
},
44114433
{
44124434
"chainId": 8453,
44134435
"address": "0x4200000000000000000000000000000000000006",
@@ -8308,6 +8330,6 @@
83088330
}
83098331
}
83108332
],
8311-
"version": { "major": 3, "minor": 0, "patch": 119 },
8312-
"timestamp": "2025-06-17T14:24:43.316Z"
8333+
"version": { "major": 3, "minor": 0, "patch": 120 },
8334+
"timestamp": "2025-06-26T00:16:09.627Z"
83138335
}

0 commit comments

Comments
 (0)