Account Factory Contract
Bespoke contracts for scaffolding and creating smart contract wallets.
Overview
The AccountFactory contract is primarily used to create Account contracts that represent a user's account in a blockchain network, differing from traditional externally owned accounts (EOAs). It has two main functions: aiding client code in pre-generating the Account contract address to facilitate pre-funding, and assisting the EntryPoint contract in deploying the Account contract when the first UserOperation associated with a given account is transmitted.
Account Factory contracts are not uniform. They differ based on the type of Account contract and the specific logic they implement. For instance, a common type is the SimpleAccountFactory
, which creates Account contracts that behave similar to EOAs. However, these accounts offer additional functionalities, like conducting batch transfers and handling ERC-20 token transfers, adding to their flexibility and versatility.
Role
The Account Factory contract plays a crucial role in the lifecycle of a UserOperation:
Initialization with initCode: When a UserOperation includes the initCode field, the EntryPoint contract invokes the Account Factory contract to deploy the corresponding Account contract.
Seamless Integration: Ensures the created Account contract adheres to the required interface for subsequent operations.
Implementation
Each Account Factory contract is independently deployed. Each smart contract wallet provider may create their own Account Factory tailored to their specific requirements. The Smart Account contract that gets deployed may also be different.
Example: SimpleAccountFactory Interface
In the code snippet below there are two main functions of the SimpleAccountFactory
helper contract. The createAccount()
method is used by the EntryPoint contract to deploy the Account contract and the getAddress()
method is used by the client side code to generate the Account contract address.
Last updated
Was this helpful?