@@ -15,7 +15,7 @@ const deployUpgradeAll: DeployFunction = async (hre: HardhatRuntimeEnvironment)
15
15
const chainId = Number ( await getChainId ( ) ) ;
16
16
console . log ( "upgrading on %s with deployer %s" , HomeChains [ chainId ] , deployer ) ;
17
17
18
- const { disputeKitClassic, disputeTemplateRegistry, evidence, core, policyRegistry, sortition } =
18
+ const { disputeKitClassic, disputeKitShutter , disputeTemplateRegistry, evidence, core, policyRegistry, sortition } =
19
19
await getContractNamesFromNetwork ( hre ) ;
20
20
21
21
const upgrade = async ( contractName : string , initializer : string , args : any [ ] ) => {
@@ -78,7 +78,8 @@ const deployUpgradeAll: DeployFunction = async (hre: HardhatRuntimeEnvironment)
78
78
}
79
79
} ;
80
80
81
- await upgrade ( disputeKitClassic , "initialize6" , [ ] ) ;
81
+ await upgrade ( disputeKitClassic , "initialize7" , [ ] ) ;
82
+ await upgrade ( disputeKitShutter , "initialize8" , [ ] ) ;
82
83
await upgrade ( disputeTemplateRegistry , "initialize2" , [ ] ) ;
83
84
await upgrade ( evidence , "initialize2" , [ ] ) ;
84
85
await upgrade ( core , "initialize5" , [ ] ) ;
0 commit comments