Skip to content

Commit 52de7dd

Browse files
committed
fixed connect - ts SDK
1 parent 115d7c1 commit 52de7dd

File tree

17 files changed

+27
-28
lines changed

17 files changed

+27
-28
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/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>

apps/portal/src/app/react/v5/connecting-wallets/ui-components/page.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ The SDK supports 500+ wallets out of the box, all you need to pass is their id.
107107
title="Supported Wallets"
108108
icon={ComponentIcon}
109109
href="/connect/external-wallets"
110-
description="See all 500+ wallets supported by the Connect SDK"
110+
description="See all 500+ wallets supported by the TypeScript SDK"
111111
/>
112112

113113
</Stack>

0 commit comments

Comments
 (0)