Skip to content

Commit 77ba44f

Browse files
committed
Convert links from absolute to relative.
Signed-off-by: bgravenorst <byron.gravenorst@consensys.net>
1 parent 85b7da3 commit 77ba44f

File tree

27 files changed

+129
-129
lines changed

27 files changed

+129
-129
lines changed

embedded-wallets/dashboard/README.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ The project comes pre-configured with default connections, chains and networks t
4949

5050
Once your project is created, you can configure various aspects of your integration through the dashboard:
5151

52-
- **[Project Settings](/embedded-wallets/dashboard/project-settings)** - Basic project information, credentials, and token verification
53-
- **[Whitelist Settings](/embedded-wallets/dashboard/whitelist)** - Domain and URL authorization for enhanced security
54-
- **[Advanced Project Settings](/embedded-wallets/dashboard/advanced/session-management)** - Advanced configuration options
55-
- **[Session Management](/embedded-wallets/dashboard/advanced/session-management)** - Session duration and behavior
56-
- **[Test Accounts](/embedded-wallets/dashboard/advanced/test-accounts)** - Development testing environment
57-
- **[User Details in ID Token](/embedded-wallets/dashboard/advanced/user-details)** - JWT token user data configuration
58-
- **[Key Export Settings](/embedded-wallets/dashboard/advanced/key-export)** - Private key export permissions
59-
- **[Chains and Networks](/embedded-wallets/dashboard/chains-and-networks)** - Manage blockchain networks and custom chain configurations
60-
- **[Authentication](/embedded-wallets/dashboard/authentication)** - Configure login methods, social connections, and custom authentication
61-
- **[Wallet Services](/embedded-wallets/dashboard/wallet-services)** - Customize wallet UI and configure wallet features
62-
- **[Customization](/embedded-wallets/dashboard/customization)** - Brand your login flow and customize the user experience
63-
- **[Analytics](/embedded-wallets/dashboard/analytics)** - Monitor project usage and user engagement metrics
52+
- **[Project Settings](./project-settings.mdx)** - Basic project information, credentials, and token verification
53+
- **[Whitelist Settings](./whitelist.mdx)** - Domain and URL authorization for enhanced security
54+
- **[Advanced Project Settings](./advanced/session-management.mdx)** - Advanced configuration options
55+
- **[Session Management](./advanced/session-management.mdx)** - Session duration and behavior
56+
- **[Test Accounts](./advanced/test-accounts.mdx)** - Development testing environment
57+
- **[User Details in ID Token](./advanced/user-details.mdx)** - JWT token user data configuration
58+
- **[Key Export Settings](./advanced/key-export.mdx)** - Private key export permissions
59+
- **[Chains and Networks](./chains-and-networks.mdx)** - Manage blockchain networks and custom chain configurations
60+
- **[Authentication](./authentication.mdx)** - Configure login methods, social connections, and custom authentication
61+
- **[Wallet Services](./wallet-services.mdx)** - Customize wallet UI and configure wallet features
62+
- **[Customization](./customization.mdx)** - Brand your login flow and customize the user experience
63+
- **[Analytics](./analytics.mdx)** - Monitor project usage and user engagement metrics

embedded-wallets/dashboard/whitelist.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,6 @@ https://*.api.myapp.com
302302

303303
## Next Steps
304304

305-
- **[Project Settings](/embedded-wallets/dashboard/project-settings)** - Configure basic project information
306-
- **[Advanced Project Settings](/embedded-wallets/dashboard/advanced/session-management)** - Access advanced configuration options
307-
- **[Session Management](/embedded-wallets/dashboard/advanced/session-management)** - Control session duration and behavior
305+
- **[Project Settings](./project-settings.mdx)** - Configure basic project information
306+
- **[Advanced Project Settings](./advanced/session-management.mdx)** - Access advanced configuration options
307+
- **[Session Management](./advanced/session-management.mdx)** - Control session duration and behavior

embedded-wallets/sdk/android/README.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dependencies {
5353

5454
:::info
5555

56-
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](/embedded-wallets/dashboard/) guide to learn more.
56+
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](../../dashboard/README.mdx) guide to learn more.
5757

5858
:::
5959

@@ -209,10 +209,10 @@ initializeCF.whenComplete { _, error ->
209209

210210
The Web3Auth Android SDK offers a rich set of advanced configuration options:
211211

212-
- **[Custom Authentication](/embedded-wallets/sdk/android/advanced/custom-authentication)**: Define authentication methods.
213-
- **[Whitelabeling & UI Customization](/embedded-wallets/sdk/android/advanced/whitelabel)**: Personalize the modal's appearance.
214-
- **[Multi-Factor Authentication (MFA)](/embedded-wallets/sdk/android/advanced/mfa)**: Set up and manage MFA.
215-
- **[DApp Share](/embedded-wallets/sdk/android/advanced/dapp-share)**: Share DApp sessions across devices.
212+
- **[Custom Authentication](./advanced/custom-authentication.mdx)**: Define authentication methods.
213+
- **[Whitelabeling & UI Customization](./advanced/whitelabel.mdx)**: Personalize the modal's appearance.
214+
- **[Multi-Factor Authentication (MFA)](./advanced/mfa.mdx)**: Set up and manage MFA.
215+
- **[DApp Share](./advanced/dapp-share.mdx)**: Share DApp sessions across devices.
216216

217217
:::tip
218218

embedded-wallets/sdk/android/advanced/README.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,15 @@ var web3Auth = Web3Auth(
115115

116116
## Custom Authentication Methods
117117

118-
Control the login options presented to your users. For detailed configuration options and implementation examples, see the [Custom Authentication](/embedded-wallets/sdk/android/advanced/custom-authentication) section.
118+
Control the login options presented to your users. For detailed configuration options and implementation examples, see the [Custom Authentication](./custom-authentication.mdx) section.
119119

120120
## UI Customization
121121

122-
Create a seamless brand experience by customizing the Web3Auth Login Screens to match your application's design. For complete customization options, refer to the [Whitelabeling & UI Customization](/embedded-wallets/sdk/android/advanced/whitelabel) section.
122+
Create a seamless brand experience by customizing the Web3Auth Login Screens to match your application's design. For complete customization options, refer to the [Whitelabeling & UI Customization](./whitelabel.mdx) section.
123123

124124
## Multi-Factor Authentication (MFA)
125125

126-
Add additional security layers to protect user accounts with two-factor authentication. For detailed configuration options and implementation examples, see the [Multi-Factor Authentication](/embedded-wallets/sdk/android/advanced/mfa) section.
126+
Add additional security layers to protect user accounts with two-factor authentication. For detailed configuration options and implementation examples, see the [Multi-Factor Authentication](./mfa.mdx) section.
127127

128128
**Key Configuration Options:**
129129

embedded-wallets/sdk/flutter/README.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ flutter pub add web3auth_flutter
4242

4343
:::info
4444

45-
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](/embedded-wallets/dashboard/) guide to learn more.
45+
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](../../dashboard/README.mdx) guide to learn more.
4646

4747
:::
4848

@@ -239,10 +239,10 @@ If the API call to fetch the project configuration fails, the method will throw
239239

240240
The Web3Auth Flutter SDK offers a rich set of advanced configuration options:
241241

242-
- **[Custom Authentication](/embedded-wallets/sdk/flutter/advanced/custom-authentication)**: Define authentication methods.
243-
- **[Whitelabeling & UI Customization](/embedded-wallets/sdk/flutter/advanced/whitelabel)**: Personalize the modal's appearance.
244-
- **[Multi-Factor Authentication (MFA)](/embedded-wallets/sdk/flutter/advanced/mfa)**: Set up and manage MFA.
245-
- **[DApp Share](/embedded-wallets/sdk/flutter/advanced/dapp-share)**: Share DApp sessions across devices.
242+
- **[Custom Authentication](./advanced/custom-authentication.mdx)**: Define authentication methods.
243+
- **[Whitelabeling & UI Customization](./advanced/whitelabel.mdx)**: Personalize the modal's appearance.
244+
- **[Multi-Factor Authentication (MFA)](./advanced/mfa.mdx)**: Set up and manage MFA.
245+
- **[DApp Share](./advanced/dapp-share.mdx)**: Share DApp sessions across devices.
246246

247247
:::tip
248248

embedded-wallets/sdk/flutter/advanced/README.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,15 +143,15 @@ await Web3AuthFlutter.init(Web3AuthOptions(
143143

144144
## Custom Authentication Methods
145145

146-
Control the login options presented to your users. For detailed configuration options and implementation examples, see the [Custom Authentication](/embedded-wallets/sdk/flutter/advanced/custom-authentication) section.
146+
Control the login options presented to your users. For detailed configuration options and implementation examples, see the [Custom Authentication](./custom-authentication.mdx) section.
147147

148148
## UI Customization
149149

150-
Create a seamless brand experience by customizing the Web3Auth Login Screens to match your application's design. For complete customization options, refer to the [Whitelabeling & UI Customization](/embedded-wallets/sdk/flutter/advanced/whitelabel) section.
150+
Create a seamless brand experience by customizing the Web3Auth Login Screens to match your application's design. For complete customization options, refer to the [Whitelabeling & UI Customization](./whitelabel.mdx) section.
151151

152152
## Multi-Factor Authentication (MFA)
153153

154-
Add additional security layers to protect user accounts with two-factor authentication. For detailed configuration options and implementation examples, see the [Multi-Factor Authentication](/embedded-wallets/sdk/flutter/advanced/mfa) section.
154+
Add additional security layers to protect user accounts with two-factor authentication. For detailed configuration options and implementation examples, see the [Multi-Factor Authentication](./mfa.mdx) section.
155155

156156
**Key Configuration Options:**
157157

embedded-wallets/sdk/ios/README.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pod 'Web3Auth', '~> 11.1.0'
5252

5353
:::info
5454

55-
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](/embedded-wallets/dashboard/) guide to learn more.
55+
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](../../dashboard/README.mdx) guide to learn more.
5656

5757
:::
5858

@@ -133,10 +133,10 @@ func application(_ app: UIApplication, open url: URL, options: [UIApplication.Op
133133

134134
The Web3Auth iOS SDK offers a rich set of advanced configuration options:
135135

136-
- **[Custom Authentication](/embedded-wallets/sdk/ios/advanced/custom-authentication)**: Define authentication methods.
137-
- **[Whitelabeling & UI Customization](/embedded-wallets/sdk/ios/advanced/whitelabel)**: Personalize the modal's appearance.
138-
- **[Multi-Factor Authentication (MFA)](/embedded-wallets/sdk/ios/advanced/mfa)**: Set up and manage MFA.
139-
- **[DApp Share](/embedded-wallets/sdk/ios/advanced/dapp-share)**: Share DApp sessions across devices.
136+
- **[Custom Authentication](./advanced/custom-authentication.mdx)**: Define authentication methods.
137+
- **[Whitelabeling & UI Customization](./advanced/whitelabel.mdx)**: Personalize the modal's appearance.
138+
- **[Multi-Factor Authentication (MFA)](./advanced/mfa.mdx)**: Set up and manage MFA.
139+
- **[DApp Share](./advanced/dapp-share.mdx)**: Share DApp sessions across devices.
140140

141141
:::tip
142142

embedded-wallets/sdk/ios/advanced/README.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,15 +104,15 @@ web3Auth = Web3Auth(W3AInitParams(
104104

105105
## Custom Authentication Methods
106106

107-
Control the login options presented to your users. For detailed configuration options and implementation examples, see the [Custom Authentication](/embedded-wallets/sdk/ios/advanced/custom-authentication) section.
107+
Control the login options presented to your users. For detailed configuration options and implementation examples, see the [Custom Authentication](./custom-authentication.mdx) section.
108108

109109
## UI Customization
110110

111-
Create a seamless brand experience by customizing the Web3Auth Login Screens to match your application's design. For complete customization options, refer to the [Whitelabeling & UI Customization](/embedded-wallets/sdk/ios/advanced/whitelabel) section.
111+
Create a seamless brand experience by customizing the Web3Auth Login Screens to match your application's design. For complete customization options, refer to the [Whitelabeling & UI Customization](./whitelabel.mdx) section.
112112

113113
## Multi-Factor Authentication (MFA)
114114

115-
Add additional security layers to protect user accounts with two-factor authentication. For detailed configuration options and implementation examples, see the [Multi-Factor Authentication](/embedded-wallets/sdk/ios/advanced/mfa) section.
115+
Add additional security layers to protect user accounts with two-factor authentication. For detailed configuration options and implementation examples, see the [Multi-Factor Authentication](./mfa.mdx) section.
116116

117117
**Key Configuration Options:**
118118

embedded-wallets/sdk/js/README.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ npm install --save @web3auth/modal
3333

3434
:::info
3535

36-
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](/embedded-wallets/dashboard/) guide to learn more.
36+
Prerequisites Before you start, make sure you have registered on the [**Web3Auth Dashboard**](https://dashboard.web3auth.io/) and have set up your project. You can look into the [Dashboard Setup](../../dashboard/README.mdx) guide to learn more.
3737

3838
:::
3939

@@ -62,15 +62,15 @@ await web3auth.init()
6262

6363
The Web3Auth Modal SDK offers a rich set of advanced configuration options:
6464

65-
- **[Smart Accounts](/embedded-wallets/sdk/js/advanced/smart-accounts)**: Configure account abstraction parameters.
66-
- **[Custom Authentication](/embedded-wallets/sdk/js/advanced/custom-authentication)**: Define authentication methods.
67-
- **[Whitelabeling & UI Customization](/embedded-wallets/sdk/js/advanced/whitelabel)**: Personalize the modal's appearance.
68-
- **[Multi-Factor Authentication (MFA)](/embedded-wallets/sdk/js/advanced/mfa)**: Set up and manage MFA.
69-
- **[Wallet Services](/embedded-wallets/sdk/js/advanced/wallet-services)**: Integrate additional wallet services.
65+
- **[Smart Accounts](./advanced/smart-accounts.mdx)**: Configure account abstraction parameters.
66+
- **[Custom Authentication](./advanced/custom-authentication.mdx)**: Define authentication methods.
67+
- **[Whitelabeling & UI Customization](./advanced/whitelabel.mdx)**: Personalize the modal's appearance.
68+
- **[Multi-Factor Authentication (MFA)](./advanced/mfa.mdx)**: Set up and manage MFA.
69+
- **[Wallet Services](./advanced/wallet-services.mdx)**: Integrate additional wallet services.
7070

7171
:::tip
7272

73-
Head over to the [**Advanced Configuration**](/embedded-wallets/sdk/js/advanced) section to learn more about each configuration option.
73+
Head over to the [**Advanced Configuration**](./advanced/README.mdx) section to learn more about each configuration option.
7474

7575
:::
7676

embedded-wallets/sdk/js/advanced/README.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const web3AuthOptions = {
8080
## Multi-Factor Authentication (MFA)
8181

8282
Add additional security layers to protect user accounts with two-factor authentication. For detailed
83-
configuration options and implementation examples, see the [Multi-Factor Authentication](/embedded-wallets/sdk/js/advanced/mfa)
83+
configuration options and implementation examples, see the [Multi-Factor Authentication](./mfa.mdx)
8484
section.
8585

8686
**Key Configuration Options:**
@@ -92,7 +92,7 @@ section.
9292

9393
Control the login options presented to your users and how they're displayed in the modal. For
9494
detailed configuration options and implementation examples, see the
95-
[Custom Authentication](/embedded-wallets/sdk/js/advanced/custom-authentication) section.
95+
[Custom Authentication](./custom-authentication.mdx) section.
9696

9797
**Key Configuration Options:**
9898

@@ -102,7 +102,7 @@ detailed configuration options and implementation examples, see the
102102

103103
Create a seamless brand experience by customizing the Web3Auth Modal to match your application's
104104
design. For complete customization options, refer to the
105-
[Whitelabeling & UI Customization](/embedded-wallets/sdk/js/advanced/whitelabel) section.
105+
[Whitelabeling & UI Customization](./whitelabel.mdx) section.
106106

107107
**Key Configuration Options:**
108108

@@ -112,7 +112,7 @@ design. For complete customization options, refer to the
112112
## Smart Accounts (Account Abstraction)
113113

114114
Improve user experience with gasless transactions and advanced account features. Learn more in the
115-
[Smart Accounts](/embedded-wallets/sdk/js/advanced/smart-accounts) documentation.
115+
[Smart Accounts](./smart-accounts.mdx) documentation.
116116

117117
**Key Configuration Options:**
118118

@@ -123,7 +123,7 @@ Improve user experience with gasless transactions and advanced account features.
123123
## Wallet Services
124124

125125
Extend your application with enhanced wallet functionality. See the
126-
[Wallet Services](/embedded-wallets/sdk/js/advanced/wallet-services) documentation for complete configuration options.
126+
[Wallet Services](./wallet-services.mdx) documentation for complete configuration options.
127127

128128
**Key Configuration Options:**
129129

0 commit comments

Comments
 (0)