From 55fba51dabac300f8789db8936f68ddffb11a46d Mon Sep 17 00:00:00 2001 From: joaquim-verges Date: Fri, 30 May 2025 00:33:15 +0000 Subject: [PATCH] [Dashboard] Unhide Engine Cloud service (#7215) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on updating service descriptions and modifying hidden services in the codebase. ### Detailed summary - Updated the description of the `insight` service to "Indexed data for any EVM chain." - Changed the title of the `engineCloud` service from "Server wallets" to "Engine Cloud." - Updated the description of the `engineCloud` service to "Transaction API and Server wallets with high transaction throughput and low latency." - Removed `engineCloud` from the `HIDDEN_SERVICES` array. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` ## Summary by CodeRabbit - **Chores** - Updated service descriptions for improved clarity. - Refined metadata for select services. - **Refactor** - Adjusted visibility of certain services in API key settings. --- .changeset/lucky-jobs-relate.md | 5 +++++ .../src/components/settings/ApiKeys/validations.ts | 2 +- packages/service-utils/src/core/services.ts | 6 +++--- 3 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .changeset/lucky-jobs-relate.md diff --git a/.changeset/lucky-jobs-relate.md b/.changeset/lucky-jobs-relate.md new file mode 100644 index 00000000000..809cababab6 --- /dev/null +++ b/.changeset/lucky-jobs-relate.md @@ -0,0 +1,5 @@ +--- +"@thirdweb-dev/service-utils": patch +--- + +Update service descriptions diff --git a/apps/dashboard/src/components/settings/ApiKeys/validations.ts b/apps/dashboard/src/components/settings/ApiKeys/validations.ts index 8e091917121..27108698e62 100644 --- a/apps/dashboard/src/components/settings/ApiKeys/validations.ts +++ b/apps/dashboard/src/components/settings/ApiKeys/validations.ts @@ -147,4 +147,4 @@ export type ApiKeyPayConfigValidationSchema = z.infer< >; // FIXME: Remove -export const HIDDEN_SERVICES = ["relayer", "chainsaw", "engineCloud"]; +export const HIDDEN_SERVICES = ["relayer", "chainsaw"]; diff --git a/packages/service-utils/src/core/services.ts b/packages/service-utils/src/core/services.ts index 2c539f3edac..928a59731c8 100644 --- a/packages/service-utils/src/core/services.ts +++ b/packages/service-utils/src/core/services.ts @@ -62,7 +62,7 @@ export const SERVICE_DEFINITIONS = { insight: { name: "insight", title: "Insight", - description: "Insight services", + description: "Indexed data for any EVM chain", // all actions allowed actions: [], }, @@ -76,9 +76,9 @@ export const SERVICE_DEFINITIONS = { }, engineCloud: { name: "engineCloud", - title: "Server wallets", + title: "Engine Cloud", description: - "Server wallets with high transaction throughput and low latency", + "Transaction API and Server wallets with high transaction throughput and low latency", // all actions allowed actions: [], },