9 lines
349 B
Bash
9 lines
349 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Wrapper: run smom-dbis-138 mint-cw script from repo root.
|
||
|
|
# Usage: ./scripts/mint-cw-on-chain.sh <CHAIN_NAME> [amount_human]
|
||
|
|
|
||
|
|
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/mint-cw-on-chain.sh" "$@"
|