Skip to content

Commit

Permalink
updating comments
Browse files Browse the repository at this point in the history
  • Loading branch information
eloi010 committed May 31, 2023
1 parent a7c2cb0 commit 4738715
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/core/static/StaticOpenfortAccount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {BaseOpenfortAccount} from "../BaseOpenfortAccount.sol";
* @title StaticOpenfortAccount (Non-upgradeable)
* @author Eloi<eloi@openfort.xyz>
* @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
*/
Expand Down
6 changes: 5 additions & 1 deletion contracts/core/static/StaticOpenfortFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ import {IBaseOpenfortFactory} from "../../interfaces/IBaseOpenfortFactory.sol";
/**
* @title StaticOpenfortFactory (Non-upgradeable)
* @author Eloi<eloi@openfort.xyz>
* @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
*/
Expand Down

0 comments on commit 4738715

Please sign in to comment.