Skip to content

Commit c654b73

Browse files
committed
fix(entrykit): increase user operation gas estimate multiplier from 2x to 3x
1 parent 79c16b2 commit c654b73

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/common/src/transports/methods/estimateUserOperationGas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export async function estimateUserOperationGas({
3333
const gasSimulation = await simulateGas({ userOp, request });
3434
const gasLimits = {
3535
verificationGasLimit: gasSimulation.verificationGas * 2n,
36-
callGasLimit: bigIntMax(gasSimulation.callGas * 2n, 9000n),
36+
callGasLimit: bigIntMax(gasSimulation.callGas * 3n, 9000n),
3737
paymasterVerificationGasLimit: gasSimulation.paymasterVerificationGas * 2n,
3838
paymasterPostOpGasLimit: gasSimulation.paymasterPostOpGas * 2n,
3939
preVerificationGas: 10_000_000n, // TODO: change this based on our alto config

0 commit comments

Comments
 (0)