Modules
Modules are self-contained smart contracts that extend a smart account’s feature set. This allows developers to access the programmable signature validation and transaction execution of smart accounts by building a custom module or reusing existing modules. This is a powerful shift in wallet development as it transforms the underlying account contract into an open platform. There are four types of modules:- Validators: Modifies how transactions are authenticated or what can be authorized against an account. The passkeys module is an example.
- Executors: Enables executions on an account with custom logic. For example, this can unlock portfolio management products like a take-profit or stop-loss feature on a DeFi platform.
- Hooks: Augment a smart account’s execution flow by hooking in pre- or post-execution and enforcing conditions or any custom logic. A simple example is a spending limit.
- Fallbacks: Extends the account logic to add further functionality. For example, this can allow an account to be compatible with new module types in the future.

Note: Only a subset of the Core Modules have been integrated into the latest version of the SDK. For access to all modules, check out the ModuleSDK or get in touch to request a feature update to the latest SDK.
- Passkeys
- Embedded wallets, such as key management providers like Dynamic, Turnkey, or Privy
- External wallets, such as MetaMask or Rabby
Resources
ERC-7579 Spec: A Minimal Standard for Modular Smart Account
A proposed standard for modular smart accounts that looks to establish common module types and module interfaces, ensuring smart account module interoperability without reducing experimentation at the account level.
Open Zeppelin ERC-7579 Resource
A guide that shows how to build modular accounts with ERC-7579. Detailing the four module types (validators, executors, fallbacks & hooks), social recovery with customizable guardians, and time-delayed execution to enhance security.
ERC-7579 Resources
An open source website with tools, documentation, and example code to further explore the ERC-7579 smart account ecosystem.
Modular Smart Account Blog Posts
Rhinestone research articles covering topics related to modular smart accounts.