Template-No-Cosmovisor

Update

npx
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y

Go Installation

npx
cd $HOME
VER="1.23.4"
wget "https://golang.org/dl/go$VER.linux-amd64.tar.gz"
sudo rm -rf /usr/local/go
sudo tar -C /usr/local -xzf "go$VER.linux-amd64.tar.gz"
rm "go$VER.linux-amd64.tar.gz"
[ ! -f ~/.bash_profile ] && touch ~/.bash_profile
echo "export PATH=$PATH:/usr/local/go/bin:~/go/bin" >> ~/.bash_profile
source $HOME/.bash_profile
[ ! -d ~/go/bin ] && mkdir -p ~/go/bin

Vars

npx
echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export Change_CHAIN_ID="Change"" >> $HOME/.bash_profile
echo "export Change_PORT="57"" >> $HOME/.bash_profile
source $HOME/.bash_profile

Binary

# download binary
cd $HOME
wget -O Changed githubbinarylink
chmod +x $HOME/Changed
mv $HOME/Changed $HOME/go/bin/

Config - Init

npx
pellcored config node tcp://localhost:${Change_PORT}657
pellcored config keyring-backend os
pellcored config chain-id Change
pellcored init "Change" --chain-id Change

Download genesis and addrbook

npx
wget -O $HOME/.Changed/config/genesis.json https://Change.com/testnet/pell/genesis.json
wget -O $HOME/.Changed/config/addrbook.json  https://Change.com/testnet/pell/addrbook.json

Set Seeds and Peers

npx
SEEDS="Seedlink:port"
PEERS="peers:port"
sed -i -e "/^\[p2p\]/,/^\[/{s/^[[:space:]]*seeds *=.*/seeds = \"$SEEDS\"/}" \
       -e "/^\[p2p\]/,/^\[/{s/^[[:space:]]*persistent_peers *=.*/persistent_peers = \"$PEERS\"/}" $HOME/.Changed/config/config.toml

Ports

npx
sed -i.bak -e "s%:1317%:${Change_PORT}317%g;
s%:8080%:${Change_PORT}080%g;
s%:9090%:${Change_PORT}090%g;
s%:9091%:${Change_PORT}091%g;
s%:8545%:${Change_PORT}545%g;
s%:8546%:${Change_PORT}546%g;
s%:6065%:${Change_PORT}065%g" $HOME/.Changed/config/app.toml
npx
sed -i.bak -e "s%:26658%:${Change_PORT}658%g;
s%:26657%:${Change_PORT}657%g;
s%:6060%:${Change_PORT}060%g;
s%:26656%:${Change_PORT}656%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${Change_PORT}656\"%;
s%:26660%:${Change_PORT}660%g" $HOME/.Changed/config/config.toml

Pruning

npx
sed -i -e "s/^pruning *=.*/pruning = \"custom\"/" $HOME/.Changed/config/app.toml 
sed -i -e "s/^pruning-keep-recent *=.*/pruning-keep-recent = \"100\"/" $HOME/.Changed/config/app.toml
sed -i -e "s/^pruning-interval *=.*/pruning-interval = \"19\"/" $HOME/.Changed/config/app.toml

Minimum gas price, enable prometheus and disable indexing

npx
sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0Change"|g' $HOME/.Changed/config/app.toml
sed -i -e "s/prometheus = false/prometheus = true/" $HOME/.Changed/config/config.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.Changed/config/config.toml

Service

npx
# create service file
sudo tee /etc/systemd/system/Changed.service > /dev/null <<EOF
[Unit]
Description=Change node
After=network-online.target
[Service]
User=$USER
WorkingDirectory=$HOME/.Changed
ExecStart=$(which Changed) start --home $HOME/.Changed
Environment=LD_LIBRARY_PATH=$HOME/.Changed/lib/
Restart=on-failure
RestartSec=5
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF

Reset and download snapshot

npx
Changed tendermint unsafe-reset-all --home $HOME/.Changed
if curl -s --head curl snapshotlink | head -n 1 | grep "200" > /dev/null; then
  curl snapshotlink | lz4 -dc - | tar -xf - -C $HOME/.Changed
    else
  echo "no snapshot found"
fi

Enable and start service

npx
sudo systemctl daemon-reload
sudo systemctl enable Changed
sudo systemctl restart Changed && sudo journalctl -u Changed -f