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
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default async function Page(props: {
},
{
type: "api",
href: "https://api.thirdweb.com/reference#tag/contracts",
href: "https://api.thirdweb.com/reference#tag/gateway",
},
{
type: "webhooks",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export default async function Page(props: {
},
{
type: "api",
href: "https://api.thirdweb.com/reference#tag/payments",
href: "https://api.thirdweb.com/reference#tag/x402",
},
],
}}
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/src/app/contracts/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const sidebar: SideBar = {
isCollapsible: false,
links: [
{
href: "/reference#tag/contracts",
href: "/reference#tag/gateway",
icon: <CodeIcon />,
name: "HTTP API",
},
Expand Down
2 changes: 1 addition & 1 deletion apps/portal/src/app/wallets/server/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Server wallets are wallets that are managed by your own application, like a trea

### Use an existing Server Wallet

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).
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).

### Create a new Server Wallet

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Send, monitor, and manage transactions. Send transactions from user or server wa

### Send raw transactions

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).
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).

- For server wallets, you can execute transactions with just your project secret key.
- 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.
Expand All @@ -74,7 +74,7 @@ Send, monitor, and manage transactions. Send transactions from user or server wa

### Send contract calls

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).
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).

- For server wallets, you can execute transactions with just your project secret key.
- 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.
Expand Down
Loading