Skip to content

Commit 21389bb

Browse files
[Service-Utils] feat: Add engine-cloud service definition (#6526)
1 parent 4f51201 commit 21389bb

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

.changeset/sour-adults-open.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@thirdweb-dev/service-utils": patch
3+
---
4+
5+
Add engineCloud service

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)