The mempool operation requested by the user focuses on the following concept:

The decentralized mempool for EIP-4337 consists of an unrestricted peer-to-peer network of independent bundlers. It operates without assuming any contracts as permissible or impermissible, treating all contracts equally when validating them.

However, there may be instances where certain contracts have undergone audits and been proven to be secure, despite violating some rules set by the decentralized mempool. In such cases, a group of bundlers can create alternative mempools specifically for handling these exceptions. An example scenario that might require this is when using a Deposit Paymaster that can abstract gas fees with any ERC-20 token.

Furthermore, in addition to its main connection to the decentralized mempool, a bundler also maintains connections to any other alternative mempools it chooses to participate in.

FieldTypeDescription
senderaddressThe address of the smart contract account.
nonceuint256Anti-replay protection.
initCodebytesCode used to deploy the account if not yet on-chain.
callDatabytesData that’s passed to the sender for execution.
callGasLimituint256Gas limit for the execution phase.
verificationGasLimituint256Gas limit for the verification phase.
preVerificationGasuint256Gas to compensate the bundler for the overhead to submit a UserOperation.
maxFeePerGasuint256Similar to EIP-1559 max fee.
maxPriorityFeePerGasuint256Similar to EIP-1559 priority fee.
paymasterAndDatabytesPaymaster contract address and any extra data the paymaster contract needs for verification and execution. When set to 0x or the zero address, no paymaster is used.
signaturebytesUsed to validate a UserOperation during verification.