From 57914827a6813be92c3573ef4d2e3b35e138dcc7 Mon Sep 17 00:00:00 2001 From: strmfos <155266597+strmfos@users.noreply.github.com> Date: Fri, 4 Jul 2025 22:07:54 +0200 Subject: [PATCH] replace ParentToChildMessageGasEstimator.ts reference --- src/createTokenBridge-ethers.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/createTokenBridge-ethers.ts b/src/createTokenBridge-ethers.ts index 826ad696..c8993199 100644 --- a/src/createTokenBridge-ethers.ts +++ b/src/createTokenBridge-ethers.ts @@ -173,7 +173,7 @@ const getEstimateForDeployingFactory = async ( return { // there's already a 300% increase buffer in the SDK - // https://github.com/OffchainLabs/arbitrum-sdk/blob/main/src/lib/message/ParentToChildMessageGasEstimator.ts#L27 + // https://github.com/OffchainLabs/arbitrum-sdk/blob/main/packages/sdk/src/lib/message/ParentToChildMessageGasEstimator.ts#L27 maxSubmissionCost, maxGas, }; @@ -247,7 +247,7 @@ async function getEstimateForDeployingContracts( return { // there's already a 300% increase buffer in the SDK - // https://github.com/OffchainLabs/arbitrum-sdk/blob/main/src/lib/message/ParentToChildMessageGasEstimator.ts#L27 + // https://github.com/OffchainLabs/arbitrum-sdk/blob/main/packages/sdk/src/lib/message/ParentToChildMessageGasEstimator.ts#L27 maxSubmissionCost, maxGas: maxGas.mul(2), };