Skip to content

Commit 8ed87c1

Browse files
authored
docs: updating app centric links (#2145)
* docs: updating app centric links * docs: fix broken
1 parent 33b7e38 commit 8ed87c1

File tree

9 files changed

+12
-12
lines changed

9 files changed

+12
-12
lines changed

account-kit/rn-signer/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ See the [example app](./example) for usage information.
3939
1. run `yarn` in the root of the repo
4040
1. make changes in `rn-signer/src`
4141
1. cd into `account-kit/rn-signer/example`
42-
1. add a `.env` file which contains `API_KEY={alchemy_api_key}`. This API Key needs to correspond to an app that has Embedded Accounts enabled (https://dashboard.alchemy.com/accounts).
42+
1. add a `.env` file which contains `API_KEY={alchemy_api_key}`. This API Key needs to correspond to an app that has Smart Wallets enabled (https://dashboard.alchemy.com/apps/latest/services/smart-wallets).
4343
1. run `yarn android` to start the example app. You will need to make sure you do the env setup here: https://reactnative.dev/docs/set-up-your-environment to be able to run the app on android
4444

4545
---

docs/pages/authentication/login-methods/bring-your-own-auth.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Your JWTs must contain these claims:
8383

8484
### 4. Audience Claim
8585

86-
The `aud` claim must be set to your Alchemy-provided audience ID. You can obtain the audience claim from your Smart Wallet configuration in the [Alchemy Dashboard](https://dashboard.alchemy.com/accounts/config/create).
86+
The `aud` claim must be set to your Alchemy-provided audience ID. You can obtain the audience claim from your Smart Wallet settings in the [Alchemy Dashboard](https://dashboard.alchemy.com/apps/latest/services/smart-wallets).
8787

8888
<img src="/images/wallets/bring-your-own-auth.png" alt="Audience Claim" />
8989

docs/pages/concepts/smart-account-client.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The [`SmartWalletClient`](https://github.com/alchemyplatform/aa-sdk/blob/b8dad09
1414

1515
- [API key](https://dashboard.alchemy.com/apps)
1616
- (Optional) [A gas policyID](https://dashboard.alchemy.com/gas-manager/policy/create)
17-
- [Smart wallets installed and configured in your project](/docs/wallets/pages/react/setup)
17+
- [Smart wallets installed and configured in your project](/wallets/react/setup)
1818

1919
## Implementation
2020

@@ -223,6 +223,6 @@ const signature2 = await nonHoistedClient.signMessage({
223223

224224
## Next Steps
225225

226-
- [Send transactions](/docs/wallets/transactions/send/evm-user-ops)
227-
- [Sponsor gas](/docs/wallets/transactions/sponsor-gas/sponsor-gas-evm)
228-
- [Batch transactions](/docs/wallets/transactions/send/batch-user-ops)
226+
- [Send transactions](/wallets/transactions/send/evm-user-ops)
227+
- [Sponsor gas](/wallets/transactions/sponsor-gas/sponsor-gas-evm)
228+
- [Batch transactions](/wallets/transactions/send/batch-user-ops)

docs/pages/smart-wallets/quickstart/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ You can complete this tutorial using either the [TypeScript SDK](/wallets/smart-
4040

4141
<Tip title="EIP-7702" icon="file-contract">
4242
Want to use EIP-7702? Check out the [7702
43-
Quickstart](/docs/reference/wallet-apis-7702-quickstart) instead.
43+
Quickstart](/docs/wallets/transactions/using-eip-7702) instead.
4444
</Tip>

docs/shared/get-api-key.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Make sure **your desired network** is enabled for your app under the
44
Networks tab.
55
</Warning>
6-
2. Create a **new account config** in your [Smart Wallets Dashboard](https://dashboard.alchemy.com/accounts)
6+
2. Activate **smart wallets** for your app in your [dashboard](https://dashboard.alchemy.com/apps/latest/services/smart-wallets)
77

88
1. Apply the config to your app from step 1
99

docs/shared/react-native/signer-setup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
</Warning>
1010

11-
2. Create a **new account config** in your [Smart Wallets Dashboard](https://dashboard.alchemy.com/accounts)
11+
2. Activate **smart wallets** in your [Smart Wallets Dashboard](https://dashboard.alchemy.com/apps/latest/services/smart-wallets/overview)
1212

1313
<br />
1414
a. Apply the config to your app from step 1

docs/specs/openapi/accounts/accounts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ paths:
333333
**Required OIDC Claims:**
334334
- `iss` (Issuer): The identity of the OIDC provider. Should be the same as issuer URL specified in your /.well-known/openid-configuration, for example see the [Google OpenID configuration](https://accounts.google.com/.well-known/openid-configuration)
335335
- `sub` (Subject): A unique identifier that identifies the user with this auth provider.
336-
- `aud` (Audience): A unique identifier for the project that can be found on the [Alchemy Dashboard](https://dashboard.alchemy.com/accounts/config/create).
336+
- `aud` (Audience): A unique identifier for the project that can be found on the [Alchemy Dashboard](https://dashboard.alchemy.com/apps/latest/services/smart-wallets).
337337
- `exp` (Expiration): Token expiration time as Unix timestamp
338338
- `iat` (Issued At): Token issuance time as Unix timestamp
339339
- `nonce` (Nonce): toHex(sha256(targetPublicKey)) without the leading 0x

examples/ui-demo/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next
55
## Setup your Environment
66

77
1. Ensure you have the right node version corresponding to the `/aa-sdk/.nvmrc` file.
8-
2. Go to Alchemy's Dashboard, and set up an [account config](https://dashboard.alchemy.com/accounts/config/create).
8+
2. Go to Alchemy's Dashboard, and enable [smart wallets](https://dashboard.alchemy.com/apps/latest/services/smart-wallets/overview) on your app.
99
1. For local development set the configuration with a redirect url to http://localhost:3000.
1010

1111
## Install Dependencies

examples/ui-demo/src/utils/links.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export const links = {
55
"https://calendly.com/d/cp7s-3yx-2yh/alchemy-account-kit-ui-alpha",
66
// TODO: update once we have final links
77
quickstartGuide: "https://www.alchemy.com/docs/wallets/react/quickstart",
8-
dashboard: `https://dashboard.alchemy.com/accounts?utm_source=demo_alchemy_com&utm_medium=referral&utm_campaign=demo_to_dashboard`,
8+
dashboard: `https://dashboard.alchemy.com/apps/latest/services/smart-wallets?utm_source=demo_alchemy_com&utm_medium=referral&utm_campaign=demo_to_dashboard`,
99
passkey: "https://www.alchemy.com/docs/wallets/core/add-passkey",
1010
auth0: "https://www.alchemy.com/docs/wallets/signer/authentication/auth0",
1111
sms: "https://alchemyapi.typeform.com/to/GLXIYjKz",

0 commit comments

Comments
 (0)