Skip to content

Commit ecf6dbf

Browse files
committed
Update portal label to TypeScript SDK (#7658)
``` <!-- ## title your PR with this format: "[SDK/Dashboard/Portal] Feature/Fix: Concise title for the changes" [Portal] Fix: Update SDK title for TypeScript reference pages If you did not copy the branch name from Linear, paste the issue tag here (format is TEAM-0000): ## Notes for the reviewer Updates the SDK title displayed on TypeScript reference pages from "Connect SDK" to "TypeScript SDK" for improved clarity and accuracy. ## How to test Navigate to any `/references/typescript/v*/` page (e.g., `/references/typescript/v5/`). Verify the header displays "TypeScript SDK". --> ``` --- **Open Background Agent:** [Web](https://www.cursor.com/agents?id=bc-2dec36af-4b62-431c-b277-891c1b46bb48) · [Cursor](https://cursor.com/background-agent?bcId=bc-2dec36af-4b62-431c-b277-891c1b46bb48) [Slack Thread](https://thirdwebdev.slack.com/archives/C04DYC3G5NZ/p1753110978408999?thread_ts=1753110978.408999&cid=C04DYC3G5NZ) Learn more about [Background Agents](https://docs.cursor.com/background-agents) <!-- start pr-codex --> --- ## PR-Codex overview This PR focuses on renaming references from `Connect SDK` to `TypeScript SDK` and `thirdweb SDK` across multiple files in the project, enhancing clarity and consistency in the documentation and codebase. ### Detailed summary - Updated `label` from `Connect SDKs` to `thirdweb SDKs`. - Changed `name` from `Connect SDK` to `TypeScript SDK`. - Modified `sdkTitle` from `Connect SDK` to `TypeScript SDK`. - Adjusted example descriptions and titles to reflect `TypeScript SDK`. - Updated installation instructions to refer to `TypeScript SDK`. - Revised descriptions related to wallet support to mention `thirdweb SDKs`. - Changed references in guides and documentation from `Connect SDK` to `TypeScript SDK`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex --> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Updated SDK naming from "Connect SDK" to "TypeScript SDK" and "thirdweb SDK" across documentation, guides, UI labels, and sidebar links for improved clarity and consistency. * **Chores** * Removed the "Engine" API link from the main navigation header. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 01daace commit ecf6dbf

File tree

19 files changed

+28
-33
lines changed

19 files changed

+28
-33
lines changed

apps/dashboard/src/@/components/contracts/code-overview.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ export const CodeOverview: React.FC<CodeOverviewProps> = ({
661661
rel="noopener noreferrer"
662662
target="_blank"
663663
>
664-
Connect SDK
664+
thirdweb SDK
665665
</UnderlineLink>{" "}
666666
in your applications. This will ensure account contracts are
667667
deployed for your users only when they need it.

apps/dashboard/src/app/(app)/(dashboard)/tools/transaction-simulator/components/TransactionSimulator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ ${Object.keys(populatedTransaction)
308308
rel="noopener noreferrer"
309309
target="_blank"
310310
>
311-
Connect SDK example
311+
TypeScript SDK example
312312
</a>
313313
<CodeClient code={state.codeExample} lang="ts" />
314314
</div>

apps/dashboard/src/app/(app)/team/[team_slug]/(team)/~/support/_components/contact-forms/connect/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const PROBLEM_AREAS: ProblemAreaItem[] = [
6969
<DescriptionInputWrapper />
7070
</>
7171
),
72-
label: "Connect SDKs",
72+
label: "thirdweb SDKs",
7373
},
7474
{
7575
component: (

apps/dashboard/src/app/(app)/team/components/Analytics/EmptyState.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ export function EmptyState() {
2222
<AnimatedIcons />
2323
<div className="flex flex-col gap-0.5 text-center">
2424
<h3 className="font-semibold text-2xl text-foreground">
25-
Get Started with the Connect SDK
25+
Get Started with the TypeScript SDK
2626
</h3>
2727
<p className="text-base text-muted-foreground">
28-
Add the Connect SDK to your app to start collecting analytics.
28+
Add the TypeScript SDK to your app to start collecting analytics.
2929
</p>
3030
</div>
3131
<div className="flex flex-wrap items-center justify-center gap-2">

apps/portal/src/app/Header.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,6 @@ export const connectLinks: Array<{
123123
] as const;
124124

125125
const apisLinks = [
126-
{
127-
href: "https://engine.thirdweb.com/reference",
128-
name: "Engine",
129-
},
130126
{
131127
href: "https://insight.thirdweb.com/reference",
132128
name: "Insight",

apps/portal/src/app/contracts/explore/pre-built-contracts/account-factory/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ This contract includes the following extensions:
3636

3737
## Use Cases & Examples
3838

39-
Use the `AccountFactory` contract alongside the [Connect SDK](/connect/account-abstraction) to easily use account abstraction in your projects:
39+
Use the `AccountFactory` contract alongside the [thirdweb SDK](/connect/account-abstraction) to easily use account abstraction in your projects:
4040

4141
- [React Guide](/connect/account-abstraction/guides/react)
4242
- [Typescript Guide](/connect/account-abstraction/guides/typescript)

apps/portal/src/app/contracts/explore/pre-built-contracts/managed-account-factory/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ This contract includes the following extensions:
4242

4343
## Use Cases & Examples
4444

45-
Use the `ManagedAccountFactory` contract alongside the [Connect SDK](/connect/account-abstraction) to easily use account abstraction in your projects:
45+
Use the `ManagedAccountFactory` contract alongside the [thirdweb SDK](/connect/account-abstraction) to easily use account abstraction in your projects:
4646

4747
- [React Guide](/connect/account-abstraction/guides/react)
4848
- [Typescript Guide](/connect/account-abstraction/guides/typescript)

apps/portal/src/app/engine/v2/features/relayers/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The relayer will be assigned a URL in this format: `https://<engine_url>/relayer
5757

5858
## Submit a meta transaction from your app frontend
5959

60-
Use the [Connect SDK](/react) to prompt the user to sign transactions and send it this relayer.
60+
Use the [TypeScript SDK]](/react) to prompt the user to sign transactions and send it this relayer.
6161

6262
First wrap your app with `<ThirdwebProvider>`:
6363

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export const sidebar: SideBar = {
2828
links: [
2929
{
3030
href: "/connect",
31-
name: "Connect SDK",
31+
name: "TypeScript SDK",
3232
},
3333
{
3434
href: `${storageSlug}/how-to-use-storage/upload-files-to-ipfs`,

apps/portal/src/app/pay/guides/cross-chain-swapping/page.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ In this guide, we'll show you how to purchase 10 USDC on Optimism in Typescript.
2727
---
2828

2929
<Steps>
30-
<Step title='Install the Connect SDK'>
30+
<Step title='Install the TypeScript SDK'>
3131
<InstallTabs
3232
npm="npm i thirdweb"
3333
yarn="yarn add thirdweb"
3434
pnpm="pnpm i thirdweb"
3535
/>
3636
<Step title='Get Your Client ID'>
3737

38-
Log in to the [thirdweb dashboard](https://thirdweb.com/team). Click on Create New > Project to get your **Client ID**. You'll need your Client ID to interact with the Connect SDK.
38+
Log in to the [thirdweb dashboard](https://thirdweb.com/team). Click on Create New > Project to get your **Client ID**. You'll need your Client ID to interact with the TypeScript SDK.
3939

4040
</Step>
4141
</Step>

0 commit comments

Comments
 (0)