Skip to content

Commit

Permalink
feat: add CAPS_PLUS_RISK_STEWARD address in Lido Ethereum V3 config (#…
Browse files Browse the repository at this point in the history
…495)

Co-authored-by: kartojal <david@catapulta.sh>
  • Loading branch information
kartojal and kartojal committed Jul 19, 2024
1 parent d3b852d commit f6ac658
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/configs/pools/ethereum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,8 @@ export const lidoEthereumMainnetProtoV3Pool: PoolConfig = {
WALLET_BALANCE_PROVIDER: '0xC7be5307ba715ce89b152f3Df0658295b3dbA8E2',
WETH_GATEWAY: '0x702B6770A81f75964cA5D479F369eFB31dfa7C32',
CONFIG_ENGINE: '0xC80f057d40Fc7f0A01ad4a634f35520Df8079707',
CAPS_PLUS_RISK_STEWARD: '0x3843b29118fFC18d5d12EE079d0324E1bF115e69',
// STATIC_A_TOKEN_FACTORY: '',
// CAPS_PLUS_RISK_STEWARD: '',
// FREEZING_STEWARD: '',
// RATES_FACTORY: '',
},
Expand Down
3 changes: 3 additions & 0 deletions src/AaveV3EthereumLido.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,9 @@ library AaveV3EthereumLido {

// https://etherscan.io/address/0xC80f057d40Fc7f0A01ad4a634f35520Df8079707
address internal constant CONFIG_ENGINE = 0xC80f057d40Fc7f0A01ad4a634f35520Df8079707;

// https://etherscan.io/address/0x3843b29118fFC18d5d12EE079d0324E1bF115e69
address internal constant CAPS_PLUS_RISK_STEWARD = 0x3843b29118fFC18d5d12EE079d0324E1bF115e69;
}

library AaveV3EthereumLidoAssets {}
Expand Down
3 changes: 3 additions & 0 deletions src/ts/AaveV3EthereumLido.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,9 @@ export const WETH_GATEWAY = '0x702B6770A81f75964cA5D479F369eFB31dfa7C32';
// https://etherscan.io/address/0xC80f057d40Fc7f0A01ad4a634f35520Df8079707
export const CONFIG_ENGINE = '0xC80f057d40Fc7f0A01ad4a634f35520Df8079707';

// https://etherscan.io/address/0x3843b29118fFC18d5d12EE079d0324E1bF115e69
export const CAPS_PLUS_RISK_STEWARD = '0x3843b29118fFC18d5d12EE079d0324E1bF115e69';

export const CHAIN_ID = 1;
export const ASSETS = {} as const;
export const E_MODES = {} as const;

0 comments on commit f6ac658

Please sign in to comment.