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();