From 5880595125cc293c74946db6d5eb80b2d105d7e0 Mon Sep 17 00:00:00 2001 From: Joaquim Verges Date: Thu, 5 Dec 2024 10:29:48 +1300 Subject: [PATCH] docs: Update Connect wallet sign-in method URLs --- apps/portal/redirects.mjs | 4 ++++ .../src/app/connect/wallet/pregenerate-wallets/page.mdx | 2 +- .../src/app/connect/wallet/sign-in-methods/guest/page.mdx | 2 +- packages/thirdweb/src/wallets/in-app/web/ecosystem.ts | 2 +- packages/thirdweb/src/wallets/in-app/web/in-app.ts | 4 ++-- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/apps/portal/redirects.mjs b/apps/portal/redirects.mjs index 35cfce9d263..535da04a2b9 100644 --- a/apps/portal/redirects.mjs +++ b/apps/portal/redirects.mjs @@ -958,6 +958,10 @@ const otherRedirects = { "/connect/connect": "/connect/sign-in", "/connect/in-app-wallet/how-to/get-in-app-wallet-details-on-server": "/connect/in-app-wallet/guides/get-in-app-wallet-details-on-server", + "/connect/ecosystems/:path*": "/connect/wallet/overview", + "/wallet/get-started/overview": "/connect/wallet/overview", + "/connect/wallet/sign-in-methods/overview": + "/connect/wallet/sign-in-methods/configure", }; const v5RestructuredRedirects = { diff --git a/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx b/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx index a43b6d6fd23..4203e52bc72 100644 --- a/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx +++ b/apps/portal/src/app/connect/wallet/pregenerate-wallets/page.mdx @@ -122,4 +122,4 @@ Pre-generating is independent and doesn't change the user's experience. Your users can continue to login as per usual. When they do, they will be assigned the pregenerated wallet. -For more information on signing in, see [Sign In](/connect/wallet/sign-in-methods/overview). \ No newline at end of file +For more information on signing in, see [Sign In](/connect/wallet/sign-in-methods/configure). \ No newline at end of file diff --git a/apps/portal/src/app/connect/wallet/sign-in-methods/guest/page.mdx b/apps/portal/src/app/connect/wallet/sign-in-methods/guest/page.mdx index bff5167f805..d4abad1805a 100644 --- a/apps/portal/src/app/connect/wallet/sign-in-methods/guest/page.mdx +++ b/apps/portal/src/app/connect/wallet/sign-in-methods/guest/page.mdx @@ -24,7 +24,7 @@ Sometimes users want to get started using your app without signing in. You can n ## Logging in with Guest Mode -In general, logging in with guest mode is the same as configuring any other login method in the platform of your choice. See the [login methods overview](/connect/wallet/sign-in-methods/overview) for more information on configuring your login options. +In general, logging in with guest mode is the same as configuring any other login method in the platform of your choice. See the [login methods overview](/connect/wallet/sign-in-methods/configure) for more information on configuring your login options. ### In App Wallet
diff --git a/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts b/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts index e33932d5c08..2f887c5ae3a 100644 --- a/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts +++ b/packages/thirdweb/src/wallets/in-app/web/ecosystem.ts @@ -7,7 +7,7 @@ import type { import { createInAppWallet } from "../core/wallet/in-app-core.js"; /** - * Creates an [Ecosystem Wallet](https://portal.thirdweb.com/connect/ecosystems/overview) based on various authentication methods. Full list of available authentication methods [here](/connect/wallet/sign-in-methods/overview). + * Creates an [Ecosystem Wallet](https://portal.thirdweb.com/connect/wallet/overview) based on various authentication methods. Full list of available authentication methods [here](/connect/wallet/sign-in-methods/configure). * * Can also be configured to use Account Abstraction to directly connect to a ERC4337 smart account based on those authentication methods. * diff --git a/packages/thirdweb/src/wallets/in-app/web/in-app.ts b/packages/thirdweb/src/wallets/in-app/web/in-app.ts index 21b3814a23d..b2cd6632724 100644 --- a/packages/thirdweb/src/wallets/in-app/web/in-app.ts +++ b/packages/thirdweb/src/wallets/in-app/web/in-app.ts @@ -4,7 +4,7 @@ import type { CreateWalletArgs } from "../../wallet-types.js"; import { createInAppWallet } from "../core/wallet/in-app-core.js"; /** - * Creates an app scoped wallet for users based on various authentication methods. Full list of available authentication methods [here](https://portal.thirdweb.com/connect/wallet/sign-in-methods/overview). + * Creates an app scoped wallet for users based on various authentication methods. Full list of available authentication methods [here](https://portal.thirdweb.com/connect/wallet/sign-in-methods/configure). * * Can also be configured to use Account Abstraction to directly connect to a ERC4337 smart account based on those authentication methods. * @@ -27,7 +27,7 @@ import { createInAppWallet } from "../core/wallet/in-app-core.js"; * }); * ``` * - * [View all available social auth methods](https://portal.thirdweb.com/connect/wallet/sign-in-methods/overview) + * [View all available social auth methods](https://portal.thirdweb.com/connect/wallet/sign-in-methods/configure) * * ### Login with email *