From ff7941b88911e6e9e5272701e172c0f323ef44fa Mon Sep 17 00:00:00 2001 From: Galoretka Date: Wed, 12 Nov 2025 15:58:14 +0200 Subject: [PATCH] docs(interfaces): correct IPaymaster.postOp param description for actualUserOpFeePerGas --- contracts/interfaces/draft-IERC4337.sol | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/contracts/interfaces/draft-IERC4337.sol b/contracts/interfaces/draft-IERC4337.sol index 752e4e432c0..f0f129c147c 100644 --- a/contracts/interfaces/draft-IERC4337.sol +++ b/contracts/interfaces/draft-IERC4337.sol @@ -242,7 +242,8 @@ interface IPaymaster { /** * @dev Verifies the sender is the entrypoint. * @param actualGasCost the actual amount paid (by account or paymaster) for this UserOperation - * @param actualUserOpFeePerGas total gas used by this UserOperation (including preVerification, creation, validation and execution) + * @param actualUserOpFeePerGas the effective gas price (wei per gas) paid by this UserOperation, equal to + * min(maxFeePerGas, maxPriorityFeePerGas + basefee) */ function postOp( PostOpMode mode,