βοΈSetup Guide
Follow the guide to set up your Humans Mainnet node
Step 1: Update and install necessary packages
sudo apt update && sudo apt upgrade --yes && \
sudo apt install git build-essential ufw curl jq snapd screen ncdu nano fuse ufw --yesStep 2: Install Go
sudo snap install go --classic && \
echo 'export GOPATH="$HOME/go"' >> ~/.profile && \
echo 'export GOBIN="$GOPATH/bin"' >> ~/.profile && \
echo 'export PATH="$GOBIN:$PATH"' >> ~/.profile && \
source ~/.profile && \
go versionStep 3: Clone repo and compile binary (you can find releases here: click)
git clone https://github.com/humansdotai/humans
cd humans
git checkout v$(curl -s https://humans-rpc.anyvalid.com/abci_info | jq -r .result[].version)
make installStep 4: Init your keys and download genesis file
humansd init <moniker> --chain-id humans_1089-1
humansd keys add <keyname>
wget https://anyvalid.com/humans/genesis.json -O $HOME/.humansd/config/genesis.json
wget https://anyvalid.com/humans/addrbook.json -O $HOME/.humansd/config/addrbook.jsonStep 5: Set up gas_price / persistent_peers / pruning
Step 6: Set up Humans service
Step 7: Enable Humans daemon
If you want to synchronize your node from the 0 block:
Start Humans service and watch logs
Or you can quickly synchronize your node through State Sync:
πState Sync GuideLast updated