Skip to content

Commit d5e0b6e

Browse files
authored
Update API reference links in dashboard and portal (#8508)
1 parent 75e9be0 commit d5e0b6e

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/contracts/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export default async function Page(props: {
9898
},
9999
{
100100
type: "api",
101-
href: "https://api.thirdweb.com/reference#tag/contracts",
101+
href: "https://api.thirdweb.com/reference#tag/gateway",
102102
},
103103
{
104104
type: "webhooks",

apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/payments/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default async function Page(props: {
8585
},
8686
{
8787
type: "api",
88-
href: "https://api.thirdweb.com/reference#tag/payments",
88+
href: "https://api.thirdweb.com/reference#tag/x402",
8989
},
9090
],
9191
}}

apps/portal/src/app/contracts/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export const sidebar: SideBar = {
7171
isCollapsible: false,
7272
links: [
7373
{
74-
href: "/reference#tag/contracts",
74+
href: "/reference#tag/gateway",
7575
icon: <CodeIcon />,
7676
name: "HTTP API",
7777
},

apps/portal/src/app/wallets/server/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Server wallets are wallets that are managed by your own application, like a trea
3535

3636
### Use an existing Server Wallet
3737

38-
Once created, you can use your server wallet by passing it as the `from` field of the [thirdweb API](/reference#tag/transactions/post/v1/transactions).
38+
Once created, you can use your server wallet by passing it as the `from` field of the [thirdweb API](/reference#tag/wallets/post/v1/transactions).
3939

4040
### Create a new Server Wallet
4141

apps/portal/src/app/wallets/server/send-transactions/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Send, monitor, and manage transactions. Send transactions from user or server wa
6464

6565
### Send raw transactions
6666

67-
Send a raw transaction from a [user wallet](/wallets/users) from the frontend, or [server wallet](/wallets/server) from the backend using the [thirdweb API](/reference#tag/transactions/post/v1/transactions).
67+
Send a raw transaction from a [user wallet](/wallets/users) from the frontend, or [server wallet](/wallets/server) from the backend using the [thirdweb API](/reference#tag/wallets/post/v1/transactions).
6868

6969
- For server wallets, you can execute transactions with just your project secret key.
7070
- For user wallets in React applications that use the SDK, you can obtain the user wallet auth token (JWT) with the [`useAuthToken()`](/references/typescript/v5/useAuthToken) hook.
@@ -74,7 +74,7 @@ Send, monitor, and manage transactions. Send transactions from user or server wa
7474

7575
### Send contract calls
7676

77-
Send a transaction to a contract from a [user wallet](/wallets/users) from the frontend, or [server wallet](/wallets/server) from the backend using the [thirdweb API](/reference#tag/contracts/post/v1/contracts/{chainId}/{address}/write).
77+
Send a transaction to a contract from a [user wallet](/wallets/users) from the frontend, or [server wallet](/wallets/server) from the backend using the [thirdweb API](/reference#tag/wallets/post/v1/contracts/{chainId}/{address}/write).
7878

7979
- For server wallets, you can execute transactions with just your project secret key.
8080
- For user wallets in React applications that use the SDK, you can obtain the user wallet auth token (JWT) with the [`useAuthToken()`](/references/typescript/v5/useAuthToken) hook.

0 commit comments

Comments
 (0)