Skip to content

Commit 9e987ef

Browse files
fix(cache): automated cache update - updated addresses (#1066)
Co-authored-by: Cache-bot <[email protected]>
1 parent 2e6bfd2 commit 9e987ef

File tree

4 files changed

+91
-2
lines changed

4 files changed

+91
-2
lines changed

safe.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,11 @@ address,name,chainId
702702
0x690Df181701C11C53EA33bBF303C25834b66bD14,AaveV3Ethereum ASSETS PT_sUSDE_27NOV2025 V_TOKEN,1
703703
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS PT_sUSDE_27NOV2025 INTEREST_RATE_STRATEGY,1
704704
0x8B8B73598a2c4b1de6d3b075618434CfC4826632,AaveV3Ethereum ASSETS PT_sUSDE_27NOV2025 ORACLE,1
705+
0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7,AaveV3Ethereum ASSETS PT_USDe_27NOV2025 UNDERLYING,1
706+
0x38C503a438185cDE29b5cF4dC1442FD6F074F1cc,AaveV3Ethereum ASSETS PT_USDe_27NOV2025 A_TOKEN,1
707+
0x2CE7e7b238985A8aD3863De03F200B245B0c1216,AaveV3Ethereum ASSETS PT_USDe_27NOV2025 V_TOKEN,1
708+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS PT_USDe_27NOV2025 INTEREST_RATE_STRATEGY,1
709+
0x6A196A7B498C4EFBFEfB55364106EC80CceF0C3F,AaveV3Ethereum ASSETS PT_USDe_27NOV2025 ORACLE,1
705710
0xf00E2de0E78DFf055A92AD4719a179CE275b6Ef7,AaveV3Ethereum CLINIC_STEWARD,1
706711
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c,AaveV3Ethereum COLLECTOR,1
707712
0xb92f84c29060088e92cC99624830963a54643aC2,AaveV3Ethereum CONFIG_ENGINE,1

src/AaveV3Ethereum.sol

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1211,6 +1211,25 @@ library AaveV3EthereumAssets {
12111211
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
12121212
address internal constant PT_sUSDE_27NOV2025_INTEREST_RATE_STRATEGY =
12131213
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
1214+
1215+
// https://etherscan.io/address/0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7
1216+
address internal constant PT_USDe_27NOV2025_UNDERLYING =
1217+
0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7;
1218+
1219+
uint8 internal constant PT_USDe_27NOV2025_DECIMALS = 18;
1220+
1221+
// https://etherscan.io/address/0x38C503a438185cDE29b5cF4dC1442FD6F074F1cc
1222+
address internal constant PT_USDe_27NOV2025_A_TOKEN = 0x38C503a438185cDE29b5cF4dC1442FD6F074F1cc;
1223+
1224+
// https://etherscan.io/address/0x2CE7e7b238985A8aD3863De03F200B245B0c1216
1225+
address internal constant PT_USDe_27NOV2025_V_TOKEN = 0x2CE7e7b238985A8aD3863De03F200B245B0c1216;
1226+
1227+
// https://etherscan.io/address/0x6A196A7B498C4EFBFEfB55364106EC80CceF0C3F
1228+
address internal constant PT_USDe_27NOV2025_ORACLE = 0x6A196A7B498C4EFBFEfB55364106EC80CceF0C3F;
1229+
1230+
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
1231+
address internal constant PT_USDe_27NOV2025_INTEREST_RATE_STRATEGY =
1232+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
12141233
}
12151234
library AaveV3EthereumEModes {
12161235
uint8 internal constant NONE = 0;
@@ -1266,6 +1285,10 @@ library AaveV3EthereumEModes {
12661285
uint8 internal constant PT_SUSDE_USDE_NOV_2025 = 25;
12671286

12681287
uint8 internal constant WEETH_WSTETH_ETH_CORRELATED = 26;
1288+
1289+
uint8 internal constant PT_USDE_STABLECOINS_NOV_2025 = 27;
1290+
1291+
uint8 internal constant PT_USDE_USDE_NOV_2025 = 28;
12691292
}
12701293
library AaveV3EthereumExternalLibraries {
12711294
// https://etherscan.io/address/0x5e84CEe2afb7B37d2AB14722C39A7c1C26F5B0BB

src/ts/AaveV3Ethereum.ts

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -641,6 +641,15 @@ export const ASSETS = {
641641
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
642642
ORACLE: '0x8B8B73598a2c4b1de6d3b075618434CfC4826632',
643643
},
644+
PT_USDe_27NOV2025: {
645+
decimals: 18,
646+
id: 54,
647+
UNDERLYING: '0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7',
648+
A_TOKEN: '0x38C503a438185cDE29b5cF4dC1442FD6F074F1cc',
649+
V_TOKEN: '0x2CE7e7b238985A8aD3863De03F200B245B0c1216',
650+
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
651+
ORACLE: '0x6A196A7B498C4EFBFEfB55364106EC80CceF0C3F',
652+
},
644653
} as const;
645654
export const E_MODES = {
646655
'1': {
@@ -1010,6 +1019,38 @@ export const E_MODES = {
10101019
liquidationThreshold: 9500,
10111020
liquidationBonus: 10100,
10121021
},
1022+
'27': {
1023+
label: 'PT-USDe Stablecoins Nov 2025',
1024+
collateralBitmap: '18577348462903296',
1025+
collateralAssets: [
1026+
'0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a',
1027+
'0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7',
1028+
],
1029+
borrowableBitmap: '4433479991560',
1030+
borrowableAssets: [
1031+
'0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
1032+
'0xdAC17F958D2ee523a2206206994597C13D831ec7',
1033+
'0x4c9EDD5852cd905f086C759E8383e09bff1E68B3',
1034+
'0xdC035D45d973E3EC169d2276DDab16f1e407384F',
1035+
'0xC139190F447e929f090Edeb554D95AbB8b18aC1C',
1036+
],
1037+
ltv: 8780,
1038+
liquidationThreshold: 8980,
1039+
liquidationBonus: 10420,
1040+
},
1041+
'28': {
1042+
label: 'PT-USDe USDe Nov 2025',
1043+
collateralBitmap: '18577348462903296',
1044+
collateralAssets: [
1045+
'0xBC6736d346a5eBC0dEbc997397912CD9b8FAe10a',
1046+
'0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7',
1047+
],
1048+
borrowableBitmap: '1073741824',
1049+
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
1050+
ltv: 8860,
1051+
liquidationThreshold: 9060,
1052+
liquidationBonus: 10320,
1053+
},
10131054
} as const;
10141055
export const EXTERNAL_LIBRARIES = {
10151056
FLASHLOAN_LOGIC: '0x5e84CEe2afb7B37d2AB14722C39A7c1C26F5B0BB',

tokenlist.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3350,6 +3350,26 @@
33503350
"underlying": "0xe6A934089BBEe34F832060CE98848359883749B3"
33513351
}
33523352
},
3353+
{
3354+
"chainId": 1,
3355+
"address": "0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7",
3356+
"name": "PT Ethena USDe 27NOV2025",
3357+
"decimals": 18,
3358+
"symbol": "PT-USDe-27NOV2025",
3359+
"tags": ["underlying"]
3360+
},
3361+
{
3362+
"chainId": 1,
3363+
"address": "0x38C503a438185cDE29b5cF4dC1442FD6F074F1cc",
3364+
"name": "Aave Ethereum PT_USDe_27NOV2025",
3365+
"decimals": 18,
3366+
"symbol": "aEthPT_USDe_27NOV2025",
3367+
"tags": ["aTokenV3", "aaveV3"],
3368+
"extensions": {
3369+
"pool": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
3370+
"underlying": "0x62C6E813b9589C3631Ba0Cdb013acdB8544038B7"
3371+
}
3372+
},
33533373
{
33543374
"chainId": 137,
33553375
"address": "0x82E64f49Ed5EC1bC6e43DAD4FC8Af9bb3A2312EE",
@@ -8607,6 +8627,6 @@
86078627
}
86088628
}
86098629
],
8610-
"version": { "major": 3, "minor": 0, "patch": 132 },
8611-
"timestamp": "2025-09-09T00:15:19.029Z"
8630+
"version": { "major": 3, "minor": 0, "patch": 133 },
8631+
"timestamp": "2025-09-10T00:14:41.248Z"
86128632
}

0 commit comments

Comments
 (0)