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 d3f7884 commit f6a94afCopy full SHA for f6a94af
packages/service-utils/src/core/api.ts
@@ -132,6 +132,10 @@ export type ProjectService =
132
name: "nebula";
133
actions: never[];
134
}
135
+ | {
136
+ name: "engineCloud";
137
+ actions: never[];
138
+ }
139
| ProjectBundlerService
140
| ProjectEmbeddedWalletsService;
141
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