File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
apps/dashboard/src/components/settings/ApiKeys
packages/service-utils/src/core Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -125,4 +125,4 @@ export type ApiKeyPayConfigValidationSchema = z.infer<
125125> ;
126126
127127// FIXME: Remove
128- export const HIDDEN_SERVICES = [ "relayer" , "chainsaw" ] ;
128+ export const HIDDEN_SERVICES = [ "relayer" , "chainsaw" , "engineCloud" ] ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
7987export const SERVICE_NAMES = Object . keys (
You can’t perform that action at this time.
0 commit comments