Skip to content

Commit 0e0b075

Browse files
committed
add nebula service definition
1 parent 512eeb5 commit 0e0b075

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.changeset/eight-poems-end.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+
Added nebula service scope

apps/dashboard/src/components/settings/ApiKeys/validations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,4 +149,4 @@ export type ApiKeyPayConfigValidationSchema = z.infer<
149149
>;
150150

151151
// FIXME: Remove
152-
export const HIDDEN_SERVICES = ["relayer", "chainsaw"];
152+
export const HIDDEN_SERVICES = ["relayer", "chainsaw", "nebula"];

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,13 @@ export const SERVICE_DEFINITIONS = {
6565
// all actions allowed
6666
actions: [],
6767
},
68+
nebula: {
69+
name: "nebula",
70+
title: "Nebula",
71+
description: "Nebula services",
72+
// all actions allowed
73+
actions: [],
74+
},
6875
} as const;
6976

7077
export const SERVICE_NAMES = Object.keys(

0 commit comments

Comments
 (0)