diff --git a/.changeset/good-elephants-press.md b/.changeset/good-elephants-press.md new file mode 100644 index 0000000000..5d1e49eff5 --- /dev/null +++ b/.changeset/good-elephants-press.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +Fix deprecated links diff --git a/packages/cli/README.md b/packages/cli/README.md index 46c046bd96..7d5825fa2d 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -62,7 +62,7 @@ Deploying released contracts give deployers access to automatic SDKs to integrat npx thirdweb@latest detect ``` -As you're developing your contracts, you may want to implement [Extensions](https://portal.thirdweb.com/extensions) to unlock functionality on the SDKs (ie. nft minting with automatic upload to IPFS) and the dashboard (ie. generated UI to manage permissions). This command will show what extensions were detected on your contract, unlocking the corresponding functionality on the SDKs and dashboard. +As you're developing your contracts, you may want to implement [Extensions](https://portal.thirdweb.com/contractkit) to unlock functionality on the SDKs (ie. nft minting with automatic upload to IPFS) and the dashboard (ie. generated UI to manage permissions). This command will show what extensions were detected on your contract, unlocking the corresponding functionality on the SDKs and dashboard. --- diff --git a/packages/cli/src/common/feature-detector.ts b/packages/cli/src/common/feature-detector.ts index ebe2713255..8cf0d0e723 100644 --- a/packages/cli/src/common/feature-detector.ts +++ b/packages/cli/src/common/feature-detector.ts @@ -72,13 +72,13 @@ export async function detectExtensions(options: any) { const enabledFeatures: Feature[] = features.enabledFeatures.map( (feature) => ({ name: feature.name, - reference: `https://portal.thirdweb.com/extensions/${feature.name.toLowerCase()}`, + reference: `https://portal.thirdweb.com/interfaces/${feature.name.toLowerCase()}`, }), ); const suggestedFeatures: Feature[] = features.suggestedFeatures.map( (feature) => ({ name: feature.name, - reference: `https://portal.thirdweb.com/extensions/${feature.name.toLowerCase()}`, + reference: `https://portal.thirdweb.com/interfaces/${feature.name.toLowerCase()}`, }), );