diff --git a/deploy/core/011_deploy_ModuleProxyFactory.ts b/deploy/core/011_deploy_ModuleProxyFactory.ts index fc6eafa3..17873611 100644 --- a/deploy/core/011_deploy_ModuleProxyFactory.ts +++ b/deploy/core/011_deploy_ModuleProxyFactory.ts @@ -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;