diff --git a/docs/pages/solutions/wallets/sequence-kit/custom-configuration.mdx b/docs/pages/solutions/wallets/sequence-kit/custom-configuration.mdx index 0a76ccd5f5..662a0c4226 100644 --- a/docs/pages/solutions/wallets/sequence-kit/custom-configuration.mdx +++ b/docs/pages/solutions/wallets/sequence-kit/custom-configuration.mdx @@ -50,7 +50,7 @@ interface CreateConfigOptions { wagmiConfig?: WagmiConfig // optional wagmiConfig overrides - waasConfigKey: string + waasConfigKey?: string enableConfirmationModal?: boolean walletConnect?: @@ -69,7 +69,7 @@ interface CreateConfigOptions { | false | { clientId: string - rediretURI: string + redirectURI: string } email?: diff --git a/docs/pages/solutions/wallets/sequence-kit/getting-started.mdx b/docs/pages/solutions/wallets/sequence-kit/getting-started.mdx index 1686e6517b..4b531271d8 100644 --- a/docs/pages/solutions/wallets/sequence-kit/getting-started.mdx +++ b/docs/pages/solutions/wallets/sequence-kit/getting-started.mdx @@ -64,8 +64,12 @@ export const config: any = createConfig('waas' /*or, 'universal'*/, { defaultChainId: 1, appName: 'Demo Dapp', waasConfigKey: '', // for waas - googleClientId: '', // for waas - walletConnectProjectId: '' + google: { + clientId: '' + }, + walletConnect: { + projectId: '' + } }) ```