Upgrade proposal detected

Jackal Jackal

Jackal Protocol is the purpose-built blockchain for the everyday user. No more choosing between security or user-experience. With Jackal, protecting your valuable data has never been easier.

Installation (Ubuntu/Debian)

Install dependencies

sudo apt update
sudo apt install -y curl git jq lz4 build-essential
sudo rm -rf /usr/local/go
sudo curl -Ls https://go.dev/dl/go1.20.linux-amd64.tar.gz | sudo tar -C /usr/local -xz
tee -a $HOME/.profile > /dev/null << EOF
export PATH=$PATH:/usr/local/go/bin
EOF
source $HOME/.profile

Download/compile and install canined

# Download version v1.2.1
mkdir -p $HOME/.canine/cosmovisor/upgrades/bouncybulldog/bin
curl -Ls https://github.com/JackalLabs/canine-chain/releases/download/v1.2.1/canined-Linux > $HOME/.canine/cosmovisor/upgrades/bouncybulldog/bin/canined

Install cosmovisor and service

curl -Ls https://github.com/cosmos/cosmos-sdk/releases/download/cosmovisor%2Fv1.3.0/cosmovisor-v1.3.0-linux-amd64.tar.gz | tar xz
chmod 755 cosmovisor
sudo mv cosmovisor /usr/bin/cosmovisor

sudo tee /etc/systemd/system/canined.service > /dev/null << EOF
[Unit]
Description=Jackal Node Service
After=network-online.target
[Service]
User=$USER
ExecStart=/usr/bin/cosmovisor run start
Restart=on-failure
RestartSec=10
LimitNOFILE=8192
Environment="DAEMON_HOME=$HOME/.canine"
Environment="DAEMON_NAME=canined"
Environment="UNSAFE_SKIP_BACKUP=true"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable canined

Initialize the node

MONIKER=""

ln -s $HOME/.canine/cosmovisor/upgrades/bouncybulldog $HOME/.canine/cosmovisor/current
sudo ln -s $HOME/.canine/cosmovisor/current/bin/canined /usr/local/bin/canined
canined config chain-id jackal-1
canined init $MONIKER --chain-id jackal-1
curl -Ls https://raw.githubusercontent.com/JackalLabs/woof/master/genesis/woof-final.json > $HOME/.canine/config/genesis.json
sed -i -e "s|^seeds *=.*|seeds = \"[email protected]:30562,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656,[email protected]:26656\"|" $HOME/.canine/config/config.toml
tee $HOME/.canine/data/priv_validator_state.json > /dev/null << EOF
{
  "height": "0",
  "round": 0,
  "step": 0
}
EOF
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.0001ujkl\"|" $HOME/.canine/config/app.toml
sed -i -e "s|^pruning *=.*|pruning = \"custom\"|" $HOME/.canine/config/app.toml
sed -i -e "s|^pruning-keep-recent *=.*|pruning-keep-recent = \"3000\"|" $HOME/.canine/config/app.toml
sed -i -e "s|^pruning-keep-every *=.*|pruning-keep-every = \"0\"|" $HOME/.canine/config/app.toml
sed -i -e "s|^pruning-interval *=.*|pruning-interval = \"10\"|" $HOME/.canine/config/app.toml
sed -i -e "s|^snapshot-interval *=.*|snapshot-interval = \"1000\"|" $HOME/.canine/config/app.toml
sed -i -e "s|^snapshot-keep-recent *=.*|snapshot-keep-recent = \"2\"|" $HOME/.canine/config/app.toml

Start the service and check the log

sudo systemctl start canined
sudo journalctl -u canined -f --no-hostname -o cat