diff --git a/deployments/sepolia/usdc/relations.ts b/deployments/sepolia/usdc/relations.ts index cc7ee1abc..0c817f86e 100644 --- a/deployments/sepolia/usdc/relations.ts +++ b/deployments/sepolia/usdc/relations.ts @@ -48,12 +48,7 @@ export default { } }, baseL1StandardBridge: { - artifact: 'contracts/bridges/optimism/IL1StandardBridge.sol:IL1StandardBridge', - delegates: { - field: { - slot: '0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc' - } - } + artifact: 'contracts/bridges/optimism/IL1StandardBridge.sol:IL1StandardBridge' }, lineaMessageService: { artifact: 'contracts/bridges/linea/IMessageService.sol:IMessageService', diff --git a/hardhat.config.ts b/hardhat.config.ts index 13eccd7b9..8181538e6 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -461,7 +461,7 @@ const config: HardhatUserConfig = { auxiliaryBase: 'goerli' }, { - name: 'base-sepolia', + name: 'base-sepolia-usdc', network: 'base-sepolia', deployment: 'usdc', auxiliaryBase: 'sepolia' diff --git a/tasks/deployment_manager/task.ts b/tasks/deployment_manager/task.ts index f68286910..e2da7e62c 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.name === base.auxiliaryBase) : undefined; + const governanceBase = isBridgedDeployment ? env.config.scenario.bases.find(b => b.network === base.auxiliaryBase) : undefined; if (governanceBase) { const governanceEnv = hreForBase(governanceBase, simulate);