Skip to content

Commit

Permalink
updated simple edits (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
moskalyk authored Sep 27, 2024
1 parent 3c2d343 commit 6f76fb0
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { Callout } from "vocs/components";

Time to complete: 25-35 minutes

In this guide, we will showcase how to sign into an [Embedded Wallet](/solutions/wallets/embedded-wallet/overview) using traditional authentication like email or social login. Then, in order to link an external wallet address using [Sequence Kit](/solutions/wallets/sequence-kit/overview) to your Embedded Wallet, we will sign a message which creates the a queryable graph of addresses for a single user profile stored off-chain privately. Finally, other features of the API will be delved into, like listing total wallets linked and removal of the state of linked wallets, both using signatures for privacy preserving means.
In this guide, we will showcase how to sign into an [Embedded Wallet](/solutions/wallets/embedded-wallet/overview) using traditional authentication like email or social login. Then, in order to link an external wallet address using [Sequence Kit](/solutions/wallets/sequence-kit/overview) to your Embedded Wallet, we will sign a message which creates a queryable set of addresses for a single user profile stored off-chain privately. Finally, other features of the API will be delved into, like listing total wallets linked and removal of the state of linked wallets, both using signatures for privacy preserving means.

# Demo
<Callout type='info'>
Expand Down Expand Up @@ -217,6 +217,7 @@ Finally, if you no longer want to keep a wallet linked off-chain to a parent wal
```typescript
import {
...
useAccount,
useSignMessage
...
} from "wagmi";
Expand Down Expand Up @@ -275,4 +276,4 @@ function App(){

## Conclusion

We've provided a sample application that allows you to authenticate a user with your embedded wallet configuration, validate a message from an external wallet, and then link these together using the Sequence Linking API. Furthermore, we went over how to use these API functions using simple examples from React & Wagmi. You can either use the standalone application we've provided or leverage the same flow in your own application from here!
We've provided a sample application that allows you to authenticate a user with your embedded wallet configuration, validate a message from an external wallet, and then link these together using the Sequence Linking API. Furthermore, we went over how to use these API functions using simple examples from React & Wagmi. You can either use the standalone application we've provided or leverage the same flow in your own application from here.

0 comments on commit 6f76fb0

Please sign in to comment.