We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0c1455 commit 256b59fCopy full SHA for 256b59f
1 file changed
src/signature-verification-canister-client/src/client.rs
@@ -61,4 +61,9 @@ impl<C: CanisterClient> SignatureVerificationCanisterClient<C> {
61
) -> CanisterClientResult<SignatureVerificationResult<()>> {
62
self.client.update("set_owner", (principal,)).await
63
}
64
+
65
+ /// Get the access control list
66
+ pub async fn get_access_list(&self) -> CanisterClientResult<Vec<Principal>> {
67
+ self.client.query("get_access_list", ()).await
68
+ }
69
0 commit comments