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

@@ -100,12 +100,16 @@ success "Group 3 complete"
echo ""
# Group 4: New Sentry Nodes (ml110)
log "Group 4: New Sentry Nodes (4 nodes - Pending Besu Installation)"
for vmid in 1505 1506 1507 1508; do
log "Group 4: New Sentry Nodes (6 nodes - Pending Besu Installation)"
for vmid in 1505 1506 1507 1508 1509 1510; do
if [ $vmid -le 1506 ]; then
ip="${NETWORK_PREFIX:-192.168.11}.$((65 + vmid - 1505))"
else
elif [ $vmid -le 1508 ]; then
ip="${NETWORK_PREFIX:-192.168.11}.$((140 + vmid - 1507))"
elif [ $vmid -eq 1509 ]; then
ip="${IP_BESU_SENTRY_THIRDWEB_1:-192.168.11.219}"
else
ip="${IP_BESU_SENTRY_THIRDWEB_2:-192.168.11.220}"
fi
warn "Skipping VMID $vmid (Besu not installed yet)"
done
@@ -113,14 +117,14 @@ echo ""
# Group 5: New RPC Nodes (r630-01)
log "Group 5: New RPC Nodes (6 nodes - Pending Besu Installation)"
for vmid in 2500 2501 2502 2503 2504 2505; do
for vmid in 2420 2430 2440 2460 2470 2480; do
case $vmid in
2500) ip="${IP_SERVICE_172:-${IP_SERVICE_172:-192.168.11.172}}" ;;
2501) ip="${IP_SERVICE_173:-${IP_SERVICE_173:-192.168.11.173}}" ;;
2502) ip="${IP_SERVICE_174:-${IP_SERVICE_174:-192.168.11.174}}" ;;
2503) ip="${IP_RPC_246:-${IP_RPC_246:-${IP_RPC_246:-192.168.11.246}}}" ;;
2504) ip="${IP_RPC_247:-${IP_RPC_247:-${IP_RPC_247:-192.168.11.247}}}" ;;
2505) ip="${IP_RPC_248:-${IP_RPC_248:-${IP_RPC_248:-192.168.11.248}}}" ;;
2420) ip="${RPC_ALLTRA_1:-192.168.11.172}" ;;
2430) ip="${RPC_ALLTRA_2:-192.168.11.173}" ;;
2440) ip="${RPC_ALLTRA_3:-192.168.11.174}" ;;
2460) ip="${RPC_HYBX_1:-192.168.11.246}" ;;
2470) ip="${RPC_HYBX_2:-192.168.11.247}" ;;
2480) ip="${RPC_HYBX_3:-192.168.11.248}" ;;
esac
warn "Skipping VMID $vmid (Besu not installed yet)"
done
@@ -134,8 +138,7 @@ log " Non-Besu nodes: 3 nodes"
log "======================================="
echo ""
log "Next Steps:"
log " 1. Install Besu on new nodes (VMIDs: 1505-1508, 2500-2505)"
log " 1. Install Besu on new nodes (VMIDs: 1505-1510, 2420-2480)"
log " 2. Verify node lists are in /opt/besu/config/"
log " 3. Restart Besu services if needed"
log " 4. Run verification: ./scripts/verify-node-list-deployment.sh"