It inherits Open Zeppelin's ERC1967Proxyarrow-up-right contract which follows EIP 1967arrow-up-right for storing the implementation, which is the ProxyFactory contract.
ProxyFactory
It also inherits Solmate's ReentrancyGuardarrow-up-right to match the storage of the implementation.
Github repo herearrow-up-right.
function getImplementation() external view returns(address);
Gets the current implementation of the factory of Accounts.
Return value:
address
The current implementation
Last updated 3 years ago