Configure chain ID in stage1 genesis scripts

This commit is contained in:
Nabarun 2024-08-10 20:10:49 +05:30 committed by Prathamesh Musale
parent 74d875f86b
commit e60a2c1897
5 changed files with 10 additions and 2 deletions

View File

@ -79,6 +79,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

@ -35,6 +35,8 @@ echo "Copied over stage1 allocations json file to mount dir"
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

@ -56,6 +56,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

@ -63,6 +63,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"
stage1_participants_file="$NODE_HOME/stage1-participants.json"