Skip to content

Commit 1a7217d

Browse files
committed
update number of chains
1 parent 89c9c27 commit 1a7217d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

script/bytecode-deploy/100_Constants.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ address constant COLD_STORAGE_ADDRESS_BOOK_PLUGIN_ADDRESS = 0x0000000d81083B16EA
2828
address constant WEIGHTED_MULTISIG_PLUGIN_ADDRESS = 0x0000000C984AFf541D6cE86Bb697e68ec57873C8;
2929

3030
library Constants {
31-
function getChains() internal pure returns (string[1] memory) {
31+
function getChains() internal pure returns (string[17] memory) {
3232
return [
3333
"mainnet",
3434
"sepolia",

script/bytecode-deploy/105_SetUpgradableMSCAFactoryPlugins.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ contract SetUpgradableMSCAFactoryPlugins is Script {
4545
pluginPermissions[i] = true;
4646
}
4747

48-
string[17] memory chains = Constants.getChainsForSetup();
48+
string[6] memory chains = Constants.getChainsForSetup();
4949

5050
// Set plugins for factory
5151
for (uint256 i = 0; i < chains.length; i++) {

script/bytecode-deploy/106_StakeUpgradableMSCAFactory.s.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ contract StakeUpgradableMSCAFactory is Script {
3030
uint256 key = vm.envUint("MSCA_FACTORY_OWNER_PRIVATE_KEY");
3131

3232
uint32 unstakeDelaySec = 1 * 24 * 60 * 60; // 1 day
33-
string[17] memory chains = Constants.getChainsForSetup();
33+
string[6] memory chains = Constants.getChainsForSetup();
3434

3535
// NOTE: Please configure stake value based on minimums from
3636
// https://docs.alchemy.com/docs/bundler-services#minimum-stake

0 commit comments

Comments
 (0)