Skip to content

Commit 794c502

Browse files
committed
fix(cache): automated cache update - updated addresses
1 parent 3f6d632 commit 794c502

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
@@ -3196,6 +3196,11 @@ address,name,chainId
31963196
0xe5A29d07F3D532Cd16bD53376053C2aa5B320cB9,AaveV3Plasma ASSETS wrsETH V_TOKEN,9745
31973197
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS wrsETH INTEREST_RATE_STRATEGY,9745
31983198
0x3acFddf27b85B5f773B610c6F7e4420aeB1Df8dD,AaveV3Plasma ASSETS wrsETH ORACLE,9745
3199+
0xC4374775489CB9C56003BF2C9b12495fC64F0771,AaveV3Plasma ASSETS syrupUSDT UNDERLYING,9745
3200+
0xD4eE376C40EdC83832aAaFc18fC0272660F5e90b,AaveV3Plasma ASSETS syrupUSDT A_TOKEN,9745
3201+
0xDA5D1a9b7F515457638c01db13a18Bd3514fC4A6,AaveV3Plasma ASSETS syrupUSDT V_TOKEN,9745
3202+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC,AaveV3Plasma ASSETS syrupUSDT INTEREST_RATE_STRATEGY,9745
3203+
0x0A3F8218a98337Ef37dCAE4F8a8cfaB0711C64cF,AaveV3Plasma ASSETS syrupUSDT ORACLE,9745
31993204
0x5E2d083417D12d4B0824E14Ecd48D26831F4Da7D,AaveV3Plasma COLLECTOR,9745
32003205
0x8601E80972A2a89b78185fbacd560d2202202B26,AaveV3Plasma CONFIG_ENGINE,9745
32013206
0xF6Dac650dA5616Bc3206e969D7868e7c25805171,AaveV3Plasma DEFAULT_A_TOKEN_IMPL,9745

src/AaveV3Plasma.sol

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -298,6 +298,24 @@ library AaveV3PlasmaAssets {
298298
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
299299
address internal constant wrsETH_INTEREST_RATE_STRATEGY =
300300
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
301+
302+
// https://plasmascan.to/address/0xC4374775489CB9C56003BF2C9b12495fC64F0771
303+
address internal constant syrupUSDT_UNDERLYING = 0xC4374775489CB9C56003BF2C9b12495fC64F0771;
304+
305+
uint8 internal constant syrupUSDT_DECIMALS = 6;
306+
307+
// https://plasmascan.to/address/0xD4eE376C40EdC83832aAaFc18fC0272660F5e90b
308+
address internal constant syrupUSDT_A_TOKEN = 0xD4eE376C40EdC83832aAaFc18fC0272660F5e90b;
309+
310+
// https://plasmascan.to/address/0xDA5D1a9b7F515457638c01db13a18Bd3514fC4A6
311+
address internal constant syrupUSDT_V_TOKEN = 0xDA5D1a9b7F515457638c01db13a18Bd3514fC4A6;
312+
313+
// https://plasmascan.to/address/0x0A3F8218a98337Ef37dCAE4F8a8cfaB0711C64cF
314+
address internal constant syrupUSDT_ORACLE = 0x0A3F8218a98337Ef37dCAE4F8a8cfaB0711C64cF;
315+
316+
// https://plasmascan.to/address/0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC
317+
address internal constant syrupUSDT_INTEREST_RATE_STRATEGY =
318+
0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC;
301319
}
302320
library AaveV3PlasmaEModes {
303321
uint8 internal constant NONE = 0;
@@ -321,6 +339,8 @@ library AaveV3PlasmaEModes {
321339
uint8 internal constant wrsETH__WETH_wstETH = 9;
322340

323341
uint8 internal constant wstETH__WETH = 10;
342+
343+
uint8 internal constant syrupUSDT__USDT0 = 11;
324344
}
325345
library AaveV3PlasmaExternalLibraries {
326346
// https://plasmascan.to/address/0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D

src/ts/AaveV3Ethereum.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1057,8 +1057,8 @@ export const E_MODES = {
10571057
],
10581058
borrowableBitmap: '1073741824',
10591059
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
1060-
ltv: 9260,
1061-
liquidationThreshold: 9460,
1060+
ltv: 9310,
1061+
liquidationThreshold: 9510,
10621062
liquidationBonus: 10200,
10631063
},
10641064
} as const;

src/ts/AaveV3Plasma.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -181,6 +181,15 @@ export const ASSETS = {
181181
INTEREST_RATE_STRATEGY: '0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC',
182182
ORACLE: '0x3acFddf27b85B5f773B610c6F7e4420aeB1Df8dD',
183183
},
184+
syrupUSDT: {
185+
decimals: 6,
186+
id: 10,
187+
UNDERLYING: '0xC4374775489CB9C56003BF2C9b12495fC64F0771',
188+
A_TOKEN: '0xD4eE376C40EdC83832aAaFc18fC0272660F5e90b',
189+
V_TOKEN: '0xDA5D1a9b7F515457638c01db13a18Bd3514fC4A6',
190+
INTEREST_RATE_STRATEGY: '0x2B16E93bdB1897f517881B3c388bABD0C62C6cdC',
191+
ORACLE: '0x0A3F8218a98337Ef37dCAE4F8a8cfaB0711C64cF',
192+
},
184193
} as const;
185194
export const E_MODES = {
186195
'1': {
@@ -295,6 +304,16 @@ export const E_MODES = {
295304
liquidationThreshold: 9600,
296305
liquidationBonus: 10100,
297306
},
307+
'11': {
308+
label: 'syrupUSDT / USDT0',
309+
collateralBitmap: '1024',
310+
collateralAssets: ['0xC4374775489CB9C56003BF2C9b12495fC64F0771'],
311+
borrowableBitmap: '1',
312+
borrowableAssets: ['0xB8CE59FC3717ada4C02eaDF9682A9e934F625ebb'],
313+
ltv: 9000,
314+
liquidationThreshold: 9200,
315+
liquidationBonus: 10400,
316+
},
298317
} as const;
299318
export const EXTERNAL_LIBRARIES = {
300319
FLASHLOAN_LOGIC: '0x50a4646D4f5Cc0e45051bF4f222D02fA39eC749D',

tokenlist.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9039,6 +9039,26 @@
90399039
"underlying": "0xe561FE05C39075312Aa9Bc6af79DdaE981461359"
90409040
}
90419041
},
9042+
{
9043+
"chainId": 9745,
9044+
"address": "0xC4374775489CB9C56003BF2C9b12495fC64F0771",
9045+
"name": "Syrup USDT",
9046+
"decimals": 6,
9047+
"symbol": "syrupUSDT",
9048+
"tags": ["underlying"]
9049+
},
9050+
{
9051+
"chainId": 9745,
9052+
"address": "0xD4eE376C40EdC83832aAaFc18fC0272660F5e90b",
9053+
"name": "Aave Plasma syrupUSDT",
9054+
"decimals": 6,
9055+
"symbol": "aPlasyrupUSDT",
9056+
"tags": ["aTokenV3", "aaveV3"],
9057+
"extensions": {
9058+
"pool": "0x925a2A7214Ed92428B5b1B090F80b25700095e12",
9059+
"underlying": "0xC4374775489CB9C56003BF2C9b12495fC64F0771"
9060+
}
9061+
},
90429062
{
90439063
"chainId": 1,
90449064
"address": "0x6bf183243FdD1e306ad2C4450BC7dcf6f0bf8Aa6",
@@ -9092,6 +9112,6 @@
90929112
}
90939113
}
90949114
],
9095-
"version": { "major": 3, "minor": 0, "patch": 141 },
9096-
"timestamp": "2025-10-23T00:15:04.745Z"
9115+
"version": { "major": 3, "minor": 0, "patch": 142 },
9116+
"timestamp": "2025-10-24T00:12:57.653Z"
90979117
}

0 commit comments

Comments
 (0)