Skip to content

Commit 89a1126

Browse files
fix: update injector contract (#1114)
1 parent 1969fa5 commit 89a1126

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

scripts/configs/pools/ethereum.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export const mainnetProtoV3Pool: PoolConfig = {
9292
EDGE_RISK_STEWARD_DISCOUNT_RATE: '0x9F76954f5b55B4908d178f31C07F9537AC8328E7',
9393
EDGE_INJECTOR_PENDLE_EMODE: '0x83ab600cE8a61b43e1757b89C0589928f765c1C4',
9494
EDGE_INJECTOR_DISCOUNT_RATE: '0x15885A83936EB943e98EeFFb91e9A49040d93993',
95-
EDGE_RISK_STEWARD_RATES: '0xAbb3A42a06930aEb694c99C0D3D8F5c1056D74f8',
96-
EDGE_INJECTOR_RATES: '0xd3dc7C39FC2eD85fBC0723ec74a1ed8874410c64',
95+
EDGE_RISK_STEWARD_RATES: '0x80CFd14236409107c220d1D0a3dE845b48fdcDfc',
96+
EDGE_INJECTOR_RATES: '0x74dc6321a338420238cbd77aba5fea8679393a66',
9797
},
9898
};
9999

src/AaveV3Ethereum.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -134,11 +134,11 @@ library AaveV3Ethereum {
134134
address internal constant EDGE_INJECTOR_DISCOUNT_RATE =
135135
0x15885A83936EB943e98EeFFb91e9A49040d93993;
136136

137-
// https://etherscan.io/address/0xAbb3A42a06930aEb694c99C0D3D8F5c1056D74f8
138-
address internal constant EDGE_RISK_STEWARD_RATES = 0xAbb3A42a06930aEb694c99C0D3D8F5c1056D74f8;
137+
// https://etherscan.io/address/0x80CFd14236409107c220d1D0a3dE845b48fdcDfc
138+
address internal constant EDGE_RISK_STEWARD_RATES = 0x80CFd14236409107c220d1D0a3dE845b48fdcDfc;
139139

140-
// https://etherscan.io/address/0xd3dc7C39FC2eD85fBC0723ec74a1ed8874410c64
141-
address internal constant EDGE_INJECTOR_RATES = 0xd3dc7C39FC2eD85fBC0723ec74a1ed8874410c64;
140+
// https://etherscan.io/address/0x74dc6321A338420238CBD77abA5fEa8679393A66
141+
address internal constant EDGE_INJECTOR_RATES = 0x74dc6321A338420238CBD77abA5fEa8679393A66;
142142
}
143143
library AaveV3EthereumAssets {
144144
// https://etherscan.io/address/0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

src/ts/AaveV3Ethereum.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -116,11 +116,11 @@ export const EDGE_INJECTOR_PENDLE_EMODE = '0x83ab600cE8a61b43e1757b89C0589928f76
116116
// https://etherscan.io/address/0x15885A83936EB943e98EeFFb91e9A49040d93993
117117
export const EDGE_INJECTOR_DISCOUNT_RATE = '0x15885A83936EB943e98EeFFb91e9A49040d93993';
118118

119-
// https://etherscan.io/address/0xAbb3A42a06930aEb694c99C0D3D8F5c1056D74f8
120-
export const EDGE_RISK_STEWARD_RATES = '0xAbb3A42a06930aEb694c99C0D3D8F5c1056D74f8';
119+
// https://etherscan.io/address/0x80CFd14236409107c220d1D0a3dE845b48fdcDfc
120+
export const EDGE_RISK_STEWARD_RATES = '0x80CFd14236409107c220d1D0a3dE845b48fdcDfc';
121121

122-
// https://etherscan.io/address/0xd3dc7C39FC2eD85fBC0723ec74a1ed8874410c64
123-
export const EDGE_INJECTOR_RATES = '0xd3dc7C39FC2eD85fBC0723ec74a1ed8874410c64';
122+
// https://etherscan.io/address/0x74dc6321A338420238CBD77abA5fEa8679393A66
123+
export const EDGE_INJECTOR_RATES = '0x74dc6321A338420238CBD77abA5fEa8679393A66';
124124

125125
export const CHAIN_ID = 1;
126126
export const ASSETS = {
@@ -998,7 +998,7 @@ export const E_MODES = {
998998
],
999999
ltv: 9000,
10001000
liquidationThreshold: 9200,
1001-
liquidationBonus: 10440,
1001+
liquidationBonus: 10410,
10021002
},
10031003
'25': {
10041004
label: 'PT-sUSDe USDe Nov 2025',
@@ -1011,7 +1011,7 @@ export const E_MODES = {
10111011
borrowableAssets: ['0x4c9EDD5852cd905f086C759E8383e09bff1E68B3'],
10121012
ltv: 9200,
10131013
liquidationThreshold: 9400,
1014-
liquidationBonus: 10240,
1014+
liquidationBonus: 10210,
10151015
},
10161016
'26': {
10171017
label: 'weETH/wstETH ETH Correlated',

0 commit comments

Comments
 (0)