Skip to content

Commit

Permalink
Output more contract details in 097 deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
naddison36 committed May 23, 2024
1 parent 4c25093 commit c4456b9
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions contracts/deploy/mainnet/097_native_ssv_staking.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,12 +148,23 @@ module.exports = deploymentWithGovernanceProposal(
const dOETHHarvesterImpl = await ethers.getContract("OETHHarvester");

console.log(
"Native Staking SSV Strategy address: ",
"Native Staking SSV Strategy proxy: ",
cStrategyProxy.address
);
console.log("Fee accumulator address: ", cFeeAccumulator.address);
console.log(
"New OETHHarvester implementation address: ",
"Native Staking SSV Strategy implementation: ",
dStrategyImpl.address
);
console.log(
"Fee accumulator proxy: ",
cFeeAccumulatorProxy.address
);
console.log(
"Fee accumulator implementation: ",
cFeeAccumulator.address
);
console.log(
"New OETHHarvester implementation: ",
dOETHHarvesterImpl.address
);

Expand Down

0 comments on commit c4456b9

Please sign in to comment.