We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc6f18e commit ddddb47Copy full SHA for ddddb47
packages/service-utils/src/core/api.ts
@@ -136,6 +136,10 @@ export type ProjectService =
136
name: "nebula";
137
actions: never[];
138
}
139
+ | {
140
+ name: "engineCloud";
141
+ actions: never[];
142
+ }
143
| ProjectBundlerService
144
| ProjectEmbeddedWalletsService;
145
packages/service-utils/src/core/services.ts
@@ -74,6 +74,14 @@ export const SERVICE_DEFINITIONS = {
74
// all actions allowed
75
actions: [],
76
},
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
+ },
85
} as const;
86
87
export const SERVICE_NAMES = Object.keys(
0 commit comments