diff --git a/tasks/deploy/deployEndowmentMultisigFactory.ts b/tasks/deploy/deployEndowmentMultisigFactory.ts index 7e2b1f215..a81a7bf6d 100644 --- a/tasks/deploy/deployEndowmentMultisigFactory.ts +++ b/tasks/deploy/deployEndowmentMultisigFactory.ts @@ -37,6 +37,14 @@ task("deploy:EndowmentMultiSigFactory", "Will deploy EndowmentMultiSigFactory co hre ); + // must deploy new EndowmentMultiSigEmitter as currently there's no way + // to update its EndowmentMultiSigFactory address + await hre.run("deploy:EndowmentMultiSigEmitter", { + apTeamSignerPkey: taskArgs.apTeamSignerPkey, + skipVerify: taskArgs.skipVerify, + yes: true, + }); + await hre.run("manage:registrar:updateConfig", { multisigFactory: deployData.proxy.contract.address, apTeamSignerPkey: taskArgs.apTeamSignerPkey,