Skip to content

Commit e6b0078

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

File tree

5 files changed

+68
-4
lines changed

5 files changed

+68
-4
lines changed

safe.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3276,6 +3276,11 @@ address,name,chainId
32763276
0xDA5D1a9b7F515457638c01db13a18Bd3514fC4A6,AaveV3Plasma ASSETS syrupUSDT V_TOKEN,9745
32773277
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS syrupUSDT INTEREST_RATE_STRATEGY,9745
32783278
0x0A3F8218a98337Ef37dCAE4F8a8cfaB0711C64cF,AaveV3Plasma ASSETS syrupUSDT ORACLE,9745
3279+
0x6100E367285b01F48D07953803A2d8dCA5D19873,AaveV3Plasma ASSETS WXPL UNDERLYING,9745
3280+
0x5aA4bc74811D672DA5308019dA4779f673e60B47,AaveV3Plasma ASSETS WXPL A_TOKEN,9745
3281+
0x7ec35d7008682c33dBC6b214E01D919e8d441e48,AaveV3Plasma ASSETS WXPL V_TOKEN,9745
3282+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS WXPL INTEREST_RATE_STRATEGY,9745
3283+
0xF932477C37715aE6657Ab884414Bd9876FE3f750,AaveV3Plasma ASSETS WXPL ORACLE,9745
32793284
0x5E2d083417D12d4B0824E14Ecd48D26831F4Da7D,AaveV3Plasma COLLECTOR,9745
32803285
0x8601E80972A2a89b78185fbacd560d2202202B26,AaveV3Plasma CONFIG_ENGINE,9745
32813286
0xF6Dac650dA5616Bc3206e969D7868e7c25805171,AaveV3Plasma DEFAULT_A_TOKEN_IMPL,9745

src/AaveV3Plasma.sol

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -316,6 +316,24 @@ library AaveV3PlasmaAssets {
316316
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
317317
address internal constant syrupUSDT_INTEREST_RATE_STRATEGY =
318318
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
319+
320+
// https://plasmascan.to/address/0x6100E367285b01F48D07953803A2d8dCA5D19873
321+
address internal constant WXPL_UNDERLYING = 0x6100E367285b01F48D07953803A2d8dCA5D19873;
322+
323+
uint8 internal constant WXPL_DECIMALS = 18;
324+
325+
// https://plasmascan.to/address/0x5aA4bc74811D672DA5308019dA4779f673e60B47
326+
address internal constant WXPL_A_TOKEN = 0x5aA4bc74811D672DA5308019dA4779f673e60B47;
327+
328+
// https://plasmascan.to/address/0x7ec35d7008682c33dBC6b214E01D919e8d441e48
329+
address internal constant WXPL_V_TOKEN = 0x7ec35d7008682c33dBC6b214E01D919e8d441e48;
330+
331+
// https://plasmascan.to/address/0xF932477C37715aE6657Ab884414Bd9876FE3f750
332+
address internal constant WXPL_ORACLE = 0xF932477C37715aE6657Ab884414Bd9876FE3f750;
333+
334+
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
335+
address internal constant WXPL_INTEREST_RATE_STRATEGY =
336+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
319337
}
320338
library AaveV3PlasmaEModes {
321339
uint8 internal constant NONE = 0;
@@ -341,6 +359,8 @@ library AaveV3PlasmaEModes {
341359
uint8 internal constant wstETH__WETH = 10;
342360

343361
uint8 internal constant syrupUSDT__USDT0 = 11;
362+
363+
uint8 internal constant WXPL__USDT0 = 12;
344364
}
345365
library AaveV3PlasmaExternalLibraries {
346366
// https://plasmascan.to/address/0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D

src/ts/AaveV3Ethereum.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ export const E_MODES = {
10011001
],
10021002
ltv: 9000,
10031003
liquidationThreshold: 9200,
1004-
liquidationBonus: 10380,
1004+
liquidationBonus: 10350,
10051005
},
10061006
'25': {
10071007
label: 'PT_sUSDE_25SEP2025,PT_sUSDE_27NOV2025 / USDe',
@@ -1014,7 +1014,7 @@ export const E_MODES = {
10141014
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
10151015
ltv: 9200,
10161016
liquidationThreshold: 9400,
1017-
liquidationBonus: 10180,
1017+
liquidationBonus: 10150,
10181018
},
10191019
'26': {
10201020
label: 'weETH / WETH,wstETH',

src/ts/AaveV3Plasma.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,15 @@ export const ASSETS = {
190190
INTEREST_RATE_STRATEGY: '0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC',
191191
ORACLE: '0x0A3F8218a98337Ef37dCAE4F8a8cfaB0711C64cF',
192192
},
193+
WXPL: {
194+
decimals: 18,
195+
id: 11,
196+
UNDERLYING: '0x6100E367285b01F48D07953803A2d8dCA5D19873',
197+
A_TOKEN: '0x5aA4bc74811D672DA5308019dA4779f673e60B47',
198+
V_TOKEN: '0x7ec35d7008682c33dBC6b214E01D919e8d441e48',
199+
INTEREST_RATE_STRATEGY: '0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC',
200+
ORACLE: '0xF932477C37715aE6657Ab884414Bd9876FE3f750',
201+
},
193202
} as const;
194203
export const E_MODES = {
195204
'1': {
@@ -314,6 +323,16 @@ export const E_MODES = {
314323
liquidationThreshold: 9200,
315324
liquidationBonus: 10400,
316325
},
326+
'12': {
327+
label: 'WXPL / USDT0',
328+
collateralBitmap: '2048',
329+
collateralAssets: ['0x6100E367285b01F48D07953803A2d8dCA5D19873'],
330+
borrowableBitmap: '1',
331+
borrowableAssets: ['0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb'],
332+
ltv: 5000,
333+
liquidationThreshold: 5500,
334+
liquidationBonus: 11000,
335+
},
317336
} as const;
318337
export const EXTERNAL_LIBRARIES = {
319338
FLASHLOAN_LOGIC: '0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D',

tokenlist.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9290,6 +9290,26 @@
92909290
"underlying": "0xC4374775489CB9C56003BF2C9b12495fC64F0771"
92919291
}
92929292
},
9293+
{
9294+
"chainId": 9745,
9295+
"address": "0x6100E367285b01F48D07953803A2d8dCA5D19873",
9296+
"name": "Wrapped XPL",
9297+
"decimals": 18,
9298+
"symbol": "WXPL",
9299+
"tags": ["underlying"]
9300+
},
9301+
{
9302+
"chainId": 9745,
9303+
"address": "0x5aA4bc74811D672DA5308019dA4779f673e60B47",
9304+
"name": "Aave Plasma WXPL",
9305+
"decimals": 18,
9306+
"symbol": "aPlaWXPL",
9307+
"tags": ["aTokenV3", "aaveV3"],
9308+
"extensions": {
9309+
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
9310+
"underlying": "0x6100E367285b01F48D07953803A2d8dCA5D19873"
9311+
}
9312+
},
92939313
{
92949314
"chainId": 1,
92959315
"address": "0x6bf183243FdD1e306ad2C4450BC7dcf6f0bf8Aa6",
@@ -9343,6 +9363,6 @@
93439363
}
93449364
}
93459365
],
9346-
"version": { "major": 3, "minor": 0, "patch": 144 },
9347-
"timestamp": "2025-11-10T00:16:26.303Z"
9366+
"version": { "major": 3, "minor": 0, "patch": 145 },
9367+
"timestamp": "2025-11-13T00:15:41.620Z"
93489368
}

0 commit comments

Comments
 (0)