-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ import {BaseOpenfortAccount} from "../BaseOpenfortAccount.sol"; | |
* @title StaticOpenfortAccount (Non-upgradeable) | ||
* @author Eloi<[email protected]> | ||
* @notice Minimal smart contract wallet with session keys following the ERC-4337 standard. | ||
* The EntryPoint can be updated via updateEntryPoint() | ||
* The EntryPoint can be updated via updateEntryPoint(). | ||
* It inherits from: | ||
* - BaseOpenfortAccount | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,11 @@ import {IBaseOpenfortFactory} from "../../interfaces/IBaseOpenfortFactory.sol"; | |
/** | ||
* @title StaticOpenfortFactory (Non-upgradeable) | ||
* @author Eloi<[email protected]> | ||
* @notice Contract to create account factories | ||
* @notice Contract to create an on-chain factory to deploy new StaticOpenfortAccounts using OpenZeppelin's Clones library. | ||
* As explained by OZ: The Clones library provides a way to deploy minimal non-upgradeable proxies for cheap. | ||
* This can be useful for applications that require deploying many instances of the same contract (for example one per user, or one per task). | ||
* These instances are designed to be both cheap to deploy, and cheap to call. | ||
* The drawback being that they are not upgradeable. | ||
* It inherits from: | ||
* - IBaseOpenfortFactory | ||
*/ | ||
|