Skip to content

Commit 53edd54

Browse files
fix(cache): automated cache update - updated addresses (#709)
Co-authored-by: Cache-bot <noreply@github.com>
1 parent 0beb88b commit 53edd54

File tree

4 files changed

+69
-2
lines changed

4 files changed

+69
-2
lines changed

safe.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -602,6 +602,11 @@ address,name,chainId
602602
0x490E0E6255bF65b43E2e02F7acB783c5e04572Ff,AaveV3Ethereum ASSETS USDS V_TOKEN,1
603603
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS USDS INTEREST_RATE_STRATEGY,1
604604
0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6,AaveV3Ethereum ASSETS USDS ORACLE,1
605+
0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7,AaveV3Ethereum ASSETS rsETH UNDERLYING,1
606+
0x2D62109243b87C4bA3EE7bA1D91B0dD0A074d7b1,AaveV3Ethereum ASSETS rsETH A_TOKEN,1
607+
0x6De3E52A1B7294A34e271a508082b1Ff4a37E30e,AaveV3Ethereum ASSETS rsETH V_TOKEN,1
608+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS rsETH INTEREST_RATE_STRATEGY,1
609+
0x47F52B2e43D0386cF161e001835b03Ad49889e3b,AaveV3Ethereum ASSETS rsETH ORACLE,1
605610
0x82dcCF206Ae2Ab46E2099e663F70DeE77caE7778,AaveV3Ethereum CAPS_PLUS_RISK_STEWARD,1
606611
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c,AaveV3Ethereum COLLECTOR,1
607612
0xA8e351C7Ab1b75A2134A418701919c462932DF79,AaveV3Ethereum CONFIG_ENGINE,1

src/AaveV3Ethereum.sol

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -823,13 +823,33 @@ library AaveV3EthereumAssets {
823823
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
824824
address internal constant USDS_INTEREST_RATE_STRATEGY =
825825
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
826+
827+
// https://etherscan.io/address/0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7
828+
address internal constant rsETH_UNDERLYING = 0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7;
829+
830+
uint8 internal constant rsETH_DECIMALS = 18;
831+
832+
// https://etherscan.io/address/0x2D62109243b87C4bA3EE7bA1D91B0dD0A074d7b1
833+
address internal constant rsETH_A_TOKEN = 0x2D62109243b87C4bA3EE7bA1D91B0dD0A074d7b1;
834+
835+
// https://etherscan.io/address/0x6De3E52A1B7294A34e271a508082b1Ff4a37E30e
836+
address internal constant rsETH_V_TOKEN = 0x6De3E52A1B7294A34e271a508082b1Ff4a37E30e;
837+
838+
// https://etherscan.io/address/0x47F52B2e43D0386cF161e001835b03Ad49889e3b
839+
address internal constant rsETH_ORACLE = 0x47F52B2e43D0386cF161e001835b03Ad49889e3b;
840+
841+
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
842+
address internal constant rsETH_INTEREST_RATE_STRATEGY =
843+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
826844
}
827845
library AaveV3EthereumEModes {
828846
uint8 internal constant NONE = 0;
829847

830848
uint8 internal constant ETH_CORRELATED = 1;
831849

832850
uint8 internal constant SUSDE_STABLECOINS = 2;
851+
852+
uint8 internal constant RSETH_LST_MAIN = 3;
833853
}
834854
library AaveV3EthereumExternalLibraries {
835855
// https://etherscan.io/address/0xb32381feFFF45eE9F47fD2f2cF83C832637d6EF0

src/ts/AaveV3Ethereum.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -445,6 +445,15 @@ export const ASSETS = {
445445
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
446446
ORACLE: '0x4F01b76391A05d32B20FA2d05dD5963eE8db20E6',
447447
},
448+
rsETH: {
449+
decimals: 18,
450+
id: 36,
451+
UNDERLYING: '0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7',
452+
A_TOKEN: '0x2D62109243b87C4bA3EE7bA1D91B0dD0A074d7b1',
453+
V_TOKEN: '0x6De3E52A1B7294A34e271a508082b1Ff4a37E30e',
454+
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
455+
ORACLE: '0x47F52B2e43D0386cF161e001835b03Ad49889e3b',
456+
},
448457
} as const;
449458
export const E_MODES = {
450459
'1': {
@@ -486,5 +495,18 @@ export const E_MODES = {
486495
liquidationThreshold: 9200,
487496
liquidationBonus: 10300,
488497
},
498+
'3': {
499+
label: 'rsETH LST main',
500+
collateralBitmap: '68719476736',
501+
collateralAssets: ['0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7'],
502+
borrowableBitmap: '2147483650',
503+
borrowableAssets: [
504+
'0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0',
505+
'0xA35b1B31Ce002FBF2058D22F30f95D405200A15b',
506+
],
507+
ltv: 9250,
508+
liquidationThreshold: 9450,
509+
liquidationBonus: 10100,
510+
},
489511
} as const;
490512
export const EXTERNAL_LIBRARIES = {} as const;

tokenlist.json

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2820,6 +2820,26 @@
28202820
"underlying": "0xdC035D45d973E3EC169d2276DDab16f1e407384F"
28212821
}
28222822
},
2823+
{
2824+
"chainId": 1,
2825+
"address": "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7",
2826+
"name": "rsETH",
2827+
"decimals": 18,
2828+
"symbol": "rsETH",
2829+
"tags": ["underlying"]
2830+
},
2831+
{
2832+
"chainId": 1,
2833+
"address": "0x2D62109243b87C4bA3EE7bA1D91B0dD0A074d7b1",
2834+
"name": "Aave Ethereum rsETH",
2835+
"decimals": 18,
2836+
"symbol": "aEthrsETH",
2837+
"tags": ["aTokenV3", "aaveV3"],
2838+
"extensions": {
2839+
"pool": "0x87870Bca3F3fD6335C3F4ce8392D69350B4fA4E2",
2840+
"underlying": "0xA1290d69c65A6Fe4DF752f95823fae25cB99e5A7"
2841+
}
2842+
},
28232843
{
28242844
"chainId": 137,
28252845
"address": "0x82E64f49Ed5EC1bC6e43DAD4FC8Af9bb3A2312EE",
@@ -6704,6 +6724,6 @@
67046724
}
67056725
}
67066726
],
6707-
"version": { "major": 3, "minor": 0, "patch": 59 },
6708-
"timestamp": "2024-11-18T13:03:11.207Z"
6727+
"version": { "major": 3, "minor": 0, "patch": 60 },
6728+
"timestamp": "2024-11-21T12:03:58.811Z"
67096729
}

0 commit comments

Comments
 (0)