Skip to content

Commit 6e1abad

Browse files
github-actions[bot]web-flowsakulstra
authored
fix(cache): automated cache update - updated addresses (#1080)
* fix(cache): automated cache update - updated addresses * fix: add verified contracts * fix: use quicknode if possible --------- Co-authored-by: Cache-bot <[email protected]> Co-authored-by: Lukas <[email protected]>
1 parent 4dd71f2 commit 6e1abad

File tree

9 files changed

+99
-8
lines changed

9 files changed

+99
-8
lines changed

.env.example

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
ALCHEMY_API_KEY=
2-
ETHERSCAN_API_KEY=
2+
ETHERSCAN_API_KEY=
3+
QUICKNODE_ENDPOINT_NAME=
4+
QUICKNODE_TOKEN=

safe.csv

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,7 @@ address,name,chainId
647647
0xeA85a065F87FE28Aa8Fbf0D6C7deC472b106252C,AaveV3Ethereum ASSETS USDtb V_TOKEN,1
648648
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS USDtb INTEREST_RATE_STRATEGY,1
649649
0x2FA6A78E3d617c1013a22938411602dc9Da98dBa,AaveV3Ethereum ASSETS USDtb ORACLE,1
650+
0x2FE4dC166ADbc0B39EdB47F4324F00A7374daBF7,AaveV3Ethereum ASSETS USDtb STATA_TOKEN,1
650651
0x917459337CaAC939D41d7493B3999f571D20D667,AaveV3Ethereum ASSETS PT_USDe_31JUL2025 UNDERLYING,1
651652
0x312ffC57778CEfa11989733e6E08143E7E229c1c,AaveV3Ethereum ASSETS PT_USDe_31JUL2025 A_TOKEN,1
652653
0xd90DA2Df915B87fE1621A7F2201FbF4ff2cCA031,AaveV3Ethereum ASSETS PT_USDe_31JUL2025 V_TOKEN,1
@@ -3846,6 +3847,11 @@ address,name,chainId
38463847
0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da,AaveV3Avalanche ASSETS GHO INTEREST_RATE_STRATEGY,43114
38473848
0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12,AaveV3Avalanche ASSETS GHO ORACLE,43114
38483849
0x79459f4C9AfC902488109D058C3E76ed0B037c41,AaveV3Avalanche ASSETS GHO STATA_TOKEN,43114
3850+
0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD,AaveV3Avalanche ASSETS EURC UNDERLYING,43114
3851+
0x8a9FdE6925a839F6B1932d16B36aC026F8d3FbdB,AaveV3Avalanche ASSETS EURC A_TOKEN,43114
3852+
0x5D557B07776D12967914379C71a1310e917C7555,AaveV3Avalanche ASSETS EURC V_TOKEN,43114
3853+
0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da,AaveV3Avalanche ASSETS EURC INTEREST_RATE_STRATEGY,43114
3854+
0x3368310bC4AeE5D96486A73bae8E6b49FcDE62D3,AaveV3Avalanche ASSETS EURC ORACLE,43114
38493855
0x6c2B732cB368322E460D718df3CD4F553d5fbAde,AaveV3Avalanche CLINIC_STEWARD,43114
38503856
0x5ba7fd868c40c16f7aDfAe6CF87121E13FC2F7a0,AaveV3Avalanche COLLECTOR,43114
38513857
0x9BAF5d9Bd6FBa6bEAB5e482285eD05799BbA1ECB,AaveV3Avalanche CONFIG_ENGINE,43114

scripts/clients.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ export function getClient(chainId: number) {
88
return rpcEnvGetClient(chainId, {
99
clientConfig: batchConfig,
1010
httpConfig: commonConfig,
11-
providerConfig: {alchemyKey: process.env.ALCHEMY_API_KEY},
11+
providerConfig: {
12+
alchemyKey: process.env.ALCHEMY_API_KEY,
13+
quicknodeEndpointName: process.env.QUICKNODE_ENDPOINT_NAME,
14+
quicknodeToken: process.env.QUICKNODE_TOKEN,
15+
},
1216
});
1317
}

src/AaveV3Avalanche.sol

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,24 @@ library AaveV3AvalancheAssets {
441441

442442
// https://snowscan.xyz/address/0x79459f4C9AfC902488109D058C3E76ed0B037c41
443443
address internal constant GHO_STATA_TOKEN = 0x79459f4C9AfC902488109D058C3E76ed0B037c41;
444+
445+
// https://snowscan.xyz/address/0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD
446+
address internal constant EURC_UNDERLYING = 0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD;
447+
448+
uint8 internal constant EURC_DECIMALS = 6;
449+
450+
// https://snowscan.xyz/address/0x8a9FdE6925a839F6B1932d16B36aC026F8d3FbdB
451+
address internal constant EURC_A_TOKEN = 0x8a9FdE6925a839F6B1932d16B36aC026F8d3FbdB;
452+
453+
// https://snowscan.xyz/address/0x5D557B07776D12967914379C71a1310e917C7555
454+
address internal constant EURC_V_TOKEN = 0x5D557B07776D12967914379C71a1310e917C7555;
455+
456+
// https://snowscan.xyz/address/0x3368310bC4AeE5D96486A73bae8E6b49FcDE62D3
457+
address internal constant EURC_ORACLE = 0x3368310bC4AeE5D96486A73bae8E6b49FcDE62D3;
458+
459+
// https://snowscan.xyz/address/0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da
460+
address internal constant EURC_INTEREST_RATE_STRATEGY =
461+
0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da;
444462
}
445463
library AaveV3AvalancheEModes {
446464
uint8 internal constant NONE = 0;

src/AaveV3Ethereum.sol

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,6 +1009,9 @@ library AaveV3EthereumAssets {
10091009
address internal constant USDtb_INTEREST_RATE_STRATEGY =
10101010
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
10111011

1012+
// https://etherscan.io/address/0x2FE4dC166ADbc0B39EdB47F4324F00A7374daBF7
1013+
address internal constant USDtb_STATA_TOKEN = 0x2FE4dC166ADbc0B39EdB47F4324F00A7374daBF7;
1014+
10121015
// https://etherscan.io/address/0x917459337CaAC939D41d7493B3999f571D20D667
10131016
address internal constant PT_USDe_31JUL2025_UNDERLYING =
10141017
0x917459337CaAC939D41d7493B3999f571D20D667;

src/ts/AaveV3Avalanche.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,15 @@ export const ASSETS = {
256256
ORACLE: '0x360d8aa8F6b09B7BC57aF34db2Eb84dD87bf4d12',
257257
STATA_TOKEN: '0x79459f4C9AfC902488109D058C3E76ed0B037c41',
258258
},
259+
EURC: {
260+
decimals: 6,
261+
id: 14,
262+
UNDERLYING: '0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD',
263+
A_TOKEN: '0x8a9FdE6925a839F6B1932d16B36aC026F8d3FbdB',
264+
V_TOKEN: '0x5D557B07776D12967914379C71a1310e917C7555',
265+
INTEREST_RATE_STRATEGY: '0xCe1C5509f2f4d755aA64B8D135B15ec6F12a93da',
266+
ORACLE: '0x3368310bC4AeE5D96486A73bae8E6b49FcDE62D3',
267+
},
259268
} as const;
260269
export const E_MODES = {
261270
'1': {

src/ts/AaveV3Ethereum.ts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,7 @@ export const ASSETS = {
541541
V_TOKEN: '0xeA85a065F87FE28Aa8Fbf0D6C7deC472b106252C',
542542
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
543543
ORACLE: '0x2FA6A78E3d617c1013a22938411602dc9Da98dBa',
544+
STATA_TOKEN: '0x2FE4dC166ADbc0B39EdB47F4324F00A7374daBF7',
544545
},
545546
PT_USDe_31JUL2025: {
546547
decimals: 18,
@@ -1034,8 +1035,8 @@ export const E_MODES = {
10341035
'0xdC035D45d973E3EC169d2276DDab16f1e407384F',
10351036
'0xC139190F447e929f090Edeb554D95AbB8b18aC1C',
10361037
],
1037-
ltv: 8860,
1038-
liquidationThreshold: 9060,
1038+
ltv: 8910,
1039+
liquidationThreshold: 9110,
10391040
liquidationBonus: 10390,
10401041
},
10411042
'28': {
@@ -1047,8 +1048,8 @@ export const E_MODES = {
10471048
],
10481049
borrowableBitmap: '1073741824',
10491050
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
1050-
ltv: 8950,
1051-
liquidationThreshold: 9150,
1051+
ltv: 9000,
1052+
liquidationThreshold: 9200,
10521053
liquidationBonus: 10290,
10531054
},
10541055
} as const;

tests/cache/verified.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3719,6 +3719,9 @@
37193719
},
37203720
"0x5513224daaEABCa31af5280727878d52097afA05": {
37213721
"name": "TransparentUpgradeableProxy"
3722+
},
3723+
"0x2FE4dC166ADbc0B39EdB47F4324F00A7374daBF7": {
3724+
"name": "TransparentUpgradeableProxy"
37223725
}
37233726
},
37243727
"10": {
@@ -13531,6 +13534,15 @@
1353113534
},
1353213535
"0x9A9587Da4Fd5DD3C9AD47C12aFeec5073C8cFc2a": {
1353313536
"name": "EACAggregatorProxy"
13537+
},
13538+
"0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD": {
13539+
"name": "FiatTokenProxy"
13540+
},
13541+
"0x8a9FdE6925a839F6B1932d16B36aC026F8d3FbdB": {
13542+
"name": "InitializableImmutableAdminUpgradeabilityProxy"
13543+
},
13544+
"0x5D557B07776D12967914379C71a1310e917C7555": {
13545+
"name": "InitializableImmutableAdminUpgradeabilityProxy"
1353413546
}
1353513547
},
1353613548
"57073": {

tokenlist.json

Lines changed: 38 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3118,6 +3118,20 @@
31183118
"underlying": "0xC139190F447e929f090Edeb554D95AbB8b18aC1C"
31193119
}
31203120
},
3121+
{
3122+
"chainId": 1,
3123+
"address": "0x2FE4dC166ADbc0B39EdB47F4324F00A7374daBF7",
3124+
"name": "Wrapped Aave Ethereum USDtb",
3125+
"decimals": 18,
3126+
"symbol": "waEthUSDtb",
3127+
"tags": ["aaveV3", "stataToken"],
3128+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/statausdtb.svg",
3129+
"extensions": {
3130+
"pool": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
3131+
"underlying": "0xC139190F447e929f090Edeb554D95AbB8b18aC1C",
3132+
"underlyingAToken": "0xEc4ef66D4fCeEba34aBB4dE69dB391Bc5476ccc8"
3133+
}
3134+
},
31213135
{
31223136
"chainId": 1,
31233137
"address": "0x917459337CaAC939D41d7493B3999f571D20D667",
@@ -4608,6 +4622,28 @@
46084622
"underlyingAToken": "0xf611aEb5013fD2c0511c9CD55c7dc5C1140741A6"
46094623
}
46104624
},
4625+
{
4626+
"chainId": 43114,
4627+
"address": "0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD",
4628+
"name": "Euro Coin",
4629+
"decimals": 6,
4630+
"symbol": "EURC",
4631+
"tags": ["underlying"],
4632+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/eurc.svg"
4633+
},
4634+
{
4635+
"chainId": 43114,
4636+
"address": "0x8a9FdE6925a839F6B1932d16B36aC026F8d3FbdB",
4637+
"name": "Aave Avalanche EURC",
4638+
"decimals": 6,
4639+
"symbol": "aAvaEURC",
4640+
"tags": ["aTokenV3", "aaveV3"],
4641+
"logoURI": "https://raw.githubusercontent.com/bgd-labs/web3-icons/main/icons/full/aeurc.svg",
4642+
"extensions": {
4643+
"pool": "0x794a61358D6845594F94dc1DB02A252b5b4814aD",
4644+
"underlying": "0xC891EB4cbdEFf6e073e859e987815Ed1505c2ACD"
4645+
}
4646+
},
46114647
{
46124648
"chainId": 8453,
46134649
"address": "0x4200000000000000000000000000000000000006",
@@ -8627,6 +8663,6 @@
86278663
}
86288664
}
86298665
],
8630-
"version": { "major": 3, "minor": 0, "patch": 133 },
8631-
"timestamp": "2025-09-11T22:23:45.754Z"
8666+
"version": { "major": 3, "minor": 0, "patch": 134 },
8667+
"timestamp": "2025-09-17T19:20:27.632Z"
86328668
}

0 commit comments

Comments
 (0)