MyFactoryAccountUpgradeable
Inherits: Initializable
A factory contract to create accounts on demand.
State Variables
_impl
address private _impl;
Functions
__MyFactoryAccount_init
function __MyFactoryAccount_init(address impl_) internal onlyInitializing;
__MyFactoryAccount_init_unchained
function __MyFactoryAccount_init_unchained(address impl_) internal onlyInitializing;
predictAddress
Predict the address of the account
function predictAddress(bytes calldata callData) public view returns (address);
cloneAndInitialize
Create clone accounts on demand
function cloneAndInitialize(bytes calldata callData) public returns (address);