Skip to content

Commit 4508d60

Browse files
fix(cache): automated cache update - updated addresses (#1002)
Co-authored-by: Cache-bot <[email protected]>
1 parent aa01754 commit 4508d60

File tree

8 files changed

+152
-70
lines changed

8 files changed

+152
-70
lines changed

safe.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,11 @@ address,name,chainId
672672
0x6c82c66622Eb360FC973D3F492f9D8E9eA538b08,AaveV3Ethereum ASSETS EURC V_TOKEN,1
673673
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS EURC INTEREST_RATE_STRATEGY,1
674674
0xa6aB031A4d189B24628EC9Eb155F0a0f1A0E55a3,AaveV3Ethereum ASSETS EURC ORACLE,1
675+
0x9F56094C450763769BA0EA9Fe2876070c0fD5F77,AaveV3Ethereum ASSETS PT_sUSDE_25SEP2025 UNDERLYING,1
676+
0x5f4a0873a3A02f7C0CB0e13a1d4362a1AD90e751,AaveV3Ethereum ASSETS PT_sUSDE_25SEP2025 A_TOKEN,1
677+
0xc9AD8Dd111e6384128146467aAf92B81EC422848,AaveV3Ethereum ASSETS PT_sUSDE_25SEP2025 V_TOKEN,1
678+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB,AaveV3Ethereum ASSETS PT_sUSDE_25SEP2025 INTEREST_RATE_STRATEGY,1
679+
0x7585693910f39df4959912B27D09EAEef06C1a93,AaveV3Ethereum ASSETS PT_sUSDE_25SEP2025 ORACLE,1
675680
0xf00E2de0E78DFf055A92AD4719a179CE275b6Ef7,AaveV3Ethereum CLINIC_STEWARD,1
676681
0x464C71f6c2F760DdA6093dCB91C24c39e5d6e18c,AaveV3Ethereum COLLECTOR,1
677682
0x7f616d322e1d47A83Ba13d97A30Bd1ADB06253A4,AaveV3Ethereum CONFIG_ENGINE,1

src/AaveV3BaseSepolia.sol

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ library AaveV3BaseSepolia {
2525
IACLManager internal constant ACL_MANAGER =
2626
IACLManager(0x9f09F541Adf314341d8d45E5B18961147b9050E9);
2727

28-
// https://sepolia.basescan.org/address/0xa432Be23d16907918d626DA6523f89a7c9A299A0
28+
// https://sepolia.basescan.org/address/0xBc9f5b7E248451CdD7cA54e717a2BFe1F32b566b
2929
IPoolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
30-
IPoolDataProvider(0xa432Be23d16907918d626DA6523f89a7c9A299A0);
30+
IPoolDataProvider(0xBc9f5b7E248451CdD7cA54e717a2BFe1F32b566b);
3131

32-
// https://sepolia.basescan.org/address/0x18A9a9c3B93bdB18eE4cEFe50e55C203D1A31b89
33-
address internal constant POOL_IMPL = 0x18A9a9c3B93bdB18eE4cEFe50e55C203D1A31b89;
32+
// https://sepolia.basescan.org/address/0xD1113dD8c1718D051EaC536FC1E30c2d0728c505
33+
address internal constant POOL_IMPL = 0xD1113dD8c1718D051EaC536FC1E30c2d0728c505;
3434

35-
// https://sepolia.basescan.org/address/0x7315c5ac05cf06aa50693C73929844b66F039DC1
36-
address internal constant POOL_CONFIGURATOR_IMPL = 0x7315c5ac05cf06aa50693C73929844b66F039DC1;
35+
// https://sepolia.basescan.org/address/0xa2AA55a47EE5f691f4d1955fE028923740169d80
36+
address internal constant POOL_CONFIGURATOR_IMPL = 0xa2AA55a47EE5f691f4d1955fE028923740169d80;
3737

3838
// https://sepolia.basescan.org/address/0x71B448405c803A3982aBa448133133D2DEAFBE5F
3939
address internal constant DEFAULT_INCENTIVES_CONTROLLER =
@@ -45,12 +45,12 @@ library AaveV3BaseSepolia {
4545
// https://sepolia.basescan.org/address/0x6414DE3F58d54Fb90636e8393F065fDFe34Da420
4646
ICollector internal constant COLLECTOR = ICollector(0x6414DE3F58d54Fb90636e8393F065fDFe34Da420);
4747

48-
// https://sepolia.basescan.org/address/0xfa3BE9b886fb9E4909040a7AE01eeD47fd96A075
49-
address internal constant DEFAULT_A_TOKEN_IMPL = 0xfa3BE9b886fb9E4909040a7AE01eeD47fd96A075;
48+
// https://sepolia.basescan.org/address/0x9F80442fda34415DB1634eeFEE0415829Bd814B6
49+
address internal constant DEFAULT_A_TOKEN_IMPL = 0x9F80442fda34415DB1634eeFEE0415829Bd814B6;
5050

51-
// https://sepolia.basescan.org/address/0x2B218FFE3C1272Da2F95cb0d09Ff346a861E04b7
51+
// https://sepolia.basescan.org/address/0xFe406eC8EF99aDD00cfaa716e5CDeF313009D117
5252
address internal constant DEFAULT_VARIABLE_DEBT_TOKEN_IMPL =
53-
0x2B218FFE3C1272Da2F95cb0d09Ff346a861E04b7;
53+
0xFe406eC8EF99aDD00cfaa716e5CDeF313009D117;
5454

5555
// https://sepolia.basescan.org/address/0x4Afb5ADe7Bd7a670B61f303ab0C740eE8350918f
5656
address internal constant STATA_FACTORY = 0x4Afb5ADe7Bd7a670B61f303ab0C740eE8350918f;
@@ -210,21 +210,21 @@ library AaveV3BaseSepoliaEModes {
210210
uint8 internal constant ETH_CORRELATED = 1;
211211
}
212212
library AaveV3BaseSepoliaExternalLibraries {
213-
// https://sepolia.basescan.org/address/0x994cf1D67Cdc3d0439865B73B18A380CC2E90684
214-
address internal constant FLASHLOAN_LOGIC = 0x994cf1D67Cdc3d0439865B73B18A380CC2E90684;
213+
// https://sepolia.basescan.org/address/0x1a746330dF84b35236A02067B67e37Cd42DF5846
214+
address internal constant FLASHLOAN_LOGIC = 0x1a746330dF84b35236A02067B67e37Cd42DF5846;
215215

216-
// https://sepolia.basescan.org/address/0x7079bAa685eb5c46a0f50610E9f05D7C96216cD6
217-
address internal constant BORROW_LOGIC = 0x7079bAa685eb5c46a0f50610E9f05D7C96216cD6;
216+
// https://sepolia.basescan.org/address/0x17870d152c64C113c7F517fc8955fe9a16D2aa0C
217+
address internal constant BORROW_LOGIC = 0x17870d152c64C113c7F517fc8955fe9a16D2aa0C;
218218

219-
// https://sepolia.basescan.org/address/0x88F864670De467aA73CD45325F9652C578C8AB85
220-
address internal constant E_MODE_LOGIC = 0x88F864670De467aA73CD45325F9652C578C8AB85;
219+
// https://sepolia.basescan.org/address/0xa4eec8f03cA7D127f8351087286BbCe895Cb2f06
220+
address internal constant E_MODE_LOGIC = 0xa4eec8f03cA7D127f8351087286BbCe895Cb2f06;
221221

222-
// https://sepolia.basescan.org/address/0x8F998d941ECEef32FBA945a2A42318dB37632293
223-
address internal constant LIQUIDATION_LOGIC = 0x8F998d941ECEef32FBA945a2A42318dB37632293;
222+
// https://sepolia.basescan.org/address/0xFB2e565d25Ee062bF4AA490D1cA72ec71F0DAE8E
223+
address internal constant LIQUIDATION_LOGIC = 0xFB2e565d25Ee062bF4AA490D1cA72ec71F0DAE8E;
224224

225-
// https://sepolia.basescan.org/address/0xA58FB47bE9074828215A173564C0CD10f6F249bf
226-
address internal constant POOL_LOGIC = 0xA58FB47bE9074828215A173564C0CD10f6F249bf;
225+
// https://sepolia.basescan.org/address/0xB6Ce5CCD00641962824e1Cb1CC1b9957515Bb607
226+
address internal constant POOL_LOGIC = 0xB6Ce5CCD00641962824e1Cb1CC1b9957515Bb607;
227227

228-
// https://sepolia.basescan.org/address/0xB19dD2d8F5be5f22DfC3916a98AdcEd3e4b4Aa60
229-
address internal constant SUPPLY_LOGIC = 0xB19dD2d8F5be5f22DfC3916a98AdcEd3e4b4Aa60;
228+
// https://sepolia.basescan.org/address/0x6f17a189fBd61cbB51676E7967283140d845fB52
229+
address internal constant SUPPLY_LOGIC = 0x6f17a189fBd61cbB51676E7967283140d845fB52;
230230
}

src/AaveV3BaseSepoliaLido.sol

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ library AaveV3BaseSepoliaLido {
2525
IACLManager internal constant ACL_MANAGER =
2626
IACLManager(0x7C5Bd69e2842363139C2CA726baAd128B0B19976);
2727

28-
// https://sepolia.basescan.org/address/0xa8746Cea97Da240EC45A5b5890b1071990288e34
28+
// https://sepolia.basescan.org/address/0xCA4387fde255D7a0Ea27Abad1F8481e5069d3223
2929
IPoolDataProvider internal constant AAVE_PROTOCOL_DATA_PROVIDER =
30-
IPoolDataProvider(0xa8746Cea97Da240EC45A5b5890b1071990288e34);
30+
IPoolDataProvider(0xCA4387fde255D7a0Ea27Abad1F8481e5069d3223);
3131

32-
// https://sepolia.basescan.org/address/0x532fF7D5c6Df153De1329Af43a36FFF3D12e7316
33-
address internal constant POOL_IMPL = 0x532fF7D5c6Df153De1329Af43a36FFF3D12e7316;
32+
// https://sepolia.basescan.org/address/0x10B3fa937295f8E85efb76C72739613Ddc09E3ad
33+
address internal constant POOL_IMPL = 0x10B3fa937295f8E85efb76C72739613Ddc09E3ad;
3434

35-
// https://sepolia.basescan.org/address/0xf2746E1f8538479a299083E12230550C40F899d7
36-
address internal constant POOL_CONFIGURATOR_IMPL = 0xf2746E1f8538479a299083E12230550C40F899d7;
35+
// https://sepolia.basescan.org/address/0xa2AA55a47EE5f691f4d1955fE028923740169d80
36+
address internal constant POOL_CONFIGURATOR_IMPL = 0xa2AA55a47EE5f691f4d1955fE028923740169d80;
3737

3838
// https://sepolia.basescan.org/address/0x543f2b0C2085E74b9A1c3A2D0f35825D9D02237D
3939
address internal constant DEFAULT_INCENTIVES_CONTROLLER =
@@ -45,12 +45,12 @@ library AaveV3BaseSepoliaLido {
4545
// https://sepolia.basescan.org/address/0xA49b77212c4a6C689B78CfA448bb2cd254E87c07
4646
ICollector internal constant COLLECTOR = ICollector(0xA49b77212c4a6C689B78CfA448bb2cd254E87c07);
4747

48-
// https://sepolia.basescan.org/address/0x0Ff3278B57a550767ccec8452f16BD31E7C72238
49-
address internal constant DEFAULT_A_TOKEN_IMPL = 0x0Ff3278B57a550767ccec8452f16BD31E7C72238;
48+
// https://sepolia.basescan.org/address/0x638ADa167847a38977fC91511ab2e0CB2b495134
49+
address internal constant DEFAULT_A_TOKEN_IMPL = 0x638ADa167847a38977fC91511ab2e0CB2b495134;
5050

51-
// https://sepolia.basescan.org/address/0xf45B94a4B54318c1A4Fe1287B38370F6FC638B61
51+
// https://sepolia.basescan.org/address/0xDC54107527183e845826f186dA4ff282D23c0950
5252
address internal constant DEFAULT_VARIABLE_DEBT_TOKEN_IMPL =
53-
0xf45B94a4B54318c1A4Fe1287B38370F6FC638B61;
53+
0xDC54107527183e845826f186dA4ff282D23c0950;
5454

5555
// https://sepolia.basescan.org/address/0x7e66C9c25E91200b8713d5E926b0e12496636dF5
5656
address internal constant CONFIG_ENGINE = 0x7e66C9c25E91200b8713d5E926b0e12496636dF5;
@@ -170,21 +170,21 @@ library AaveV3BaseSepoliaLidoEModes {
170170
uint8 internal constant ETH_CORRELATED = 1;
171171
}
172172
library AaveV3BaseSepoliaLidoExternalLibraries {
173-
// https://sepolia.basescan.org/address/0xb32381feFFF45eE9F47fD2f2cF83C832637d6EF0
174-
address internal constant FLASHLOAN_LOGIC = 0xb32381feFFF45eE9F47fD2f2cF83C832637d6EF0;
173+
// https://sepolia.basescan.org/address/0x1a746330dF84b35236A02067B67e37Cd42DF5846
174+
address internal constant FLASHLOAN_LOGIC = 0x1a746330dF84b35236A02067B67e37Cd42DF5846;
175175

176-
// https://sepolia.basescan.org/address/0x4c52FE2162200bf26c314d7bbd8611699139d553
177-
address internal constant BORROW_LOGIC = 0x4c52FE2162200bf26c314d7bbd8611699139d553;
176+
// https://sepolia.basescan.org/address/0x17870d152c64C113c7F517fc8955fe9a16D2aa0C
177+
address internal constant BORROW_LOGIC = 0x17870d152c64C113c7F517fc8955fe9a16D2aa0C;
178178

179-
// https://sepolia.basescan.org/address/0x88F864670De467aA73CD45325F9652C578C8AB85
180-
address internal constant E_MODE_LOGIC = 0x88F864670De467aA73CD45325F9652C578C8AB85;
179+
// https://sepolia.basescan.org/address/0xa4eec8f03cA7D127f8351087286BbCe895Cb2f06
180+
address internal constant E_MODE_LOGIC = 0xa4eec8f03cA7D127f8351087286BbCe895Cb2f06;
181181

182-
// https://sepolia.basescan.org/address/0x80d16970B31243Fe67DaB028115f3E4c3E3510Ad
183-
address internal constant LIQUIDATION_LOGIC = 0x80d16970B31243Fe67DaB028115f3E4c3E3510Ad;
182+
// https://sepolia.basescan.org/address/0xFB2e565d25Ee062bF4AA490D1cA72ec71F0DAE8E
183+
address internal constant LIQUIDATION_LOGIC = 0xFB2e565d25Ee062bF4AA490D1cA72ec71F0DAE8E;
184184

185-
// https://sepolia.basescan.org/address/0xA58FB47bE9074828215A173564C0CD10f6F249bf
186-
address internal constant POOL_LOGIC = 0xA58FB47bE9074828215A173564C0CD10f6F249bf;
185+
// https://sepolia.basescan.org/address/0xB6Ce5CCD00641962824e1Cb1CC1b9957515Bb607
186+
address internal constant POOL_LOGIC = 0xB6Ce5CCD00641962824e1Cb1CC1b9957515Bb607;
187187

188-
// https://sepolia.basescan.org/address/0x2b22E425C1322fbA0DbF17bb1dA25d71811EE7ba
189-
address internal constant SUPPLY_LOGIC = 0x2b22E425C1322fbA0DbF17bb1dA25d71811EE7ba;
188+
// https://sepolia.basescan.org/address/0x6f17a189fBd61cbB51676E7967283140d845fB52
189+
address internal constant SUPPLY_LOGIC = 0x6f17a189fBd61cbB51676E7967283140d845fB52;
190190
}

src/AaveV3Ethereum.sol

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,25 @@ library AaveV3EthereumAssets {
11001100
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
11011101
address internal constant EURC_INTEREST_RATE_STRATEGY =
11021102
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
1103+
1104+
// https://etherscan.io/address/0x9F56094C450763769BA0EA9Fe2876070c0fD5F77
1105+
address internal constant PT_sUSDE_25SEP2025_UNDERLYING =
1106+
0x9F56094C450763769BA0EA9Fe2876070c0fD5F77;
1107+
1108+
uint8 internal constant PT_sUSDE_25SEP2025_DECIMALS = 18;
1109+
1110+
// https://etherscan.io/address/0x5f4a0873a3A02f7C0CB0e13a1d4362a1AD90e751
1111+
address internal constant PT_sUSDE_25SEP2025_A_TOKEN = 0x5f4a0873a3A02f7C0CB0e13a1d4362a1AD90e751;
1112+
1113+
// https://etherscan.io/address/0xc9AD8Dd111e6384128146467aAf92B81EC422848
1114+
address internal constant PT_sUSDE_25SEP2025_V_TOKEN = 0xc9AD8Dd111e6384128146467aAf92B81EC422848;
1115+
1116+
// https://etherscan.io/address/0x7585693910f39df4959912B27D09EAEef06C1a93
1117+
address internal constant PT_sUSDE_25SEP2025_ORACLE = 0x7585693910f39df4959912B27D09EAEef06C1a93;
1118+
1119+
// https://etherscan.io/address/0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB
1120+
address internal constant PT_sUSDE_25SEP2025_INTEREST_RATE_STRATEGY =
1121+
0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB;
11031122
}
11041123
library AaveV3EthereumEModes {
11051124
uint8 internal constant NONE = 0;
@@ -1135,6 +1154,10 @@ library AaveV3EthereumEModes {
11351154
uint8 internal constant EUSDE_STABLECOIN = 15;
11361155

11371156
uint8 internal constant FBTC_WBTC = 16;
1157+
1158+
uint8 internal constant PT_SUSDE_STABLECOINS_SEPTEMBER_2025 = 17;
1159+
1160+
uint8 internal constant PT_SUSDE_USDE_SEPTEMBER_2025 = 18;
11381161
}
11391162
library AaveV3EthereumExternalLibraries {
11401163
// https://etherscan.io/address/0x4fDB5d360f946CFD25b14F346f748204c0C6a2F4

src/ts/AaveV3BaseSepolia.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ export const ACL_ADMIN = '0x956DE559DFc27678FD69d4f49f485196b50BDD0F';
1717
// IACLManager https://sepolia.basescan.org/address/0x9f09F541Adf314341d8d45E5B18961147b9050E9
1818
export const ACL_MANAGER = '0x9f09F541Adf314341d8d45E5B18961147b9050E9';
1919

20-
// IPoolDataProvider https://sepolia.basescan.org/address/0xa432Be23d16907918d626DA6523f89a7c9A299A0
21-
export const AAVE_PROTOCOL_DATA_PROVIDER = '0xa432Be23d16907918d626DA6523f89a7c9A299A0';
20+
// IPoolDataProvider https://sepolia.basescan.org/address/0xBc9f5b7E248451CdD7cA54e717a2BFe1F32b566b
21+
export const AAVE_PROTOCOL_DATA_PROVIDER = '0xBc9f5b7E248451CdD7cA54e717a2BFe1F32b566b';
2222

23-
// https://sepolia.basescan.org/address/0x18A9a9c3B93bdB18eE4cEFe50e55C203D1A31b89
24-
export const POOL_IMPL = '0x18A9a9c3B93bdB18eE4cEFe50e55C203D1A31b89';
23+
// https://sepolia.basescan.org/address/0xD1113dD8c1718D051EaC536FC1E30c2d0728c505
24+
export const POOL_IMPL = '0xD1113dD8c1718D051EaC536FC1E30c2d0728c505';
2525

26-
// https://sepolia.basescan.org/address/0x7315c5ac05cf06aa50693C73929844b66F039DC1
27-
export const POOL_CONFIGURATOR_IMPL = '0x7315c5ac05cf06aa50693C73929844b66F039DC1';
26+
// https://sepolia.basescan.org/address/0xa2AA55a47EE5f691f4d1955fE028923740169d80
27+
export const POOL_CONFIGURATOR_IMPL = '0xa2AA55a47EE5f691f4d1955fE028923740169d80';
2828

2929
// https://sepolia.basescan.org/address/0x71B448405c803A3982aBa448133133D2DEAFBE5F
3030
export const DEFAULT_INCENTIVES_CONTROLLER = '0x71B448405c803A3982aBa448133133D2DEAFBE5F';
@@ -35,11 +35,11 @@ export const EMISSION_MANAGER = '0x49ECA4d8e7EaE6a1e7c02516851fF9038b277e96';
3535
// ICollector https://sepolia.basescan.org/address/0x6414DE3F58d54Fb90636e8393F065fDFe34Da420
3636
export const COLLECTOR = '0x6414DE3F58d54Fb90636e8393F065fDFe34Da420';
3737

38-
// https://sepolia.basescan.org/address/0xfa3BE9b886fb9E4909040a7AE01eeD47fd96A075
39-
export const DEFAULT_A_TOKEN_IMPL = '0xfa3BE9b886fb9E4909040a7AE01eeD47fd96A075';
38+
// https://sepolia.basescan.org/address/0x9F80442fda34415DB1634eeFEE0415829Bd814B6
39+
export const DEFAULT_A_TOKEN_IMPL = '0x9F80442fda34415DB1634eeFEE0415829Bd814B6';
4040

41-
// https://sepolia.basescan.org/address/0x2B218FFE3C1272Da2F95cb0d09Ff346a861E04b7
42-
export const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL = '0x2B218FFE3C1272Da2F95cb0d09Ff346a861E04b7';
41+
// https://sepolia.basescan.org/address/0xFe406eC8EF99aDD00cfaa716e5CDeF313009D117
42+
export const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL = '0xFe406eC8EF99aDD00cfaa716e5CDeF313009D117';
4343

4444
// https://sepolia.basescan.org/address/0x4Afb5ADe7Bd7a670B61f303ab0C740eE8350918f
4545
export const STATA_FACTORY = '0x4Afb5ADe7Bd7a670B61f303ab0C740eE8350918f';

src/ts/AaveV3BaseSepoliaLido.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ export const ACL_ADMIN = '0x6ec33534BE07d45cc4E02Fbd127F8ed2aE919a6b';
1717
// IACLManager https://sepolia.basescan.org/address/0x7C5Bd69e2842363139C2CA726baAd128B0B19976
1818
export const ACL_MANAGER = '0x7C5Bd69e2842363139C2CA726baAd128B0B19976';
1919

20-
// IPoolDataProvider https://sepolia.basescan.org/address/0xa8746Cea97Da240EC45A5b5890b1071990288e34
21-
export const AAVE_PROTOCOL_DATA_PROVIDER = '0xa8746Cea97Da240EC45A5b5890b1071990288e34';
20+
// IPoolDataProvider https://sepolia.basescan.org/address/0xCA4387fde255D7a0Ea27Abad1F8481e5069d3223
21+
export const AAVE_PROTOCOL_DATA_PROVIDER = '0xCA4387fde255D7a0Ea27Abad1F8481e5069d3223';
2222

23-
// https://sepolia.basescan.org/address/0x532fF7D5c6Df153De1329Af43a36FFF3D12e7316
24-
export const POOL_IMPL = '0x532fF7D5c6Df153De1329Af43a36FFF3D12e7316';
23+
// https://sepolia.basescan.org/address/0x10B3fa937295f8E85efb76C72739613Ddc09E3ad
24+
export const POOL_IMPL = '0x10B3fa937295f8E85efb76C72739613Ddc09E3ad';
2525

26-
// https://sepolia.basescan.org/address/0xf2746E1f8538479a299083E12230550C40F899d7
27-
export const POOL_CONFIGURATOR_IMPL = '0xf2746E1f8538479a299083E12230550C40F899d7';
26+
// https://sepolia.basescan.org/address/0xa2AA55a47EE5f691f4d1955fE028923740169d80
27+
export const POOL_CONFIGURATOR_IMPL = '0xa2AA55a47EE5f691f4d1955fE028923740169d80';
2828

2929
// https://sepolia.basescan.org/address/0x543f2b0C2085E74b9A1c3A2D0f35825D9D02237D
3030
export const DEFAULT_INCENTIVES_CONTROLLER = '0x543f2b0C2085E74b9A1c3A2D0f35825D9D02237D';
@@ -35,11 +35,11 @@ export const EMISSION_MANAGER = '0x635b4a9ec6c6B6b764347edc343CFf091FbAE0Ad';
3535
// ICollector https://sepolia.basescan.org/address/0xA49b77212c4a6C689B78CfA448bb2cd254E87c07
3636
export const COLLECTOR = '0xA49b77212c4a6C689B78CfA448bb2cd254E87c07';
3737

38-
// https://sepolia.basescan.org/address/0x0Ff3278B57a550767ccec8452f16BD31E7C72238
39-
export const DEFAULT_A_TOKEN_IMPL = '0x0Ff3278B57a550767ccec8452f16BD31E7C72238';
38+
// https://sepolia.basescan.org/address/0x638ADa167847a38977fC91511ab2e0CB2b495134
39+
export const DEFAULT_A_TOKEN_IMPL = '0x638ADa167847a38977fC91511ab2e0CB2b495134';
4040

41-
// https://sepolia.basescan.org/address/0xf45B94a4B54318c1A4Fe1287B38370F6FC638B61
42-
export const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL = '0xf45B94a4B54318c1A4Fe1287B38370F6FC638B61';
41+
// https://sepolia.basescan.org/address/0xDC54107527183e845826f186dA4ff282D23c0950
42+
export const DEFAULT_VARIABLE_DEBT_TOKEN_IMPL = '0xDC54107527183e845826f186dA4ff282D23c0950';
4343

4444
// https://sepolia.basescan.org/address/0x7e66C9c25E91200b8713d5E926b0e12496636dF5
4545
export const CONFIG_ENGINE = '0x7e66C9c25E91200b8713d5E926b0e12496636dF5';

src/ts/AaveV3Ethereum.ts

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -587,6 +587,15 @@ export const ASSETS = {
587587
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
588588
ORACLE: '0xa6aB031A4d189B24628EC9Eb155F0a0f1A0E55a3',
589589
},
590+
PT_sUSDE_25SEP2025: {
591+
decimals: 18,
592+
id: 48,
593+
UNDERLYING: '0x9F56094C450763769BA0EA9Fe2876070c0fD5F77',
594+
A_TOKEN: '0x5f4a0873a3A02f7C0CB0e13a1d4362a1AD90e751',
595+
V_TOKEN: '0xc9AD8Dd111e6384128146467aAf92B81EC422848',
596+
INTEREST_RATE_STRATEGY: '0x9ec6F08190DeA04A54f8Afc53Db96134e5E3FdFB',
597+
ORACLE: '0x7585693910f39df4959912B27D09EAEef06C1a93',
598+
},
590599
} as const;
591600
export const E_MODES = {
592601
'1': {
@@ -723,7 +732,7 @@ export const E_MODES = {
723732
],
724733
ltv: 9100,
725734
liquidationThreshold: 9300,
726-
liquidationBonus: 10300,
735+
liquidationBonus: 10270,
727736
},
728737
'11': {
729738
label: 'USDe Stablecoin',
@@ -750,7 +759,7 @@ export const E_MODES = {
750759
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
751760
ltv: 9400,
752761
liquidationThreshold: 9600,
753-
liquidationBonus: 10220,
762+
liquidationBonus: 10180,
754763
},
755764
'13': {
756765
label: 'PT-eUSDe Stablecoins August 2025',
@@ -778,8 +787,8 @@ export const E_MODES = {
778787
],
779788
borrowableBitmap: '1073741824',
780789
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
781-
ltv: 9270,
782-
liquidationThreshold: 9470,
790+
ltv: 9340,
791+
liquidationThreshold: 9540,
783792
liquidationBonus: 10220,
784793
},
785794
'15': {
@@ -806,5 +815,30 @@ export const E_MODES = {
806815
liquidationThreshold: 8600,
807816
liquidationBonus: 10300,
808817
},
818+
'17': {
819+
label: 'PT-sUSDe Stablecoins September 2025',
820+
collateralBitmap: '281474976710656',
821+
collateralAssets: ['0x9F56094C450763769BA0EA9Fe2876070c0fD5F77'],
822+
borrowableBitmap: '35433480456',
823+
borrowableAssets: [
824+
'0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48',
825+
'0xdAC17F958D2ee523a2206206994597C13D831ec7',
826+
'0x4c9EDD5852cd905f086C759E8383e09bff1E68B3',
827+
'0xdC035D45d973E3EC169d2276DDab16f1e407384F',
828+
],
829+
ltv: 8770,
830+
liquidationThreshold: 8970,
831+
liquidationBonus: 10500,
832+
},
833+
'18': {
834+
label: 'PT-sUSDe USDe September 2025',
835+
collateralBitmap: '281474976710656',
836+
collateralAssets: ['0x9F56094C450763769BA0EA9Fe2876070c0fD5F77'],
837+
borrowableBitmap: '1073741824',
838+
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
839+
ltv: 8910,
840+
liquidationThreshold: 9110,
841+
liquidationBonus: 10300,
842+
},
809843
} as const;
810844
export const EXTERNAL_LIBRARIES = {} as const;

0 commit comments

Comments
 (0)