Skip to content

Commit

Permalink
Don't compile ModuleProxyFactory, and don't deploy it any longer
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Oct 9, 2024
1 parent a7355b9 commit 31ea053
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 4 additions & 2 deletions deploy/core/011_deploy_ModuleProxyFactory.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import { HardhatRuntimeEnvironment } from "hardhat/types";
import { DeployFunction } from "hardhat-deploy/types";
import { deployNonUpgradeable } from "../helpers/deployNonUpgradeable";
// import { deployNonUpgradeable } from "../helpers/deployNonUpgradeable";

const func: DeployFunction = async (hre: HardhatRuntimeEnvironment) => {
await deployNonUpgradeable(hre, "ModuleProxyFactory", []);
// No longer deploying ModuleProxyFactory to any new networks..
// This contract is deployed by the Zodiac team.
// await deployNonUpgradeable(hre, "ModuleProxyFactory", []);
};

export default func;
1 change: 0 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ const config: HardhatUserConfig = {
"@gnosis.pm/safe-contracts/contracts/libraries/MultiSendCallOnly.sol",
"@gnosis.pm/safe-contracts/contracts/proxies/GnosisSafeProxyFactory.sol",
"@gnosis.pm/safe-contracts/contracts/GnosisSafeL2.sol",
"@gnosis.pm/zodiac/contracts/factory/ModuleProxyFactory.sol",
],
},
namedAccounts: {
Expand Down

0 comments on commit 31ea053

Please sign in to comment.