Installation
Chain ID: uptick_117-1 | Latest Version Tag: v0.2.19 |
Setup validator name
Replace **YOUR_MONIKER_GOES_HERE** with your validator name
MONIKER="YOUR_MONIKER_GOES_HERE"
Install dependencies
Update system and install build tools
sudo apt -q update
sudo apt -qy install curl git jq lz4 build-essential
sudo apt -qy upgrade
Install Go
sudo rm -rf /usr/local/go
curl -Ls https://go.dev/dl/go1.19.10.linux-amd64.tar.gz | sudo tar -xzf - -C /usr/local
eval $(echo 'export PATH=$PATH:/usr/local/go/bin' | sudo tee /etc/profile.d/golang.sh)
eval $(echo 'export PATH=$PATH:$HOME/go/bin' | tee -a $HOME/.profile)
Download and build binaries
# Clone project repository
cd $HOME
rm -rf uptick
git clone https://github.com/UptickNetwork/uptick.git
cd uptick
git checkout v0.2.19
# Build binaries
make build
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.uptickd/cosmovisor/genesis/bin
mv build/uptickd $HOME/.uptickd/cosmovisor/genesis/bin/
rm -rf build
# Create application symlinks
sudo ln -s $HOME/.uptickd/cosmovisor/genesis $HOME/.uptickd/cosmovisor/current -f
sudo ln -s $HOME/.uptickd/cosmovisor/current/bin/uptickd /usr/local/bin/uptickd -f
Install Cosmovisor and create a service
# Download and install Cosmovisor
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.4.0
# Create service
sudo tee /etc/systemd/system/uptickd.service > /dev/null << EOF
[Unit]
Description=uptick node service
After=network-online.target
[Service]
User=$USER
ExecStart=$(which cosmovisor) run start
Restart=on-failure
RestartSec=10
LimitNOFILE=65535
Environment="DAEMON_HOME=$HOME/.uptickd"
Environment="DAEMON_NAME=uptickd"
Environment="UNSAFE_SKIP_BACKUP=true"
Environment="PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:$HOME/.uptickd/cosmovisor/current/bin"
[Install]
WantedBy=multi-user.target
EOF
sudo systemctl daemon-reload
sudo systemctl enable uptickd
Initialize the node
# Set node configuration
uptickd config chain-id uptick_117-1
uptickd config keyring-backend file
# Initialize the node
uptickd init $MONIKER --chain-id uptick_117-1
# Download genesis and addrbook
curl -Ls https://github.com/dvjromashkin/guides/raw/main/Uptick/genesis.json > $HOME/.uptickd/config/genesis.json
curl -Ls https://github.com/dvjromashkin/guides/raw/main/Uptick/addrbook.json > $HOME/.uptickd/config/addrbook.json
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0auptick\"|" $HOME/.uptickd/config/app.toml
# Set pruning
sed -i \
-e 's|^pruning *=.*|pruning = "custom"|' \
-e 's|^pruning-keep-recent *=.*|pruning-keep-recent = "100"|' \
-e 's|^pruning-keep-every *=.*|pruning-keep-every = "0"|' \
-e 's|^pruning-interval *=.*|pruning-interval = "19"|' \
$HOME/.uptickd/config/app.toml
# Set custom ports
sed -i -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:11558\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:11557\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:11560\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:11556\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":11566\"%" $HOME/.uptickd/config/config.toml
sed -i -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:11517\"%; s%^address = \":8080\"%address = \":11580\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:11590\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:11591\"%; s%:8545%:11545%; s%:8546%:11546%; s%:6065%:11565%" $HOME/.uptickd/config/app.toml
Start service and check the logs
sudo systemctl start uptickd && sudo journalctl -u uptickd -f -o cat