From 7ccc3c376f1e9907c737970feca73cd87e88aeae Mon Sep 17 00:00:00 2001 From: Doug Lance <4741454+douglance@users.noreply.github.com> Date: Mon, 30 Jun 2025 08:20:32 -0400 Subject: [PATCH] chore(docs): remove childProvider from `deposit` method --- docs/1-introduction.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/1-introduction.mdx b/docs/1-introduction.mdx index ea4ba4443..5792a4462 100644 --- a/docs/1-introduction.mdx +++ b/docs/1-introduction.mdx @@ -67,7 +67,6 @@ const ethBridger = new EthBridger(childNetwork) const ethDepositTxResponse = await ethBridger.deposit({ amount: utils.parseEther('23'), parentSigner, // an ethers v5 signer connected to mainnet ethereum - childProvider, // an ethers v5 provider connected to Arbitrum One }) const ethDepositTxReceipt = await ethDepositTxResponse.wait()