Installation
Current Version
Port Prefix
main
318
Minimum hardware Requirements #
CPU : 4x CPUs
Ram : 8GB RAM
Storage: 100GB of storage (SSD or NVME)
Setting Variables
echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER="test"" >> $HOME/.bash_profile
echo "export hippo_CHAIN_ID="hippo-protocol-1"" >> $HOME/.bash_profile
echo "export hippo_PORT="318"" >> $HOME/.bash_profile
echo "export DAEMON_NAME="hippod"" >> $HOME/.bash_profile
echo "export DAEMON_HOME=$HOME/.hippo"" >> $HOME/.bash_profile
source $HOME/.bash_profile
Install dependencies
sudo apt update && sudo apt upgrade -y && sudo apt-get install make build-essential gcc git jq chrony lz4 tmux unzip bc -y && sudo apt install -y curl git jq lz4 build-essential unzip
INSTALL GO
ver="1.20.5" && \
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" && \
echo "export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin" >> $HOME/.bash_profile && \
source $HOME/.bash_profile && \
go version
# Adding Go's location to profile
cat <<'EOF' >>$HOME/.profile
export GOROOT=/usr/local/go
export GOPATH=$HOME/go
export GO111MODULE=on
export PATH=$PATH:/usr/local/go/bin:$HOME/go/bin
EOF
source $HOME/.profile
go version
Download and build binary
# Clone project repository
cd $HOME
rm -rf hippo
git clone https://github.com/hippocrat-dao/hippo-protocol hippo
cd hippo
git checkout main
# Build binaries
make install
# Prepare binaries for Cosmovisor
mkdir -p $HOME/.hippo/cosmovisor/genesis/bin
cp $HOME/go/bin/hippod $HOME/.hippo/cosmovisor/genesis/bin/
# Create application symlinks
sudo ln -s $HOME/.hippo/cosmovisor/genesis $HOME/.hippo/cosmovisor/current -f
sudo ln -s $HOME/.hippo/cosmovisor/current/bin/hippod /usr/local/bin/hippod -f
Installing Cosmovisor
# Download and install Cosmovisor
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@latest
# Create service
sudo tee /etc/systemd/system/hippo.service > /dev/null << EOF
[Unit]
Description=hippo 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/.hippo"
Environment="DAEMON_NAME=hippod"
Environment="UNSAFE_SKIP_BACKUP=true"
[Install]
WantedBy=multi-user.target
EOF
# Reload Daemon
sudo systemctl daemon-reload
sudo systemctl enable hippo.service
Initialize Node & Configuring Node Port
# Set node configuration
hippod init $MONIKER --chain-id hippo-protocol-1
hippod config node tcp://localhost:31857
hippod config keyring-backend file
# Set custom ports in client.toml
sed -i.bak -e "s%:26457%:${hippo_PORT}57%g" $HOME/.hippo/config/client.toml
# Set custom ports in app.toml
sed -i.bak -e "s%:1317%:${hippo_PORT}17%g;
s%:8080%:${hippo_PORT}80%g;
s%:9090%:${hippo_PORT}90%g;
s%:9091%:${hippo_PORT}91%g;
s%:8545%:${hippo_PORT}45%g;
s%:8546%:${hippo_PORT}46%g;
s%:6065%:${hippo_PORT}65%g" $HOME/.hippo/config/app.toml
# Set custom ports in config.toml file
sed -i.bak -e "s%:26658%:${hippo_PORT}58%g;
s%:26657%:${hippo_PORT}57%g;
s%:6060%:${hippo_PORT}60%g;
s%:26656%:${hippo_PORT}56%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${hippo_PORT}56\"%;
s%:26660%:${hippo_PORT}60%g" $HOME/.hippo/config/config.toml
# Download genesis and addrbook
wget -O $HOME/.hippo/config/genesis.json https://files.nodeshub.online/mainnet/hippo/genesis.json
wget -O $HOME/.hippo/config/addrbook.json https://files.nodeshub.online/mainnet/hippo/addrbook.json
# Add Seeds and Peers
SEEDS="6f6a3a908634b79b6fe7c4988efec2553f188234@hippo.seed.nodeshub.online:31856"
PEERS="$(curl -s https://files.nodeshub.online/mainnet/hippo/peers.txt)"
sed -i -e "s|^seeds *=.*|seeds = \"$SEEDS\"|; s|^persistent_peers *=.*|persistent_peers = \"$PEERS\"|" $HOME/.hippo/config/config.toml
# Set minimum gas price
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0ahp\"|" $HOME/.hippo/config/app.toml
# Set pruning and indexer to Null
sed -i -e "s/^pruning =./pruning = "custom"/" $HOME/.hippo/config/app.toml sed -i -e "s/^pruning-keep-recent =./pruning-keep-recent = "100"/"
$HOME/.hippo/config/app.toml sed -i -e "s/^pruning-interval =./pruning-interval = "50"/" $HOME/.hippo/config/app.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.hippo/config/config.toml
Download Snapshot
sudo systemctl stop hippo
# Back up priv_validator_state.json if needed
cp ~/.hippo/data/priv_validator_state.json ~/.hippo/priv_validator_state.json.backup
# Reset Data folder
hippod tendermint unsafe-reset-all --home $HOME/.hippo --keep-addr-book
SNAP_URL=$(curl -s https://files.nodeshub.online/mainnet/hippo/snapshot/snap-info.txt | grep "Snapshot_URL" | cut -d ' ' -f 2)
curl ${SNAP_URL} | lz4 -dc - | tar -xf - -C $HOME/.hippo
cp $HOME/.hippo/priv_validator_state.json.backup $HOME/.hippo/data/priv_validator_state.json
sudo systemctl restart hippo && sudo journalctl -u hippo -f -o cat
Start service and check the logs
sudo systemctl start hippo.service && sudo journalctl -u hippo -f -o cat
Last updated