Hippo Protocol Logo

Hippo Protocol

Archived

Hippo Protocol is a Layer 1 healthcare blockchain enabling secure, HIPAA-compliant data sharing for AI, DeSci, and medical research.

Validator Service Sunset

This validator has ceased operations on June 26, 2026. The data shown below is an archived snapshot of the final state.

Hippo Protocol Mainnet Validator

Chaind IDLast Version Tag
hippo-protocol-1v1.0.2

Binary Upgrade

Fetching network status...
Upgrade to v1.0.2

Target block: 3847000

Download & Extract Binary

cd $HOME
rm -rf hippo-protocol
git clone https://github.com/hippo-protocol/hippo-protocol.git
cd hippo-protocol
git checkout v1.0.2
make build
./build/hippod version

Start a new tmux session

tmux new -s hippo-upgrade

Run the auto-upgrade script.

⚠️ NOTE: Make sure you adjust the following according to your setup:
UPGRADE_SCRIPT="https://raw.githubusercontent.com/astrostake/scripts/refs/heads/main/upgrade_binary.sh"
 
curl -sL $UPGRADE_SCRIPT | bash -s -- \
-b "hippod" \
-t "3847000" \
-n "$HOME/hippo-protocol/build/hippod" \
-p "$HOME/go/bin" \
-r "http://localhost:12657" \
-i "24" \
-a "http://localhost:12317" \
-d "https://discord.com/api/webhooks/xxx/yyy" \ # optional
--progress-interval 0

:::details Flag explanation:

FlagNameDescription
-bbinary-nameName of the running daemon (e.g. hippod)
-ttarget-blockBlock height at which the upgrade should happen
-nnew-binary-pathFull path to the new binary
-pinstall-pathPath where the current binary is installed (default: $HOME/go/bin)
-rrpc-urlRPC endpoint used to monitor current block height
-iproposal-id(Optional) Proposal ID to validate governance status
-aapi-url(Optional) API endpoint used to fetch proposal status

:::

Installation

  1. Install Dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl git wget htop tmux build-essential jq make lz4 gcc unzip -y
  1. Install Go
cd $HOME
VER="1.22.3"
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
  1. Set Vars

Configuration

Generated Command

echo "export WALLET="wallet"" >> $HOME/.bash_profile
echo "export MONIKER=""" >> $HOME/.bash_profile
echo "export HIPPO_CHAIN_ID="hippo-protocol-1"" >> $HOME/.bash_profile
echo "export HIPPO_PORT="12"" >> $HOME/.bash_profile
source $HOME/.bash_profile
  1. Download Binary
cd $HOME
rm -rf hippo-protocol
git clone https://github.com/hippo-protocol/hippo-protocol.git
cd hippo-protocol
git checkout v1.0.2
make install
hippod version
  1. Initialized
hippod init $MONIKER --chain-id $HIPPO_CHAIN_ID
sed -i \
  -e 's|^chain-id *=.*|chain-id = "hippo-protocol-1"|' \
  -e 's|^keyring-backend *=.*|keyring-backend = "os"|' \
  -e "s|^node *=.*|node = \"tcp://localhost:${HIPPO_PORT}657\"|" \
  $HOME/.hippo/config/client.toml
  1. Download addrbook & genesis
wget -O $HOME/.hippo/config/genesis.json https://vault.astrostake.xyz/mainnet/hippo-protocol/genesis.json
wget -O $HOME/.hippo/config/addrbook.json https://vault.astrostake.xyz/mainnet/hippo-protocol/addrbook.json
  1. Configure Node

Update app.toml ports

sed -i.bak -e "s%:1317%:${HIPPO_PORT}317%g;
s%:8080%:${HIPPO_PORT}080%g;
s%:9090%:${HIPPO_PORT}090%g;
s%:9091%:${HIPPO_PORT}091%g;
s%:8545%:${HIPPO_PORT}545%g;
s%:8546%:${HIPPO_PORT}546%g;
s%:6065%:${HIPPO_PORT}065%g" $HOME/.hippo/config/app.toml

Update config.toml ports

sed -i.bak -e "s%:26658%:${HIPPO_PORT}658%g;
s%:26657%:${HIPPO_PORT}657%g;
s%:6060%:${HIPPO_PORT}060%g;
s%:26656%:${HIPPO_PORT}656%g;
s%^external_address = \"\"%external_address = \"$(wget -qO- eth0.me):${HIPPO_PORT}656\"%;
s%:26660%:${HIPPO_PORT}660%g" $HOME/.hippo/config/config.toml

Configure Pruning

Pruning Strategy

💡 Recommended for Validators to fine-tune storage.

blocks
blocks

Generated Command

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 = \"19\"/" $HOME/.hippo/config/app.toml

Set Minimum Gas Fee & Other Parameters

sed -i 's|minimum-gas-prices =.*|minimum-gas-prices = "0.025ulume"|g' $HOME/.hippo/config/app.toml
sed -i -e "s/prometheus = false/prometheus = true/" $HOME/.hippo/config/config.toml
sed -i -e "s/^indexer *=.*/indexer = \"null\"/" $HOME/.hippo/config/config.toml
  1. Create Services
sudo tee /etc/systemd/system/hippod.service > /dev/null <<EOF
[Unit]
Description=hippod Daemon
After=network-online.target
[Service]
User=$USER
ExecStart=$(which hippod) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF
  1. Start Services
sudo systemctl daemon-reload
sudo systemctl enable hippod
sudo systemctl restart hippod && sudo journalctl -u hippod -fo cat

Useful Commands

Note

For a complete guide to creating a validator, visit our Cheat Sheet & Key Management page. It covers all the necessary commands and crucial steps for securing your keys.

Check logs

sudo journalctl -u hippod -fo cat

Check Sync

curl -sL https://raw.githubusercontent.com/astrostake/scripts/refs/heads/main/cosmos_sync_monitor.sh | bash -s -- --directory $HOME/.hippo --public-rpc https://hippo-rpc.linknode.org --interval 5

🛡️ Security

To apply a quick security baseline, you can configure your firewall like this:

sudo ufw allow ${HIPPO_PORT}656/tcp comment 'HIPPO Node p2p Port'

🔐 For a more secure and maintainable setup, check out our Essentials Guide, including SSH key setup, Fail2Ban protection, and a full VPS hardening checklist.