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>
9 lines
281 B
Bash
Executable File
9 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Read-only readiness gate for cW source-of-truth, liquidity/indexing, bridge, and tracker status.
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
exec python3 scripts/verify/check-cw-full-operational-readiness.py "$@"
|