7 lines
357 B
Bash
Executable File
7 lines
357 B
Bash
Executable File
#!/usr/bin/env bash
|
||
# Apply Elemental Imperium (33×33×6) wallet labels to config/pmm-soak-wallet-grid.json.
|
||
# Optional: --network-code CODE | --asn N (see scripts/lib/apply_elemental_imperium_wallet_labels.py)
|
||
set -euo pipefail
|
||
ROOT="$(cd "$(dirname "$0")/../.." && pwd)"
|
||
exec python3 "$ROOT/scripts/lib/apply_elemental_imperium_wallet_labels.py" "$@"
|