From fa3c3e270421826a60c172da9d48c34b6714242c Mon Sep 17 00:00:00 2001 From: Wade Routen <76965247+wrouten-figure@users.noreply.github.com> Date: Thu, 23 Feb 2023 11:15:58 -0700 Subject: [PATCH] Correct marker module permission name discrepancy `provenanced -t tx marker grant grant` yields `Error: invalid access grant permission: grant: invalid access type` Source code shows `Admin` as the correct permission and tested locally, which worked. --- modules/marker-module.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/marker-module.md b/modules/marker-module.md index 260a391..1f2a4e4 100644 --- a/modules/marker-module.md +++ b/modules/marker-module.md @@ -49,7 +49,7 @@ When a `marker` is created the address that submits the transaction is bound as | Action | Permission | Notes | | ------------------- | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | Create New Marker | _unrestricted, governance_ | Depending on the module configuration the system may allow any account with appropriate gas to create a marker or the process may be restricted to requiring a successful governance proposal | -| Grant Access | `grant` | Allows adding additional access grants to the marker. Accounts with this permission are considered full administrators of the marker and may delegate or remove access for accounts. | +| Grant Access | `admin` | Allows adding additional access grants to the marker. Accounts with this permission are considered full administrators of the marker and may delegate or remove access for accounts. | | Increase Supply | `mint` | Allows `mint` (increase supply) for an active status marker | | Decrease Supply | `burn` | Allows `burn` (decrease supply) for an active status marker | | Add Asset to Pool | `deposit` | Allows assignment of a `scope` against the marker (Note: scope permission checks are separately performed, address must have access to both marker and scope to perform this action) |