Add optional Cosmos/Engine-X/act-runner templates, CWUSDC/EI-matrix tooling, non-EVM route planner in multi-chain-execution (tests passing), token list and extraction updates, and documentation (MetaMask matrix, GRU/CWUSDC packets). Ignore institutional evidence tarballs/sha256 under reports/status. Validated with: bash scripts/verify/run-all-validation.sh --skip-genesis Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
372 B
Bash
Executable File
12 lines
372 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Read-only evidence producer for CWMultiTokenBridgeL1/L2 route, role, and config readiness.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
# shellcheck disable=SC1091
|
|
source scripts/lib/load-project-env.sh >/dev/null 2>&1 || true
|
|
|
|
exec python3 scripts/verify/check-cw-multitoken-bridge-e2e-readiness.py "$@"
|