Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,10 @@ import { z } from "zod";
import { projectDomainsSchema, projectNameSchema } from "../validations";

const ALL_PROJECT_SERVICES = SERVICES.filter(
(srv) => srv.name !== "relayer" && srv.name !== "chainsaw",
(srv) =>
srv.name !== "relayer" &&
srv.name !== "chainsaw" &&
srv.name !== "engineCloud", // TODO enable once API server is out
);

export type CreateProjectPrefillOptions = {
Expand Down
4 changes: 0 additions & 4 deletions packages/service-utils/src/core/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,6 @@ export type ProjectService =
name: "nebula";
actions: never[];
}
| {
name: "engineCloud";
actions: never[];
}
| ProjectBundlerService
| ProjectEmbeddedWalletsService;

Expand Down
8 changes: 0 additions & 8 deletions packages/service-utils/src/core/services.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,6 @@ export const SERVICE_DEFINITIONS = {
// all actions allowed
actions: [],
},
engineCloud: {
name: "engineCloud",
title: "Server wallets",
description:
"Server wallets with high transaction throughput and low latency",
// all actions allowed
actions: [],
},
} as const;

export const SERVICE_NAMES = Object.keys(
Expand Down
Loading