Skip to content

Commit 0631618

Browse files
fix(cache): automated cache update - updated addresses (#1121)
Co-authored-by: Cache-bot <[email protected]>
1 parent a112c01 commit 0631618

File tree

5 files changed

+164
-4
lines changed

5 files changed

+164
-4
lines changed

safe.csv

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3182,6 +3182,16 @@ address,name,chainId
31823182
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS WETH INTEREST_RATE_STRATEGY,9745
31833183
0x43A7dd2125266c5c4c26EB86cd61241132426Fe7,AaveV3Plasma ASSETS WETH ORACLE,9745
31843184
0xa047fdFb3420A27a5f926735b475fE5a1E968786,AaveV3Plasma ASSETS WETH STATA_TOKEN,9745
3185+
0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a,AaveV3Plasma ASSETS PT_USDe_15JAN2026 UNDERLYING,9745
3186+
0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A,AaveV3Plasma ASSETS PT_USDe_15JAN2026 A_TOKEN,9745
3187+
0xD73253B18124837465b0c1fCB1A947d0542a991B,AaveV3Plasma ASSETS PT_USDe_15JAN2026 V_TOKEN,9745
3188+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS PT_USDe_15JAN2026 INTEREST_RATE_STRATEGY,9745
3189+
0x30cb6ff8649Cc02cEa91971D4730EebeD5A8D2F1,AaveV3Plasma ASSETS PT_USDe_15JAN2026 ORACLE,9745
3190+
0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8,AaveV3Plasma ASSETS PT_sUSDE_15JAN2026 UNDERLYING,9745
3191+
0x0b9A412c94f07223752031f75a20DDe542D63d5C,AaveV3Plasma ASSETS PT_sUSDE_15JAN2026 A_TOKEN,9745
3192+
0xb2A5AD339d9687B5606b21B37F72f350e5BbC622,AaveV3Plasma ASSETS PT_sUSDE_15JAN2026 V_TOKEN,9745
3193+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS PT_sUSDE_15JAN2026 INTEREST_RATE_STRATEGY,9745
3194+
0x3eca1c7836eA09DB3dc85be7B5526Ce80E2609a1,AaveV3Plasma ASSETS PT_sUSDE_15JAN2026 ORACLE,9745
31853195
0x5E2d083417D12d4B0824E14Ecd48D26831F4Da7D,AaveV3Plasma COLLECTOR,9745
31863196
0x8601E80972A2a89b78185fbacd560d2202202B26,AaveV3Plasma CONFIG_ENGINE,9745
31873197
0xF6Dac650dA5616Bc3206e969D7868e7c25805171,AaveV3Plasma DEFAULT_A_TOKEN_IMPL,9745

src/AaveV3Plasma.sol

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,44 @@ library AaveV3PlasmaAssets {
224224

225225
// https://plasmascan.to/address/0xa047fdFb3420A27a5f926735b475fE5a1E968786
226226
address internal constant WETH_STATA_TOKEN = 0xa047fdFb3420A27a5f926735b475fE5a1E968786;
227+
228+
// https://plasmascan.to/address/0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a
229+
address internal constant PT_USDe_15JAN2026_UNDERLYING =
230+
0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a;
231+
232+
uint8 internal constant PT_USDe_15JAN2026_DECIMALS = 18;
233+
234+
// https://plasmascan.to/address/0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A
235+
address internal constant PT_USDe_15JAN2026_A_TOKEN = 0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A;
236+
237+
// https://plasmascan.to/address/0xD73253B18124837465b0c1fCB1A947d0542a991B
238+
address internal constant PT_USDe_15JAN2026_V_TOKEN = 0xD73253B18124837465b0c1fCB1A947d0542a991B;
239+
240+
// https://plasmascan.to/address/0x30cb6ff8649Cc02cEa91971D4730EebeD5A8D2F1
241+
address internal constant PT_USDe_15JAN2026_ORACLE = 0x30cb6ff8649Cc02cEa91971D4730EebeD5A8D2F1;
242+
243+
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
244+
address internal constant PT_USDe_15JAN2026_INTEREST_RATE_STRATEGY =
245+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
246+
247+
// https://plasmascan.to/address/0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8
248+
address internal constant PT_sUSDE_15JAN2026_UNDERLYING =
249+
0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8;
250+
251+
uint8 internal constant PT_sUSDE_15JAN2026_DECIMALS = 18;
252+
253+
// https://plasmascan.to/address/0x0b9A412c94f07223752031f75a20DDe542D63d5C
254+
address internal constant PT_sUSDE_15JAN2026_A_TOKEN = 0x0b9A412c94f07223752031f75a20DDe542D63d5C;
255+
256+
// https://plasmascan.to/address/0xb2A5AD339d9687B5606b21B37F72f350e5BbC622
257+
address internal constant PT_sUSDE_15JAN2026_V_TOKEN = 0xb2A5AD339d9687B5606b21B37F72f350e5BbC622;
258+
259+
// https://plasmascan.to/address/0x3eca1c7836eA09DB3dc85be7B5526Ce80E2609a1
260+
address internal constant PT_sUSDE_15JAN2026_ORACLE = 0x3eca1c7836eA09DB3dc85be7B5526Ce80E2609a1;
261+
262+
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
263+
address internal constant PT_sUSDE_15JAN2026_INTEREST_RATE_STRATEGY =
264+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
227265
}
228266
library AaveV3PlasmaEModes {
229267
uint8 internal constant NONE = 0;
@@ -235,6 +273,14 @@ library AaveV3PlasmaEModes {
235273
uint8 internal constant WEETH_WETH = 3;
236274

237275
uint8 internal constant WEETH_STABLECOINS = 4;
276+
277+
uint8 internal constant PT_USDE_STABLECOINS_JAN_2026 = 5;
278+
279+
uint8 internal constant PT_USDE_USDE_JAN_2026 = 6;
280+
281+
uint8 internal constant PT_SUSDE_STABLECOINS_JAN_2026 = 7;
282+
283+
uint8 internal constant PT_SUSDE_USDE_JAN_2026 = 8;
238284
}
239285
library AaveV3PlasmaExternalLibraries {
240286
// https://plasmascan.to/address/0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D

src/ts/AaveV3Ethereum.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1046,7 +1046,7 @@ export const E_MODES = {
10461046
],
10471047
ltv: 9100,
10481048
liquidationThreshold: 9300,
1049-
liquidationBonus: 10330,
1049+
liquidationBonus: 10300,
10501050
},
10511051
'28': {
10521052
label: 'PT-USDe USDe Nov 2025',
@@ -1059,7 +1059,7 @@ export const E_MODES = {
10591059
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
10601060
ltv: 9260,
10611061
liquidationThreshold: 9460,
1062-
liquidationBonus: 10230,
1062+
liquidationBonus: 10200,
10631063
},
10641064
} as const;
10651065
export const EXTERNAL_LIBRARIES = {

src/ts/AaveV3Plasma.ts

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,24 @@ export const ASSETS = {
145145
ORACLE: '0x43A7dd2125266c5c4c26EB86cd61241132426Fe7',
146146
STATA_TOKEN: '0xa047fdFb3420A27a5f926735b475fE5a1E968786',
147147
},
148+
PT_USDe_15JAN2026: {
149+
decimals: 18,
150+
id: 6,
151+
UNDERLYING: '0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a',
152+
A_TOKEN: '0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A',
153+
V_TOKEN: '0xD73253B18124837465b0c1fCB1A947d0542a991B',
154+
INTEREST_RATE_STRATEGY: '0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC',
155+
ORACLE: '0x30cb6ff8649Cc02cEa91971D4730EebeD5A8D2F1',
156+
},
157+
PT_sUSDE_15JAN2026: {
158+
decimals: 18,
159+
id: 7,
160+
UNDERLYING: '0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8',
161+
A_TOKEN: '0x0b9A412c94f07223752031f75a20DDe542D63d5C',
162+
V_TOKEN: '0xb2A5AD339d9687B5606b21B37F72f350e5BbC622',
163+
INTEREST_RATE_STRATEGY: '0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC',
164+
ORACLE: '0x3eca1c7836eA09DB3dc85be7B5526Ce80E2609a1',
165+
},
148166
} as const;
149167
export const E_MODES = {
150168
'1': {
@@ -190,6 +208,52 @@ export const E_MODES = {
190208
liquidationThreshold: 7800,
191209
liquidationBonus: 10750,
192210
},
211+
'5': {
212+
label: 'PT-USDe Stablecoins Jan 2026',
213+
collateralBitmap: '64',
214+
collateralAssets: ['0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a'],
215+
borrowableBitmap: '3',
216+
borrowableAssets: [
217+
'0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb',
218+
'0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34',
219+
],
220+
ltv: 8540,
221+
liquidationThreshold: 8740,
222+
liquidationBonus: 10490,
223+
},
224+
'6': {
225+
label: 'PT-USDe USDe Jan 2026',
226+
collateralBitmap: '64',
227+
collateralAssets: ['0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a'],
228+
borrowableBitmap: '2',
229+
borrowableAssets: ['0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34'],
230+
ltv: 8620,
231+
liquidationThreshold: 8820,
232+
liquidationBonus: 10390,
233+
},
234+
'7': {
235+
label: 'PT-sUSDe Stablecoins Jan 2026',
236+
collateralBitmap: '128',
237+
collateralAssets: ['0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8'],
238+
borrowableBitmap: '3',
239+
borrowableAssets: [
240+
'0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb',
241+
'0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34',
242+
],
243+
ltv: 8390,
244+
liquidationThreshold: 8590,
245+
liquidationBonus: 10600,
246+
},
247+
'8': {
248+
label: 'PT-sUSDe USDe Jan 2026',
249+
collateralBitmap: '128',
250+
collateralAssets: ['0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8'],
251+
borrowableBitmap: '2',
252+
borrowableAssets: ['0x5d3a1Ff2b6BAb83b63cd9AD0787074081a52ef34'],
253+
ltv: 8450,
254+
liquidationThreshold: 8650,
255+
liquidationBonus: 10520,
256+
},
193257
} as const;
194258
export const EXTERNAL_LIBRARIES = {
195259
FLASHLOAN_LOGIC: '0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D',

tokenlist.json

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8936,6 +8936,46 @@
89368936
"underlyingAToken": "0xf1aB7f60128924d69f6d7dE25A20eF70bBd43d07"
89378937
}
89388938
},
8939+
{
8940+
"chainId": 9745,
8941+
"address": "0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a",
8942+
"name": "PT Ethena USDe 15JAN2026",
8943+
"decimals": 18,
8944+
"symbol": "PT-USDe-15JAN2026",
8945+
"tags": ["underlying"]
8946+
},
8947+
{
8948+
"chainId": 9745,
8949+
"address": "0xEa601A9FECF80bFC529F08A51bD8Cb0d72fc862A",
8950+
"name": "Aave Plasma PT_USDe_15JAN2026",
8951+
"decimals": 18,
8952+
"symbol": "aPlaPT_USDe_15JAN2026",
8953+
"tags": ["aTokenV3", "aaveV3"],
8954+
"extensions": {
8955+
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
8956+
"underlying": "0x93B544c330F60A2aa05ceD87aEEffB8D38FD8c9a"
8957+
}
8958+
},
8959+
{
8960+
"chainId": 9745,
8961+
"address": "0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8",
8962+
"name": "PT Ethena sUSDE 15JAN2026",
8963+
"decimals": 18,
8964+
"symbol": "PT-sUSDE-15JAN2026",
8965+
"tags": ["underlying"]
8966+
},
8967+
{
8968+
"chainId": 9745,
8969+
"address": "0x0b9A412c94f07223752031f75a20DDe542D63d5C",
8970+
"name": "Aave Plasma PT_sUSDE_15JAN2026",
8971+
"decimals": 18,
8972+
"symbol": "aPlaPT_sUSDE_15JAN2026",
8973+
"tags": ["aTokenV3", "aaveV3"],
8974+
"extensions": {
8975+
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
8976+
"underlying": "0x02FCC4989B4C9D435b7ceD3fE1Ba4CF77BBb5Dd8"
8977+
}
8978+
},
89398979
{
89408980
"chainId": 1,
89418981
"address": "0x6bf183243FdD1e306ad2C4450BC7dcf6f0bf8Aa6",
@@ -8989,6 +9029,6 @@
89899029
}
89909030
}
89919031
],
8992-
"version": { "major": 3, "minor": 0, "patch": 137 },
8993-
"timestamp": "2025-10-13T06:41:45.632Z"
9032+
"version": { "major": 3, "minor": 0, "patch": 138 },
9033+
"timestamp": "2025-10-20T12:31:59.573Z"
89949034
}

0 commit comments

Comments
 (0)