diff --git a/README.md b/README.md index 92154419..95f0746b 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/account/UpgradeableModularAccount.sol b/src/account/UpgradeableModularAccount.sol index 208a7a13..59b232b9 100644 --- a/src/account/UpgradeableModularAccount.sol +++ b/src/account/UpgradeableModularAccount.sol @@ -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, diff --git a/src/factory/MultiOwnerMSCAFactory.sol b/src/factory/MultiOwnerMSCAFactory.sol index 3acd4b20..e859ce92 100644 --- a/src/factory/MultiOwnerMSCAFactory.sol +++ b/src/factory/MultiOwnerMSCAFactory.sol @@ -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 { diff --git a/src/factory/MultiOwnerTokenReceiverMSCAFactory.sol b/src/factory/MultiOwnerTokenReceiverMSCAFactory.sol index b5c47716..53a25927 100644 --- a/src/factory/MultiOwnerTokenReceiverMSCAFactory.sol +++ b/src/factory/MultiOwnerTokenReceiverMSCAFactory.sol @@ -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 {