Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Krayt78 committed Nov 24, 2023
1 parent 95053a8 commit e4e3de7
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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)

0 comments on commit e4e3de7

Please sign in to comment.