From 601fa51f2fb9e897c259a9ab6834dd182bda3206 Mon Sep 17 00:00:00 2001 From: Nico Flaig Date: Tue, 28 May 2024 17:33:08 +0200 Subject: [PATCH] feat: enable debug apis by default --- packages/beacon-node/src/api/rest/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/beacon-node/src/api/rest/index.ts b/packages/beacon-node/src/api/rest/index.ts index fa4a52c9c014..e46d1ab6d9bd 100644 --- a/packages/beacon-node/src/api/rest/index.ts +++ b/packages/beacon-node/src/api/rest/index.ts @@ -15,8 +15,7 @@ export type BeaconRestApiServerOpts = Omit & { export const beaconRestApiServerOpts: BeaconRestApiServerOpts = { enabled: true, - // ApiNamespace "debug" is not turned on by default - api: ["beacon", "config", "events", "node", "validator", "lightclient"], + api: ["beacon", "config", "debug", "events", "node", "validator", "lightclient"], address: "127.0.0.1", port: 9596, cors: "*",