From 8ba5f598f4649339babe658ed2f2f0b97a1bf823 Mon Sep 17 00:00:00 2001 From: Daniel Padrino Date: Tue, 7 Jul 2026 09:36:40 -0300 Subject: [PATCH] fix(minter-guard): restore whitelist.testnet.json until the jdt stack is retired The chain-5115 monitoring deployment (jdt-monitoring) still runs with GUARD_WHITELIST_FILE=/app/src/monitoringV2/config/whitelist.testnet.json. Since #44 deleted that file, images built from develop/main no longer contain it, so the container throws ENOENT in MinterGuardService.initialize at startup and crash-loops. Restore the empty whitelist (identical to its pre-#44 content) so the testnet instance starts again. Delete it together with the jdt stack teardown once the Citrea Testnet sunset reaches the infrastructure. --- src/monitoringV2/config/whitelist.testnet.json | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 src/monitoringV2/config/whitelist.testnet.json diff --git a/src/monitoringV2/config/whitelist.testnet.json b/src/monitoringV2/config/whitelist.testnet.json new file mode 100644 index 0000000..abdb6ec --- /dev/null +++ b/src/monitoringV2/config/whitelist.testnet.json @@ -0,0 +1,4 @@ +{ + "_comment": "Whitelist of approved minter addresses (lowercase). Empty = deny any new minter proposal, including bridges (bridge type is inferred from a trivial usd() view call and is therefore unsafe to exempt). Add legitimate proposals here via PR + redeploy before they pass the application period.", + "minters": [] +}