Files
explorer-monorepo/scripts/verify-vmid5000-all.sh
defiQUG bdae5a9f6e feat: explorer API, wallet, CCIP scripts, and config refresh
- Backend REST/gateway/track routes, analytics, Blockscout proxy paths.
- Frontend wallet and liquidity surfaces; MetaMask token list alignment.
- Deployment docs, verification scripts, address inventory updates.

Check: go build ./... under backend/ (pass).
Made-with: Cursor
2026-04-07 23:22:12 -07:00

19 lines
634 B
Bash
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/usr/bin/env bash
# Run all VMID 5000 deployment checks: explorer frontend, Blockscout API, Snap site,
# Visual Command Center, and Mission Control endpoints.
# Usage: ./verify-vmid5000-all.sh [BASE_URL]
# BASE_URL defaults to https://explorer.d-bis.org
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
BASE_URL="${1:-https://explorer.d-bis.org}"
echo "=============================================="
echo "VMID 5000 full explorer verification"
echo "BASE_URL=$BASE_URL"
echo "=============================================="
echo ""
bash "$SCRIPT_DIR/verify-explorer-api-access.sh" "$BASE_URL"