Skip to content

Commit 819bf53

Browse files
authored
Merge branch 'main' into rebrand-docs
2 parents e02d113 + 9d6739e commit 819bf53

File tree

18 files changed

+319
-383
lines changed

18 files changed

+319
-383
lines changed

.changeset/crazy-bushes-stick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

apps/dashboard/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"tiny-invariant": "^1.3.3",
8282
"use-debounce": "^10.0.5",
8383
"vaul": "^1.1.2",
84-
"zod": "3.25.62"
84+
"zod": "3.25.67"
8585
},
8686
"devDependencies": {
8787
"@biomejs/biome": "2.0.4",

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/client/NextSteps.tsx

Lines changed: 0 additions & 37 deletions
This file was deleted.

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/components/server/ClaimChainSection.tsx

Lines changed: 0 additions & 31 deletions
This file was deleted.

apps/dashboard/src/app/(app)/(dashboard)/(chain)/[chain_id]/(chainPage)/page.tsx

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ import { getClientThirdwebClient } from "@/constants/thirdweb-client.client";
33
import { getRawAccount } from "../../../../account/settings/getAccount";
44
import { getChain, getChainMetadata } from "../../utils";
55
import { BuyFundsSection } from "./components/client/BuyFundsSection";
6-
import NextSteps from "./components/client/NextSteps";
76
import { ChainOverviewSection } from "./components/server/ChainOverviewSection";
8-
import { ClaimChainSection } from "./components/server/ClaimChainSection";
97
import { ChainCTA } from "./components/server/cta-card";
108
import { ExplorersSection } from "./components/server/explorer-section";
119
import { FaucetSection } from "./components/server/FaucetSection";
@@ -60,11 +58,6 @@ export default async function Page(props: {
6058
{chain.services.filter((s) => s.enabled).length > 0 && (
6159
<SupportedProductsSection services={chain.services} />
6260
)}
63-
{/*Next Steps */}
64-
<NextSteps chain={chain} />
65-
66-
{/* Claim Chain */}
67-
{!chainMetadata && <ClaimChainSection />}
6861
</div>
6962
);
7063
}

apps/dashboard/src/app/(app)/(dashboard)/(chain)/components/server/products.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ import type { ChainSupportedService } from "@/types/chain";
1010

1111
export const products = [
1212
{
13-
description: "Pre-built contracts & deployment tools",
13+
description: "Create, deploy and manage smart contracts",
1414
icon: ContractIcon,
1515
id: "contracts",
1616
link: "https://thirdweb.com/explore",
1717
name: "Contracts",
1818
},
1919
{
20-
description: "Client-side SDKs for wallets and blockchain interactions",
20+
description: "Create and manage crypto wallets",
2121
icon: ConnectSDKIcon,
2222
id: "connect-sdk",
2323
link: "https://thirdweb.com/connect",
24-
name: "Connect SDK",
24+
name: "Wallets",
2525
},
2626
{
2727
description: "Performant and scalable RPC service",
@@ -35,24 +35,24 @@ export const products = [
3535
icon: EngineIcon,
3636
id: "engine",
3737
link: "https://thirdweb.com/engine",
38-
name: "Engine",
38+
name: "Transactions",
3939
},
4040
{
41-
description: "Account factory contracts, bundler & paymaster",
41+
description: "Enable gas sponsorship for seamless transactions",
4242
icon: SmartAccountIcon,
4343
id: "account-abstraction",
4444
link: "https://portal.thirdweb.com/connect/account-abstraction/overview",
4545
name: "Account Abstraction",
4646
},
4747
{
48-
description: "Point of sale solution for bridging, onramping & swapping",
48+
description: "Enable payments in any token on any chain",
4949
icon: PayIcon,
5050
id: "pay",
5151
link: "https://portal.thirdweb.com/connect/pay/overview",
52-
name: "Universal Bridge",
52+
name: "Payments",
5353
},
5454
{
55-
description: "Query, transform and analyze blockchain data",
55+
description: "Query and analyze blockchain data",
5656
icon: InsightIcon,
5757
id: "insight",
5858
link: "https://thirdweb.com/insight",

apps/dashboard/src/app/(app)/(dashboard)/support/page.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,25 +33,25 @@ const HELP_PRODUCTS = [
3333
"https://playground.thirdweb.com/connect/sign-in/button?tab=code",
3434
},
3535
{
36-
description: "Wallets, auth, and onchain interactions",
36+
description: "Create and manage crypto wallets",
3737
icon: WalletIcon,
38-
title: "Connect",
38+
title: "Wallets",
3939
viewAllUrl: "https://portal.thirdweb.com/connect",
4040
},
4141
{
42-
description: "Bridge and onramp tokens on any chain",
42+
description: "Enable payments on any tokens on any chain",
4343
icon: PayIcon,
44-
title: "Universal Bridge",
45-
viewAllUrl: "https://portal.thirdweb.com/pay",
44+
title: "Payments",
45+
viewAllUrl: "https://portal.thirdweb.com/pay/troubleshoot",
4646
},
4747
{
48-
description: "Reliable transactions and monitoring",
48+
description: "Perform read and write transactions onchain",
4949
icon: EngineIcon,
50-
title: "Engine",
51-
viewAllUrl: "https://portal.thirdweb.com/engine/v3",
50+
title: "Transactions",
51+
viewAllUrl: "https://portal.thirdweb.com/engine/v3/troubleshoot",
5252
},
5353
{
54-
description: "Blockchain data queries and transformations",
54+
description: "Query and analyze blockchain data",
5555
icon: InsightIcon,
5656
title: "Insight",
5757
viewAllUrl: "https://portal.thirdweb.com/insight",
@@ -117,7 +117,7 @@ export default async function SupportPage() {
117117
</header>
118118
</div>
119119
<section className="container flex flex-col gap-6">
120-
<h2 className="font-bold text-3xl">Learning Resources</h2>
120+
<h2 className="font-bold text-3xl">Support Articles</h2>
121121
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 md:gap-6 lg:grid-cols-3">
122122
{HELP_PRODUCTS.map((product) => (
123123
<Card className="relative col-span-1 bg-card" key={product.title}>

apps/nebula/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
"tailwind-merge": "^2.6.0",
3838
"tailwindcss-animate": "^1.0.7",
3939
"thirdweb": "workspace:*",
40-
"zod": "3.25.62"
40+
"zod": "3.25.67"
4141
},
4242
"devDependencies": {
4343
"@biomejs/biome": "2.0.4",

apps/playground-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"tailwind-merge": "^2.6.0",
3333
"thirdweb": "workspace:*",
3434
"use-debounce": "^10.0.5",
35-
"zod": "3.25.62"
35+
"zod": "3.25.67"
3636
},
3737
"devDependencies": {
3838
"@biomejs/biome": "2.0.4",

apps/wallet-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"tailwindcss-animate": "^1.0.7",
2222
"thirdweb": "workspace:*",
2323
"tiny-invariant": "^1.3.3",
24-
"zod": "3.25.62"
24+
"zod": "3.25.67"
2525
},
2626
"devDependencies": {
2727
"@biomejs/biome": "2.0.4",

0 commit comments

Comments
 (0)