Skip to content
/ module-template Public template

Template for plugin to be deployed on ZenGuarden

License

Notifications You must be signed in to change notification settings

zenguardxyz/module-template

Repository files navigation

Safe{Core} Protocol demo

This project shows the usage of Safe{Core} protocol

Structure

The project contains contracts, tests and scripts to build a Plugin.

Plugin Metadata

The metadata of a Plugin is used to provide information to users when enabling the Plugin. Currently the information required is:

  • name - Name of the Plugin that should be displayed
  • version - Version of the Plugin that is shown to the user
  • requiresRootAccess - Indicates if the Plugin require root access (i.e. perform delegatecall or change the account config).
  • iconUrl - Icon that should be displayed
  • appUrl - App to configure and use the Plugin

Note: The format and type of metadata currently required by Plugins is just for this demo. This will change in the future and a proper format will be proposed in the specificiations

Contracts

Base Contracts

The base contracts include two base contracts:

  • BasePluginWithStoredMetadata - A plugin that stores the metadata onchain
  • BasePluginWithEventMetadata - A plugin that stores the metadata in an event

Both allow that the web app can retrieve this metadata to display it to the user.

It is also possible to provide other storage means (i.e. ipfs or url). For this it is necessary to extend the BasePlugin contract and add the require utility script.

Example Plugins

The following example are included int his repository:

  • RelayPlugin - A plugin that allows to relay Safe transactions and pay a fee for it which is capped by the user.

Useful commands

Install

yarn

Compile

yarn build

Test

yarn test

Deploy

yarn deploy <network>

Interact with registry

The Registry used in this demo is a open test Registry (so no verification of Plugins or any other listing requirements).

  • Register the Sample Plugin on the Registry
yarn register-plugin <network>
  • List all Plugins in the Registry
yarn list-plugins <network>

About

Template for plugin to be deployed on ZenGuarden

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published