Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions apps/portal/redirects.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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).
For more information on signing in, see [Sign In](/connect/wallet/sign-in-methods/configure).
Original file line number Diff line number Diff line change
Expand Up @@ -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
<div className="my-4 grid gap-2 md:grid-cols-2 lg:grid-cols-3">
Expand Down
2 changes: 1 addition & 1 deletion packages/thirdweb/src/wallets/in-app/web/ecosystem.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down
4 changes: 2 additions & 2 deletions packages/thirdweb/src/wallets/in-app/web/in-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand All @@ -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
*
Expand Down
Loading