From 0eb39150f5df5134228d578852dbc695021ec09d Mon Sep 17 00:00:00 2001 From: Layne Haber Date: Wed, 11 Oct 2023 08:40:24 -0600 Subject: [PATCH] config: support propose service --- packages/agents/lighthouse/src/config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/agents/lighthouse/src/config.ts b/packages/agents/lighthouse/src/config.ts index 1e1858a688..5f2c347995 100644 --- a/packages/agents/lighthouse/src/config.ts +++ b/packages/agents/lighthouse/src/config.ts @@ -99,6 +99,7 @@ export const NxtpLighthouseConfigSchema = Type.Object({ relayerWaitTime: Type.Integer({ minimum: 0 }), proverPubMax: Type.Optional(Type.Integer({ minimum: 1, maximum: 10000 })), service: Type.Union([ + Type.Literal("propose"), Type.Literal("prover-pub"), Type.Literal("prover-sub"), Type.Literal("prover-func"),