Prathamesh Musale
eef72ec9c3
Part of [Create a public laconicd testnet](https://www.notion.so/Create-a-public-laconicd-testnet-896a11bdd8094eff8f1b49c0be0ca3b8) - Add instructions to setup stage2 laconicd deployment - Add instructions for stage1 to stage2 migration - Add a script and instructions for users to upgrade their nodes to testnet stage2 Reviewed-on: #31 Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
58 lines
1.5 KiB
Bash
Executable File
58 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ -n "$CERC_SCRIPT_DEBUG" ]]; then
|
|
set -x
|
|
fi
|
|
|
|
set -e
|
|
|
|
input_genesis_file=/root/.laconicd/tmp/genesis.json
|
|
if [ ! -f ${input_genesis_file} ]; then
|
|
echo "Genesis file not provided, exiting..."
|
|
exit 1
|
|
fi
|
|
|
|
if [ -z "$CERC_PEERS" ]; then
|
|
echo "Persistent peers not provided, exiting..."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Env:"
|
|
echo "Moniker: $CERC_MONIKER"
|
|
echo "Chain Id: $CERC_CHAIN_ID"
|
|
echo "Persistent peers: $CERC_PEERS"
|
|
echo "Min gas price: $MIN_GAS_PRICE"
|
|
echo "Log level: $CERC_LOGLEVEL"
|
|
|
|
NODE_HOME=/root/.laconicd
|
|
|
|
# Set chain id in config
|
|
laconicd config set client chain-id $CERC_CHAIN_ID --home $NODE_HOME
|
|
|
|
# Check if node data dir already exists
|
|
if [ -z "$(ls -A "$NODE_HOME/data")" ]; then
|
|
# Init node
|
|
echo "Initializing a new laconicd node with moniker $CERC_MONIKER and chain id $CERC_CHAIN_ID"
|
|
laconicd init $CERC_MONIKER --chain-id=$CERC_CHAIN_ID --home $NODE_HOME
|
|
|
|
# Use provided genesis config
|
|
cp $input_genesis_file $NODE_HOME/config/genesis.json
|
|
else
|
|
echo "Node data dir $NODE_HOME/data already exists, skipping initialization..."
|
|
fi
|
|
|
|
# Enable cors
|
|
sed -i 's/cors_allowed_origins.*$/cors_allowed_origins = ["*"]/' $HOME/.laconicd/config/config.toml
|
|
|
|
# Update config with persistent peers
|
|
sed -i "s/^persistent_peers *=.*/persistent_peers = \"$CERC_PEERS\"/g" $NODE_HOME/config/config.toml
|
|
|
|
echo "Starting laconicd node..."
|
|
laconicd start \
|
|
--api.enable \
|
|
--minimum-gas-prices=${MIN_GAS_PRICE}alnt \
|
|
--rpc.laddr="tcp://0.0.0.0:26657" \
|
|
--gql-playground --gql-server \
|
|
--log_level $CERC_LOGLEVEL \
|
|
--home $NODE_HOME
|