11 lines
488 B
Bash
11 lines
488 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Wrapper: run smom-dbis-138/scripts/create-pmm-full-mesh-chain138.sh from repo root.
|
||
|
|
# Usage: ./scripts/create-pmm-full-mesh-chain138.sh
|
||
|
|
# MESH_ONLY_C_STAR=1 = only c* vs c* pairs (no official USDT/USDC)
|
||
|
|
# DRY_RUN=1 = print actions only
|
||
|
|
|
||
|
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||
|
|
SMOM="${REPO_ROOT}/smom-dbis-138"
|
||
|
|
[ -d "$SMOM" ] || { echo "Not found: $SMOM"; exit 1; }
|
||
|
|
exec bash "$SMOM/scripts/create-pmm-full-mesh-chain138.sh" "$@"
|