diff --git a/scripts/register_custom_token.ts b/scripts/register_custom_token.ts index 893bc4e07e..ca3f8bcce6 100644 --- a/scripts/register_custom_token.ts +++ b/scripts/register_custom_token.ts @@ -22,7 +22,7 @@ const L1Signer = ethers.Wallet.fromMnemonic(l1privKey) const L2Signer = ethers.Wallet.fromMnemonic(l2privKey) const l1Signer = L1Signer.connect(l1Prov) -const l2Signer = L1Signer.connect(l2Prov) +const l2Signer = L2Signer.connect(l2Prov) const wait = (ms: number) => new Promise(res => setTimeout(res, ms))