From 43242b0ece26ac000886933527b41aa00ab6b971 Mon Sep 17 00:00:00 2001 From: Antonio Nunez Date: Thu, 2 May 2024 15:44:45 +0800 Subject: [PATCH] fix: check for L2/L3 orbit --- scripts/l3Configuration.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/l3Configuration.ts b/scripts/l3Configuration.ts index 6f0f92f..d5c6d4d 100644 --- a/scripts/l3Configuration.ts +++ b/scripts/l3Configuration.ts @@ -106,7 +106,7 @@ export async function l3Configuration( // Setting L1 basefee on L3 const l2ChainId = (await L2Provider.getNetwork()).chainId - if (l2ChainId === 421614) { + if ((l2ChainId === 421614) || (l2ChainId === 42161)) { console.log(`This is an L3 Orbit`) const arbGasInfoAbi = ArbGasInfo__abi