diff --git a/scripts/deploy/em-migration/migrate-em.ts b/scripts/deploy/em-migration/migrate-em.ts index 85dffafa..53eebb86 100644 --- a/scripts/deploy/em-migration/migrate-em.ts +++ b/scripts/deploy/em-migration/migrate-em.ts @@ -84,14 +84,6 @@ const deleteOldContracts = async (chains: ChainSlug[]) => { } }; -const deploySimulators = async (chains: ChainSlug[]) => { - try { - await deployForChains(chains, emVersion); - } catch (error) { - console.log("Error:", error); - } -}; - const deploy = async (chains: ChainSlug[]) => { try { const addresses: DeploymentAddresses = await deployForChains( @@ -165,10 +157,6 @@ const main = async () => { title: "Delete", value: "delete", }, - { - title: "DeploySimulators", - value: "DeploySimulators", - }, ], }, { @@ -216,9 +204,6 @@ const main = async () => { case "delete": await deleteOldContracts(chains); break; - case "DeploySimulators": - await deploySimulators(chains); - break; case "exit": process.exit(0); }