Skip to content

Commit

Permalink
Sequence kit quickstart example update (#326)
Browse files Browse the repository at this point in the history
* update example with new 4.2.0 updates

* waasConfigKey optional for universal vs waas
  • Loading branch information
moskalyk authored Oct 7, 2024
1 parent c60a5d0 commit 2b2f717
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ interface CreateConfigOptions {

wagmiConfig?: WagmiConfig // optional wagmiConfig overrides

waasConfigKey: string
waasConfigKey?: string
enableConfirmationModal?: boolean

walletConnect?:
Expand All @@ -69,7 +69,7 @@ interface CreateConfigOptions {
| false
| {
clientId: string
rediretURI: string
redirectURI: string
}

email?:
Expand Down
8 changes: 6 additions & 2 deletions docs/pages/solutions/wallets/sequence-kit/getting-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,12 @@ export const config: any = createConfig('waas' /*or, 'universal'*/, {
defaultChainId: 1,
appName: 'Demo Dapp',
waasConfigKey: '<your-waas-config-key>', // for waas
googleClientId: '<your-google-client-id>', // for waas
walletConnectProjectId: '<your-wallet-connect-project-id>'
google: {
clientId: '<your-google-client-id>'
},
walletConnect: {
projectId: '<your-wallet-connect-project-id>'
}
})
```

Expand Down

0 comments on commit 2b2f717

Please sign in to comment.