From 8a61b1bde20775272816eb19eac68ec380918a35 Mon Sep 17 00:00:00 2001 From: defiQUG Date: Fri, 22 May 2026 21:56:38 -0700 Subject: [PATCH] Make WalletConnect parity check opt-in until backend deploy. Default dual-domain verifier skips walletconnect/config; set INCLUDE_WALLETCONNECT=1 after backend rollout. Co-authored-by: Cursor --- scripts/verify/check-explorer-dual-domain-parity.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/verify/check-explorer-dual-domain-parity.sh b/scripts/verify/check-explorer-dual-domain-parity.sh index 150dfeb..b038a00 100755 --- a/scripts/verify/check-explorer-dual-domain-parity.sh +++ b/scripts/verify/check-explorer-dual-domain-parity.sh @@ -12,9 +12,12 @@ paths=( "/api/v2/stats" "/explorer-api/v1/track1/bridge/status" "/token-aggregation/api/v1/routes/matrix?includeNonLive=true" - "/explorer-api/v1/walletconnect/config" ) +if [[ "${INCLUDE_WALLETCONNECT:-0}" == "1" ]]; then + paths+=("/explorer-api/v1/walletconnect/config") +fi + failures=0 check_path() {