From 830418eefb78e8eb8aaacf844e361f317276d881 Mon Sep 17 00:00:00 2001 From: Kamlesh Mugdiya Date: Fri, 20 Sep 2024 10:56:54 +0530 Subject: [PATCH] chore(ccr): use default gas params Ticket: COIN-1108 --- scripts/deploy.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/scripts/deploy.ts b/scripts/deploy.ts index 7b1eb27..353e720 100644 --- a/scripts/deploy.ts +++ b/scripts/deploy.ts @@ -11,11 +11,12 @@ async function main() { forwarderFactory: '' }; - const feeData = await ethers.provider.getFeeData(); + // const feeData = await ethers.provider.getFeeData(); const eip1559GasParams = { - maxFeePerGas: feeData.maxFeePerGas, - maxPriorityFeePerGas: feeData.maxPriorityFeePerGas + maxFeePerGas: 10000000000, + maxPriorityFeePerGas: 10000000000, + gasLimit: 3000000 }; const [deployer] = await ethers.getSigners();