Sync workspace: config, docs, scripts, CI, operator rules, and submodule pointers.

- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains
- Omit embedded publish git dirs and empty placeholders from index

Made-with: Cursor
This commit is contained in:
defiQUG
2026-04-12 06:12:20 -07:00
parent 6fb6bd3993
commit dbd517b279
2935 changed files with 327972 additions and 5533 deletions

View File

@@ -1,6 +1,6 @@
#!/usr/bin/env bash
# Remove tx-pool-min-score from validator configs (unsupported in some Besu versions).
# Then restart besu-validator on 1000-1004. Run from repo root; needs SSH to .10 and .11.
# Then restart besu-validator on 1000-1004. Run from repo root; needs SSH to r630-01 and r630-03.
set -euo pipefail
@@ -9,10 +9,10 @@ PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
[ -f "$PROJECT_ROOT/config/ip-addresses.conf" ] && source "$PROJECT_ROOT/config/ip-addresses.conf" 2>/dev/null || true
R630_01="${PROXMOX_R630_01:-192.168.11.11}"
ML110="${PROXMOX_ML110:-192.168.11.10}"
R630_03="${PROXMOX_R630_03:-192.168.11.13}"
USER="${PROXMOX_USER:-root}"
VALIDATORS=( "1000:$R630_01" "1001:$R630_01" "1002:$R630_01" "1003:$ML110" "1004:$ML110" )
VALIDATORS=( "1000:$R630_01" "1001:$R630_01" "1002:$R630_01" "1003:$R630_03" "1004:$R630_03" )
FAILED=0
for entry in "${VALIDATORS[@]}"; do