BaseAccount
Basic account implementation. this contract provides the basic logic for implementing the IAccount interface - validateUserOp specific account implementation should inherit it and provide the account-specific logic
Methods
entryPoint
return the entryPoint used by this account. subclass should return the current entryPoint used by this account.
Returns
Name
Type
Description
_0
contract IEntryPoint
undefined
nonce
return the account nonce. subclass should return a nonce value that is used both by _validateAndUpdateNonce, and by the external provider (to read the current nonce)
Returns
Name
Type
Description
_0
uint256
undefined
validateUserOp
Parameters
Name
Type
Description
userOp
UserOperation
undefined
userOpHash
bytes32
undefined
missingAccountFunds
uint256
undefined
Returns
Name
Type
Description
validationData
uint256
undefined
Last updated