From 837ca914a86c30656a023e5cb53187745f5162cc Mon Sep 17 00:00:00 2001 From: ernestognw Date: Wed, 29 Nov 2023 16:22:51 -0600 Subject: [PATCH 1/2] Add Access Manager explorer note in the docs --- docs/modules/ROOT/pages/access-control.adoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/modules/ROOT/pages/access-control.adoc b/docs/modules/ROOT/pages/access-control.adoc index c31f4cf4363..23fcf2f1870 100644 --- a/docs/modules/ROOT/pages/access-control.adoc +++ b/docs/modules/ROOT/pages/access-control.adoc @@ -159,6 +159,8 @@ For a call to be authorized, the caller must bear the role that is assigned to t image::access-manager-functions.svg[AccessManager functions] +IMPORTANT: For a visual role explorer, the https://access-manager.openzeppelin.com/[Access Manager explorer] can be used for exploring the roles and permissions of a deployed AccessManager. + === Using `AccessManager` OpenZeppelin Contracts provides xref:api:access.adoc#AccessManager[`AccessManager`] for managing roles across any number of contracts. The `AccessManager` itself is a contract that can be deployed and used out of the box. It sets an initial admin in the constructor who will be allowed to perform management operations. From afc1abb3f1d12d471a93dbc244f03f33ca352612 Mon Sep 17 00:00:00 2001 From: ernestognw Date: Wed, 29 Nov 2023 16:31:16 -0600 Subject: [PATCH 2/2] Extend note --- docs/modules/ROOT/pages/access-control.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/access-control.adoc b/docs/modules/ROOT/pages/access-control.adoc index 23fcf2f1870..48318853863 100644 --- a/docs/modules/ROOT/pages/access-control.adoc +++ b/docs/modules/ROOT/pages/access-control.adoc @@ -159,7 +159,7 @@ For a call to be authorized, the caller must bear the role that is assigned to t image::access-manager-functions.svg[AccessManager functions] -IMPORTANT: For a visual role explorer, the https://access-manager.openzeppelin.com/[Access Manager explorer] can be used for exploring the roles and permissions of a deployed AccessManager. +IMPORTANT: For a visual role explorer, the https://access-manager.openzeppelin.com/[AccessManager explorer] can be used for exploring the roles and permissions of a deployed AccessManager. Connecting a wallet is supported to detect and display the roles granted and functions that are available to it. === Using `AccessManager`