Skip to content

Commit

Permalink
chore: add delinks
Browse files Browse the repository at this point in the history
  • Loading branch information
juliopavila authored Aug 15, 2024
1 parent d366304 commit 6df6a64
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ This package includes the base [Zodiac](https://github.com/gnosisguild/zodiac) c

## Base Contracts

`Module.sol`
[**`Module.sol`**](/contracts/core/Module.sol)

Modules are contracts enabled by an Avatar that implement some decision making logic. They should import Module.sol.

`GuardableModule.sol`
[**`GuardableModule.sol`**](/contracts/core/GuardableModule.sol)

A module with a guard enabled that can check transactions before and after execution. Useful for limiting the scope of addresses and functions that a module can call or ensure a certain state is never changed by a module.

`Modifier.sol`
[**`Modifier.sol`**](/contracts/core/Modifier.sol)

Modifiers are contracts that sit between Modules and Avatars to modify the Module's behavior. For example, they might enforce a delay on all functions a Module attempts to execute. Modifiers should import Modifier.sol and must expose an interface like IAvatar.sol

`GuardableModifier.sol`
[**`GuardableModifier.sol`**](/contracts/core/GuardableModifier.sol)

A modifier with a guard enabled that can check transactions before and after execution. Useful for limiting the scope of addresses and functions that a modifier can call or ensure a certain state is never changed by a modifier.

Expand Down

0 comments on commit 6df6a64

Please sign in to comment.