Skip to content

Commit ddddb47

Browse files
Reapply "[Service-Utils] feat: Add engine-cloud service definition (#6526)"
This reverts commit d24ff14.
1 parent dc6f18e commit ddddb47

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

packages/service-utils/src/core/api.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,10 @@ export type ProjectService =
136136
name: "nebula";
137137
actions: never[];
138138
}
139+
| {
140+
name: "engineCloud";
141+
actions: never[];
142+
}
139143
| ProjectBundlerService
140144
| ProjectEmbeddedWalletsService;
141145

packages/service-utils/src/core/services.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,14 @@ export const SERVICE_DEFINITIONS = {
7474
// all actions allowed
7575
actions: [],
7676
},
77+
engineCloud: {
78+
name: "engineCloud",
79+
title: "Server wallets",
80+
description:
81+
"Server wallets with high transaction throughput and low latency",
82+
// all actions allowed
83+
actions: [],
84+
},
7785
} as const;
7886

7987
export const SERVICE_NAMES = Object.keys(

0 commit comments

Comments
 (0)