diff --git a/docs/advanced/dao/02-permissions.md b/docs/advanced/dao/02-permissions.md index fb4d19fd..feab23a3 100644 --- a/docs/advanced/dao/02-permissions.md +++ b/docs/advanced/dao/02-permissions.md @@ -8,13 +8,13 @@ sidebar_position: 2 The following functions in the DAO are permissioned: -| Functions | Permission Identifier | Description | -| --- | --- | --- | -| grant, grantWithCondition, revoke | ROOT_PERMISSION_ID | Required to manage permissions of the DAO and associated plugins. | -| execute | EXECUTE_PERMISSION_ID | Required to execute arbitrary actions. | -| _authorizeUpgrade | UPGRADE_DAO_PERMISSION_ID | Required to upgrade the DAO (via the https://eips.ethereum.org/EIPS/eip-1822). | -| setMetadata | SET_METADATA_PERMISSION_ID | Required to set the DAO’s metadata and https://eips.ethereum.org/EIPS/eip-4824. | -| setTrustedForwarder | SET_TRUSTED_FORWARDER_PERMISSION_ID | Required to set the DAO’s trusted forwarder for meta transactions. | -| registerStandardCallback | REGISTER_STANDARD_CALLBACK_PERMISSION_ID | Required to register a standard callback for an https://eips.ethereum.org/EIPS/eip-165 interface ID. | +| Functions | Permission Identifier | Description | +| --------------------------------------- | ------------------------------------------ | --------------------------------------------------------------------------------------------------------------- | +| `grant`, `grantWithCondition`, `revoke` | `ROOT_PERMISSION_ID` | Required to manage permissions of the DAO and associated plugins. | +| `execute` | `EXECUTE_PERMISSION_ID` | Required to execute arbitrary actions. | +| `_authorizeUpgrade` | `UPGRADE_DAO_PERMISSION_ID` | Required to upgrade the DAO (via the [UUPS](https://eips.ethereum.org/EIPS/eip-1822)). | +| `setMetadata` | `SET_METADATA_PERMISSION_ID` | Required to set the DAO’s metadata and [DAOstar.one DAO URI](https://eips.ethereum.org/EIPS/eip-4824). | +| `setTrustedForwarder` | `SET_TRUSTED_FORWARDER_PERMISSION_ID` | Required to set the DAO’s trusted forwarder for meta transactions. | +| `registerStandardCallback` | `REGISTER_STANDARD_CALLBACK_PERMISSION_ID` | Required to register a standard callback for an [ERC-165](https://eips.ethereum.org/EIPS/eip-165) interface ID. | -Plugins installed on the DAO might introduce other permissions and associated permission identifiers. This additional permissions are specified by the plugin itself. \ No newline at end of file +Plugins installed on the DAO might introduce other permissions and associated permission identifiers, these additional permissions are specified by the plugin itself.