Skip to content

Commit

Permalink
[CLI] Fix deprecated links (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
nachoiacovino committed Dec 14, 2022
1 parent ccb4ce8 commit af85389
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/good-elephants-press.md
@@ -0,0 +1,5 @@
---
"thirdweb": patch
---

Fix deprecated links
2 changes: 1 addition & 1 deletion packages/cli/README.md
Expand Up @@ -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.

---

Expand Down
4 changes: 2 additions & 2 deletions packages/cli/src/common/feature-detector.ts
Expand Up @@ -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()}`,
}),
);

Expand Down

0 comments on commit af85389

Please sign in to comment.