Skip to content

Commit d82a4cd

Browse files
committed
Fix Portal > Contracts overview page links
1 parent e2754df commit d82a4cd

File tree

9 files changed

+12
-11
lines changed

9 files changed

+12
-11
lines changed

apps/dashboard/src/pages/sdk.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Web3SDK: ThirdwebNextPage = () => {
6161
title="Powerful SDKs for every stack"
6262
description="Build web3 applications that can interact with your smart contracts using our powerful SDKs and CLI."
6363
buttonText="Get started"
64-
buttonLink="https://portal.thirdweb.com/contracts/interact/overview"
64+
buttonLink="https://portal.thirdweb.com/contracts"
6565
image={require("../../public/assets/product-pages/sdk/hero.png")}
6666
gradient="linear-gradient(147.15deg, #410AB6 30.17%, #5BFF40 100.01%)"
6767
>

apps/portal/redirects.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -798,16 +798,17 @@ const contractRedirects = {
798798
"/publish/getting-started": "/contracts/publish/publish-contract",
799799
"/publish/deployment-options": "/contracts/publish/publish-options",
800800
"/publish/get-featured-on-explore": "/contracts/publish/overview",
801-
"/sdk": "/contracts/interact/overview",
802-
"/sdk/how-it-works": "/contracts/interact/overview",
803-
"/sdk/getting-started": "/contracts/interact/overview",
801+
"/sdk": "/contracts",
802+
"/sdk/how-it-works": "/contracts",
803+
"/sdk/getting-started": "/contracts",
804804
//design documentation
805805
"/contracts/design/Drop": "/contracts/design-docs/drop",
806806
"/contracts/design/Marketplace": "/contracts/design-docs/marketplace",
807807
"/contracts/design/SignatureMint": "/contracts/design-docs/signature-mint",
808808
"/contracts/design/Multiwrap": "/contracts/design-docs/multiwrap",
809809
"/contracts/design/Pack": "/contracts/design-docs/pack",
810810
"/contracts/design/SignatureDrop": "/contracts",
811+
"/interact": "/contracts",
811812
};
812813

813814
const infrastructureRedirects = {

apps/portal/src/app/connect/in-app-wallet/guides/interact-blockchain/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const metadata = createMetadata({
2222

2323
# Interact with the blockchain
2424

25-
One connected, in-app wallets can be used alongside the [Contract SDK](/contracts/interact/overview) to interact with the blockchain.
25+
One connected, in-app wallets can be used alongside the [Contract SDK](/contracts) to interact with the blockchain.
2626

2727
## Initialize the SDK With Your Wallet
2828

apps/portal/src/app/contracts/explore/pre-built-contracts/nft-drop/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@ const sdk = useSDK(
198198

199199
## Interact with your contract
200200

201-
For easy-to-use code snippets for your contract, view the Code Snippets on your contract's dashboard or visit the [SDK documentation](/contracts/interact/overview).
201+
For easy-to-use code snippets for your contract, view the Code Snippets on your contract's dashboard or visit the [SDK documentation](/contracts).

apps/portal/src/app/contracts/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Trusted, modular smart contracts that can be deployed securely on any EVM chain.
2020
- [Build:](/contracts/build/overview) Write your own smart contracts
2121
- [Deploy:](/contracts/deploy/overview) Contract deployment built for any use-case
2222
- [Publish:](/contracts/publish/overview) Publish your contracts onchain
23-
- [Interact:](/contracts/interact/overview) Integrate smart contract interactions directly into your app
23+
- [Interact:](/contracts) Integrate smart contract interactions directly into your app
2424

2525
### Templates
2626

apps/portal/src/app/glossary/gas/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Gas fees are typically paid in the currency that is native to the blockchain you
77

88
While using thirdweb is free, you will need to cover the cost of performing actions that update the blockchain's state.
99

10-
This includes actions performed via the thirdweb [dashboard](https://thirdweb.com/team), our [SDKs](/contracts/interact/overview), or any of our other products, including:
10+
This includes actions performed via the thirdweb [dashboard](https://thirdweb.com/team), our [SDKs](/contracts), or any of our other products, including:
1111

1212
- Deploying smart contracts
1313
- [Lazy-minting](/glossary/lazy-minting) the metadata of your NFTs

apps/portal/src/app/glossary/ipfs/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ To secure content on IPFS forever, a node must [pin](https://docs.ipfs.tech/conc
99
[Learn more about how IPFS works](https://ipfs.tech/#how).
1010

1111
To read data from IPFS, an [IPFS Gateway](https://docs.ipfs.tech/concepts/ipfs-gateway/) is required. This allows you to access data from the IPFS protocol on browsers and other HTTP clients, such
12-
as when building an application using our [SDK](/contracts/interact/overview).
12+
as when building an application using our [SDK](/contracts).
1313

1414
Out of the box, all of our tools use [Storage](/storage) to store, pin, and retrieve data from IPFS via a gateway, currently powered by [Pinata](https://pinata.cloud/) under the hood.

apps/portal/src/app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ function ContractsSection() {
318318
title="Interact"
319319
description="Add smart contract interactions in your app"
320320
icon={ContractInteractIcon}
321-
href="/contracts/interact/overview"
321+
href="/contracts"
322322
/>
323323
<ArticleCardIndex
324324
title="Explore"

apps/portal/src/app/react/v5/in-app-wallet/how-to/interact-blockchain/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export const metadata = createMetadata({
2222

2323
# Interact with the blockchain
2424

25-
One connected, in-app wallets can be used alongside the [Contract SDK](/contracts/interact/overview) to interact with the blockchain.
25+
One connected, in-app wallets can be used alongside the [Contract SDK](/contracts) to interact with the blockchain.
2626

2727
## Initialize the SDK With Your Wallet
2828

0 commit comments

Comments
 (0)