diff --git a/package.json b/package.json index b5108e66..284e842a 100644 --- a/package.json +++ b/package.json @@ -27,7 +27,7 @@ "test:gas": "REPORT_GAS=true hardhat test", "coverage": "REPORT_COVERAGE=true hardhat coverage", "precommit": "lint-staged", - "lint": "npm run lint:js && npm run fmt", + "lint": "npm run lint:js", "lint:js": "eslint . --fix", "fmt": "forge fmt" }, diff --git a/scripts/setup/setStages.ts b/scripts/setup/setStages.ts index 59e8edf8..ace463ec 100644 --- a/scripts/setup/setStages.ts +++ b/scripts/setup/setStages.ts @@ -46,6 +46,8 @@ export const setStages = async ( overrides.gasLimit = ethers.BigNumber.from(args.gaslimit); } + overrides.maxFeePerGas = 80000000; + const merkleRoots = await Promise.all( stagesConfig.map(async (stage) => { const isVariableWalletLimit = !!stage.variableWalletLimitPath;