Skip to content

Commit

Permalink
Merge pull request #111 from decentdao/no-more-ModuleProxyFactory-dep…
Browse files Browse the repository at this point in the history
…loyments

Don't compile ModuleProxyFactory, and don't deploy it any longer
  • Loading branch information
adamgall authored Oct 9, 2024
2 parents a7355b9 + 77ccd73 commit 47390cd
Showing 1 changed file with 4 additions and 2 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;

0 comments on commit 47390cd

Please sign in to comment.