fixturenet-laconicd-stack/stack-orchestrator/stacks/fixturenet-laconicd/scripts/genesis.sh
nabarun fadebe363a Replace laconic2 with laconic and update genesis generation script (#5)
Part of [laconicd testnet validator enrollment](https://www.notion.so/laconicd-testnet-validator-enrollment-6fc1d3cafcc64fef8c5ed3affa27c675)
- Allow requests from any origin
- Replace `laconic2` with `laconic`
- Update `nitro-rpc-client` usage in genesis generation script

Co-authored-by: IshaVenikar <ishavenikar7@gmail.com>
Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
Reviewed-on: cerc-io/fixturenet-laconicd-stack#5
2024-07-23 12:26:14 +00:00

37 lines
1.3 KiB
Bash
Executable File

#!/bin/bash
# Exit on error
set -e
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
NODE_HOME="/root/.laconicd"
onboarding_state_file="$NODE_HOME/stage0-onboarding-state.json"
stage1_allocations_file="$NODE_HOME/stage1-allocations.json"
stage1_genesis_file="$NODE_HOME/config/genesis.json"
laconicd init $STAGE1_MONIKER --chain-id $CHAINID --default-denom photon
# Update onboarding module state with participants from stage0
participants=$(jq -c '.participants' $onboarding_state_file)
jq --argjson p "$participants" '.app_state.onboarding.participants = $p' "$stage1_genesis_file" > tmp.$$.json && mv tmp.$$.json "$stage1_genesis_file"
# Disable bank module transfers
jq '.app_state["bank"]["params"]["default_send_enabled"]=false' "$stage1_genesis_file" > tmp.$$.json && mv tmp.$$.json "$stage1_genesis_file"
# Read and assign allocations
jq -c '.[]' "$stage1_allocations_file" | while IFS= read -r line; do
cosmos_address=$(jq -r '.cosmos_address' <<< "$line")
balance=$(jq -r '.balance' <<< "$line")
# Add a genesis account for participant's laconic address with required balance
laconicd genesis add-genesis-account $cosmos_address ${balance}photon
done
# Ensure that resulting genesis file is valid
laconicd genesis validate