Configure chain ID in stage1 genesis script

This commit is contained in:
Nabarun 2024-08-10 20:10:49 +05:30
parent 20236ddab8
commit 330c72134c
2 changed files with 4 additions and 2 deletions

View File

@ -55,6 +55,8 @@ echo "Calculated allocations for stage 1 chain"
docker run -it \
-v ./$STAGE1_GENESIS_DIR:/root/.laconicd \
-v ./scripts:/scripts \
-e CHAINID=$CHAINID \
-e STAGE1_MONIKER=$MONIKER \
cerc/laconicd:local bash -c "/scripts/genesis.sh"
# Copy over the genesis file to output folder

View File

@ -6,8 +6,8 @@ set -u
# Note: Needs to be run in a docker container with image cerc/laconicd:local
CHAINID="laconic_9000-1"
STAGE1_MONIKER=localtestnet-stage-1
CHAINID=${CHAINID:-"laconic_9000-1"}
STAGE1_MONIKER=${MONIKER:-"localtestnet-stage-1"}
NODE_HOME="/root/.laconicd"
onboarding_state_file="$NODE_HOME/stage0-onboarding-state.json"