diff --git a/docs/pages/solutions/wallets/link-wallets/integration-guide.mdx b/docs/pages/solutions/wallets/link-wallets/integration-guide.mdx index 01c9a86d76..25b06abf81 100644 --- a/docs/pages/solutions/wallets/link-wallets/integration-guide.mdx +++ b/docs/pages/solutions/wallets/link-wallets/integration-guide.mdx @@ -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 @@ -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"; @@ -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! \ No newline at end of file +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. \ No newline at end of file