From e4e3de793e8aeb1cf861c34c8228a355f21b2577 Mon Sep 17 00:00:00 2001 From: Ludovic_Domingues Date: Fri, 24 Nov 2023 10:07:13 +0100 Subject: [PATCH] Update README.md --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0a0afcd..bd4b9c2 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,8 @@ Cometh Connect SDK allows developers to onboard their users with a seedless, gasless experience familiar to Web2. Account Abstraction (AA) improves transaction user experience by using smart contract wallets as primary accounts. -To get an API key please [Contact us](https://cometh.io/) +To get an API key please [Contact us](https://cometh.io/) \ +You can view the documentation [here](https://docs.cometh.io/connect/quickstart/what-is-connect) ## Test Cometh Connect SDK @@ -87,3 +88,21 @@ var messageSigned = await _wallet.SignMessage("Hello World!"); ``` Sign the given message using the EOA, owner of the smart wallet. + +### Init a new Signer Request + +```C# +var addSignerRequest = await connectAuthAdaptor.InitNewSignerRequest(walletAddress); +``` + +Initialize a new SignerRequest to be used by your backend. + +### Get all Signer Requests + +```C# +var newSignerRequests = await connectAuthAdaptor.GetNewSignerRequests(); +``` + +Get all signerRequests for the connected address. + +For more information about adding new devices please refer to this [documentation](https://docs.cometh.io/connect/features/add-a-new-device)