diff --git a/l1-contracts/scripts/register-hyperchain.ts b/l1-contracts/scripts/register-hyperchain.ts index dbc2f157b..31f1b423e 100644 --- a/l1-contracts/scripts/register-hyperchain.ts +++ b/l1-contracts/scripts/register-hyperchain.ts @@ -126,7 +126,7 @@ async function main() { console.log(`Allowing EVM emulation`); await deployer.enableEvmEmulation(); } - + await deployer.transferAdminFromDeployerToChainAdmin(); }); diff --git a/l1-contracts/src.ts/deploy-process.ts b/l1-contracts/src.ts/deploy-process.ts index 7890536f0..e9622bfbe 100644 --- a/l1-contracts/src.ts/deploy-process.ts +++ b/l1-contracts/src.ts/deploy-process.ts @@ -80,7 +80,7 @@ export async function registerHyperchain( gasPrice: BigNumberish, baseTokenName?: string, chainId?: string, - useGovernance: boolean = false, + useGovernance: boolean = false ) { const testnetTokens = getTokens(); diff --git a/l1-contracts/src.ts/deploy.ts b/l1-contracts/src.ts/deploy.ts index 5329c0cb4..dfc16a810 100644 --- a/l1-contracts/src.ts/deploy.ts +++ b/l1-contracts/src.ts/deploy.ts @@ -734,7 +734,7 @@ export class Deployer { compareDiamondCutHash: boolean = false, nonce?, predefinedChainId?: string, - useGovernance: boolean = false, + useGovernance: boolean = false ) { const gasLimit = 10_000_000; @@ -871,9 +871,7 @@ export class Deployer { const receipt = await (await hyperchain.allowEvmEmulation()).wait(); if (this.verbose) { - console.log( - `EVM emulation allowed, gas used: ${receipt.gasUsed.toString()}` - ); + console.log(`EVM emulation allowed, gas used: ${receipt.gasUsed.toString()}`); } }