- package.json: cwusdc:provider-checks:with-monitor, value-propagation, fetch/enrich CMC chain1 - run-cwusdc-value-propagation.sh: strip pnpm-forwarded -- for monitor args - enrich-cmc-chain1-report-with-live-pool-catalog.py: merge live pool catalog into CMC report - Harden external-tracker / propagation / provider-check scripts and CMC sanity checker - Docs: MetaMask matrix optional automation; CWUSDC non-manual tasks cross-links - Refresh drift + live_inventory collected_at from latest cluster poll - gitignore: rpc-502-diagnostics evidence dumps under verification-evidence Validated: bash scripts/verify/run-all-validation.sh --skip-genesis Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
449 B
Bash
Executable File
12 lines
449 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Wrapper so `pnpm cwusdc:value-propagation -- --gecko-retries 8` works: pnpm forwards
|
|
# a literal "--" before script args, which argparse rejects unless stripped here.
|
|
set -euo pipefail
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
|
|
cd "$ROOT"
|
|
while [[ $# -gt 0 && "$1" == "--" ]]; do
|
|
shift
|
|
done
|
|
exec python3 "$SCRIPT_DIR/monitor-cwusdc-etherscan-value-propagation.py" "$@"
|