Skip to content

Commit 719a41e

Browse files
committed
chore: add risk oracle to deploy script
1 parent a944f7b commit 719a41e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/deploy/DeployInjector.s.sol

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {EdgeRiskSteward, IRiskSteward, IPoolDataProvider, IEngine} from '../../s
1111
import {AaveStewardInjector, IAaveStewardInjector} from '../../src/contracts/AaveStewardInjector.sol';
1212

1313
library DeployStewardContracts {
14-
address constant EDGE_RISK_ORACLE = address(32); // TODO
14+
address constant EDGE_RISK_ORACLE = 0x7ABB46C690C52E919687D19ebF89C81A6136C1F2;
1515

1616
function _deployRiskStewards(
1717
address poolDataProvider,
@@ -70,6 +70,8 @@ library DeployStewardContracts {
7070

7171
// make deploy-ledger contract=scripts/deploy/DeployInjector.s.sol:DeployEthereumLido chain=mainnet
7272
contract DeployEthereumLido is EthereumScript {
73+
address constant GUARDIAN = 0xff37939808EcF199A2D599ef91D699Fb13dab7F7;
74+
7375
function run() external {
7476
vm.startBroadcast();
7577
bytes32 salt = 'StewardInjector';
@@ -82,7 +84,7 @@ contract DeployEthereumLido is EthereumScript {
8284
GovernanceV3Ethereum.EXECUTOR_LVL_1
8385
);
8486

85-
DeployStewardContracts._deployStewardsInjector(salt, riskSteward, msg.sender, AaveV3EthereumLidoAssets.WETH_UNDERLYING);
87+
DeployStewardContracts._deployStewardsInjector(salt, riskSteward, GUARDIAN, AaveV3EthereumLidoAssets.WETH_UNDERLYING);
8688
vm.stopBroadcast();
8789
}
8890
}

0 commit comments

Comments
 (0)