Skip to content

Commit e399f58

Browse files
committed
fix broken links
1 parent eeaafc4 commit e399f58

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+72
-855
lines changed

delegation-toolkit/get-started/smart-account-quickstart/eip7702.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,4 @@ const userOperationHash = await bundlerClient.sendUserOperation({
158158

159159
- To grant specific permissions to other accounts from your smart account, [create a delegation](../../guides/delegation/execute-on-smart-accounts-behalf.md).
160160
- To quickly bootstrap a MetaMask Smart Accounts project, [use the CLI](../use-the-cli.md).
161-
- You can also [use MetaMask SDK to upgrade a MetaMask account to a smart account](/sdk/tutorials/upgrade-eoa-to-smart-account).
161+
- You can also [use MetaMask SDK to upgrade a MetaMask account to a smart account](/tutorials/upgrade-eoa-to-smart-account).

delegation-toolkit/reference/api/experimental-actions/bundler-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Objects in the `calls` array also require the following parameters:
3131
| Name | Type | Required | Description |
3232
| ---- | ---- | -------- |----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
3333
| `delegationManager` | `0x${string}` | Yes | The address of Delegation Manager. |
34-
| `permissionsContext` | `0x${string}` | Yes | Encoded calldata for redeeming delegations. If you're not using ERC-7715, you can use the [`redeemDelegation`](../delegation.md#redeemdelegation) utility function to generate the calldata manually. |
34+
| `permissionsContext` | `0x${string}` | Yes | Encoded calldata for redeeming delegations. If you're not using ERC-7715, you can use the [`redeemDelegations`](../delegation.md#redeemdelegations) utility function to generate the calldata manually. |
3535

3636
### Example
3737

delegation-toolkit/reference/api/experimental-actions/wallet-client.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ This function has the same parameters, and it also requires the following parame
101101
| Name | Type | Required | Description |
102102
| ---- | ---- | -------- |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
103103
| `delegationManager` | `0x${string}` | Yes | The address of the Delegation Manager. |
104-
| `permissionsContext` | `0x${string}` | Yes | Encoded calldata for redeeming delegations. If you're not using ERC-7715, you can use the [`redeemDelegation`](../delegation.md#redeemdelegation) utility function to generate the calldata manually. |
104+
| `permissionsContext` | `0x${string}` | Yes | Encoded calldata for redeeming delegations. If you're not using ERC-7715, you can use the [`redeemDelegations`](../delegation.md#redeemdelegations) utility function to generate the calldata manually. |
105105

106106
### Example
107107

embedded-wallets/authentication/custom-connections/auth0.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ private fun signIn() {
180180
}
181181
```
182182

183-
When connecting, the `login` function takes the LoginParams arguments for the login. See the [LoginParams](/embedded-wallets/sdk/android/usage#parameters) for more details.
183+
When connecting, the `login` function takes the LoginParams arguments for the login. See the [LoginParams](/embedded-wallets/sdk/android/usage/login#parameters) for more details.
184184

185185
### Flutter
186186

embedded-wallets/authentication/custom-connections/firebase.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ private fun signIn() {
200200
}
201201
```
202202

203-
When connecting, the `login` function takes the LoginParams arguments for the login. See the [LoginParams](/embedded-wallets/sdk/android/usage#parameters) for more details.
203+
When connecting, the `login` function takes the LoginParams arguments for the login. See the [LoginParams](/embedded-wallets/sdk/android/usage/login#parameters) for more details.
204204

205205
### Flutter
206206

embedded-wallets/sdk/js/migration-guides/modal/v7-to-v10/custom-authentication.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import TabItem from '@theme/TabItem'
1313

1414
This guide focuses specifically on migrating custom authentication configurations from Web3Auth v7
1515
to v10. This covers the transition from "Verifiers" to "Connections" and "Grouped Connections". This
16-
is a supplementary guide to the main [v7 to v10 migration guide](../README).
16+
is a supplementary guide to the main [v7 to v10 migration guide](../README.mdx).
1717

1818
## Overview
1919

embedded-wallets/sdk/js/migration-guides/modal/v7-to-v10/external-wallets.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import TabItem from "@theme/TabItem";
1111

1212
This guide focuses specifically on migrating external wallet adapter configurations from Web3Auth v7
1313
to v10. This is a supplementary guide to the main
14-
[v7 to v10 migration guide](./modal-v7-to-v10.mdx).
14+
[v7 to v10 migration guide](../README.mdx).
1515

1616
## Overview
1717

@@ -88,5 +88,5 @@ No configuration needed - everything works out of the box!
8888

8989
## Next Steps
9090

91-
Return to the main [v7 to v10 migration guide](./modal-v7-to-v10.mdx) to continue with other
91+
Return to the main [v7 to v10 migration guide](../README.mdx) to continue with other
9292
migration aspects.

embedded-wallets/sdk/js/migration-guides/modal/v7-to-v10/wallet-services.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import TabItem from "@theme/TabItem";
1010
# Web3Auth v10 Wallet Services Migration Guide
1111

1212
This guide focuses specifically on migrating Wallet Services functionality from Web3Auth v7 to v10.
13-
This is a supplementary guide to the main [v7 to v10 migration guide](./modal-v7-to-v10.mdx).
13+
This is a supplementary guide to the main [v7 to v10 migration guide](../README.mdx).
1414

1515
## Overview
1616

@@ -72,5 +72,5 @@ npm uninstall @web3auth/wallet-services-plugin
7272

7373
## Next Steps
7474

75-
Return to the main [v7 to v10 migration guide](./modal-v7-to-v10.mdx) to continue with other
75+
Return to the main [v7 to v10 migration guide](../README.mdx) to continue with other
7676
migration aspects.

embedded-wallets/sdk/js/migration-guides/modal/v7-to-v10/whitelabeling.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import TabItem from '@theme/TabItem'
99

1010
# Web3Auth v10 Whitelabeling Migration Guide
1111

12-
This guide focuses specifically on migrating whitelabeling and UI customization configurations from Web3Auth v7 to v10. This is a supplementary guide to the main [v7 to v10 migration guide](../README).
12+
This guide focuses specifically on migrating whitelabeling and UI customization configurations from Web3Auth v7 to v10. This is a supplementary guide to the main [v7 to v10 migration guide](../README.mdx).
1313

1414
## Overview
1515

@@ -137,4 +137,4 @@ This shift centralizes UI control on the dashboard and simplifies client-side SD
137137

138138
## Next Steps
139139

140-
Return to the main [v7 to v10 migration guide](./modal-v7-to-v10.mdx) to continue with other migration aspects like custom authentication and method name changes.
140+
Return to the main [v7 to v10 migration guide](../README.mdx) to continue with other migration aspects like custom authentication and method name changes.

embedded-wallets/sdk/js/migration-guides/modal/v8-to-v10/custom-authentication.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import TabItem from '@theme/TabItem'
1313

1414
This guide focuses specifically on migrating custom authentication configurations from Web3Auth v8
1515
to v10. This covers the transition from "Verifiers" to "Connections" and "Grouped Connections". This
16-
is a supplementary guide to the main [v8 to v10 migration guide](../README).
16+
is a supplementary guide to the main [v8 to v10 migration guide](../README.mdx).
1717

1818
## Overview
1919

@@ -176,5 +176,5 @@ client-side logic and provides a more robust way to manage authentication method
176176

177177
## Next Steps
178178

179-
Return to the main [v8 to v10 migration guide](./modal-v8-to-v10.mdx) to continue with other
179+
Return to the main [v8 to v10 migration guide](../README.mdx) to continue with other
180180
migration aspects like MFA configurations and method renames.

0 commit comments

Comments
 (0)