From d3d3790ccb14644215a0ff9081f6157ee86165c6 Mon Sep 17 00:00:00 2001 From: MoonBoi9001 Date: Mon, 11 May 2026 20:55:17 +0800 Subject: [PATCH] fix(ignition): declare recurringCollectorAddress parameter slot The SubgraphService deployment script reads a recurringCollectorAddress parameter at deploy time, but neither the default nor the local-network parameter file lists it. Any deployment using those files fails when the parameter can't be found. Add the slot to both. Co-Authored-By: Claude Opus 4.7 (1M context) --- .../subgraph-service/ignition/configs/protocol.default.json5 | 3 ++- .../ignition/configs/protocol.localNetwork.json5 | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/packages/subgraph-service/ignition/configs/protocol.default.json5 b/packages/subgraph-service/ignition/configs/protocol.default.json5 index aedf53531..b48120ee7 100644 --- a/packages/subgraph-service/ignition/configs/protocol.default.json5 +++ b/packages/subgraph-service/ignition/configs/protocol.default.json5 @@ -23,7 +23,8 @@ "disputeManagerProxyAdminAddress": "", "subgraphServiceProxyAddress": "", "subgraphServiceProxyAdminAddress": "", - "graphTallyCollectorAddress": "" + "graphTallyCollectorAddress": "", + "recurringCollectorAddress": "" }, "DisputeManager": { "disputePeriod": 2419200, diff --git a/packages/subgraph-service/ignition/configs/protocol.localNetwork.json5 b/packages/subgraph-service/ignition/configs/protocol.localNetwork.json5 index 867873db1..05ee28302 100644 --- a/packages/subgraph-service/ignition/configs/protocol.localNetwork.json5 +++ b/packages/subgraph-service/ignition/configs/protocol.localNetwork.json5 @@ -23,7 +23,8 @@ "disputeManagerProxyAdminAddress": "", "subgraphServiceProxyAddress": "", "subgraphServiceProxyAdminAddress": "", - "graphTallyCollectorAddress": "" + "graphTallyCollectorAddress": "", + "recurringCollectorAddress": "" }, "DisputeManager": { "disputePeriod": 7200, // 2 hours = 7200 seconds