Skip to content

Commit

Permalink
feat: rename the page Title and make the permission ids and the funct…
Browse files Browse the repository at this point in the history
…ion names inline code
  • Loading branch information
clauBv23 committed Dec 11, 2024
1 parent 6225add commit a7cd19b
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions packages/contracts/docs/modules/ROOT/pages/index.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
= Multisig plugin
= Multisig

IMPORTANT: The contracts are currently being audited, DO NOT USE IN PRODUCTION.

Expand All @@ -12,8 +12,6 @@ Each approver can individually cast their approval directly on-chain,
unlike traditional multisig solutions that rely on off-chain aggregation of signatures.




== Proposal Lifecycle

=== **Creation**:
Expand Down Expand Up @@ -116,41 +114,41 @@ This ensures that the operation is valid and does not violate the plugin’s con
|===
| Permission ID | Where (Granted By) | Who (Granted To) | Condition | Functions

| EXECUTE_PERMISSION_ID
| `EXECUTE_PERMISSION_ID`
| DAO
| Plugin
| None
| execute
| `execute`

| UPDATE_MULTISIG_SETTINGS_PERMISSION_ID
| `UPDATE_MULTISIG_SETTINGS_PERMISSION_ID`
| Plugin
| DAO
| None
| addAddresses, removeAddresses, updateMultisigSettings
| `addAddresses`, `removeAddresses`, `updateMultisigSettings`

| CREATE_PROPOSAL_PERMISSION_ID
| `CREATE_PROPOSAL_PERMISSION_ID`
| Plugin
| Any Address
| ListedCheckCondition
| createProposal
| `ListedCheckCondition`
| `createProposal`

| SET_TARGET_CONFIG_PERMISSION_ID
| `SET_TARGET_CONFIG_PERMISSION_ID`
| Plugin
| DAO
| None
| setTargetConfig
| `setTargetConfig`

| SET_METADATA_PERMISSION_ID
| `SET_METADATA_PERMISSION_ID`
| Plugin
| DAO
| None
| setMetadata
| `setMetadata`

| EXECUTE_PROPOSAL_PERMISSION_ID
| `EXECUTE_PROPOSAL_PERMISSION_ID`
| Plugin
| Any Address
| None
| execute
| `execute`
|===

This setup ensures that the **Multisig** plugin is ready for operation immediately after installation, with all required contracts deployed and permissions configured.

0 comments on commit a7cd19b

Please sign in to comment.