Files
proxmox/scripts/verify/run-cwusdc-value-propagation.sh
defiQUG ee0bffb3cd
Some checks failed
Deploy to Phoenix / deploy (push) Has been skipped
Deploy to Phoenix / deploy-atomic-swap-dapp (push) Has been skipped
Deploy to Phoenix / cloudflare (push) Has been skipped
Deploy to Phoenix / validate (push) Failing after 1s
feat(cwusdc): propagation monitor hooks, CMC enrich, pnpm scripts, inventory refresh
- 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>
2026-05-11 21:23:52 -07:00

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" "$@"