diff --git a/deployments/base-sepolia/usdc/migrations/1710879470_configure_and_ens.ts b/deployments/base-sepolia/usdc/migrations/1710879470_configure_and_ens.ts index 35b16d768..a6a7e1e66 100644 --- a/deployments/base-sepolia/usdc/migrations/1710879470_configure_and_ens.ts +++ b/deployments/base-sepolia/usdc/migrations/1710879470_configure_and_ens.ts @@ -124,10 +124,6 @@ export default migration('1710879470_configure_and_ens', { trace(`Created proposal ${proposalId}.`); }, - async enacted(deploymentManager: DeploymentManager): Promise { - return true; - }, - async verify(deploymentManager: DeploymentManager, govDeploymentManager: DeploymentManager, preMigrationBlockNumber: number) { const ethers = deploymentManager.hre.ethers; await deploymentManager.spider(); // We spider here to pull in Optimism COMP now that reward config has been set diff --git a/hardhat.config.ts b/hardhat.config.ts index 8181538e6..15ae29357 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -144,7 +144,7 @@ const networkConfigs: NetworkConfig[] = [ { network: 'base-sepolia', chainId: 84532, - url: `https://sepolia.base.org/`, + url: `https://clean-spring-wind.base-sepolia.discover.quiknode.pro/${QUICKNODE_KEY}`, }, { network: 'linea-goerli', @@ -464,7 +464,7 @@ const config: HardhatUserConfig = { name: 'base-sepolia-usdc', network: 'base-sepolia', deployment: 'usdc', - auxiliaryBase: 'sepolia' + auxiliaryBase: 'sepolia-usdc' }, { name: 'linea-goerli', diff --git a/tasks/deployment_manager/task.ts b/tasks/deployment_manager/task.ts index e2da7e62c..09f49d56a 100644 --- a/tasks/deployment_manager/task.ts +++ b/tasks/deployment_manager/task.ts @@ -190,7 +190,7 @@ task('migrate', 'Runs migration') let governanceDm: DeploymentManager; const base = env.config.scenario.bases.find(b => b.network === network && b.deployment === deployment); const isBridgedDeployment = base.auxiliaryBase !== undefined; - const governanceBase = isBridgedDeployment ? env.config.scenario.bases.find(b => b.network === base.auxiliaryBase) : undefined; + const governanceBase = isBridgedDeployment ? env.config.scenario.bases.find(b => b.name === base.auxiliaryBase) : undefined; if (governanceBase) { const governanceEnv = hreForBase(governanceBase, simulate); @@ -226,7 +226,7 @@ task('migrate', 'Runs migration') await runMigration(dm, governanceDm, prepare, enact, migration, overwrite); - if (enact && !noEnacted) { + if (enact && !noEnacted && !simulate) { await writeEnacted(migration, dm, true); } }