Skip to content

Commit

Permalink
update readme and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
howydev committed Nov 20, 2023
1 parent df6f43d commit 76ce1a8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Alchemy Modular Smart Contract Account (MSCA)

Contracts for an upgradeable modular smart contract account that is compatible with ERC-4337 and ERC-6900, along with a set of plugins.
Contracts for an upgradeable modular smart contract account that is compatible with ERC-4337, along with a set of plugins.

## Development

Expand Down
2 changes: 1 addition & 1 deletion src/account/UpgradeableModularAccount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {UUPSUpgradeable} from "../../ext/UUPSUpgradeable.sol";

/// @title Upgradeable Modular Account
/// @author Alchemy
/// @notice An ERC-6900 compatible modular smart contract account (MSCA) that supports upgradeability and plugins.
/// @notice A modular smart contract account (MSCA) that supports upgradeability and plugins.
contract UpgradeableModularAccount is
AccountExecutor,
AccountLoupe,
Expand Down
2 changes: 1 addition & 1 deletion src/factory/MultiOwnerMSCAFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {IEntryPoint} from "../interfaces/erc4337/IEntryPoint.sol";

/// @title Multi Owner Plugin MSCA (Modular Smart Contract Account) Factory
/// @author Alchemy
/// @notice Factory for ERC-6900 compatible upgradeable modular accounts with MultiOwnerPlugin installed.
/// @notice Factory for upgradeable modular accounts with MultiOwnerPlugin installed.
/// @dev There is a reliance on the assumption that the plugin manifest will remain static, following ERC-6900. If
/// this assumption is broken then account deployments would be bricked.
contract MultiOwnerMSCAFactory is Ownable {
Expand Down
3 changes: 1 addition & 2 deletions src/factory/MultiOwnerTokenReceiverMSCAFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ import {IEntryPoint} from "../interfaces/erc4337/IEntryPoint.sol";

/// @title Multi Owner Plugin + Token Receiver MSCA (Modular Smart Contract Account) Factory
/// @author Alchemy
/// @notice Factory for ERC-6900 compatible upgradeable modular accounts with MultiOwnerPlugin and TokenReceiver
/// installed.
/// @notice Factory for upgradeable modular accounts with MultiOwnerPlugin and TokenReceiver installed.
/// @dev There is a reliance on the assumption that the plugin manifest will remain static, following ERC-6900. If
/// this assumption is broken then account deployments would be bricked.
contract MultiOwnerTokenReceiverMSCAFactory is Ownable {
Expand Down

0 comments on commit 76ce1a8

Please sign in to comment.