Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Latest commit

 

History

History
9 lines (6 loc) · 1.1 KB

modules-1.md

File metadata and controls

9 lines (6 loc) · 1.1 KB

Modules

Modules add custom features to Safe contracts. They are smart contracts that implement the Safe’s functionality while separating module logic from the Safe’s core contract. A basic Safe does not require any modules. Adding and removing a module requires confirmation from all owners. Modules are security-critical, so they need to be as secure as all other Safe contracts. Events are emitted whenever a module is added or removed and whenever a module transaction was successful or failed.

Modules can include daily spending allowances, amounts that can be spent without the approval of other owners, recurring transactions modules, standing orders that are performed on a recurring set date, e.g. paying your rent, and social recovery modules, which may allow you to recover a Safe if you lose access to owner accounts. These are just a few examples of how to use modules, but there are many other ways you could use modules in your Safe.

Examples

  1. Safe Modules
  2. Zodiac-compliant modules