top of page

Humans

He economy of the AIs. We are creating a scalable blockchain providing the economy of the heart driven AI, placing the humans at the facefront of the AI evolution

Chain ID: testnet-1

Website: humans.ai

Public Endpoints:

✅ RPC

rpc.humans.ppnv.space:30657

✅ API / REST

 api.humans.ppnv.space 

✅ gRPC

 grpc.humans.ppnv.space:30090 

✅ gRPC Web

 grpc.humans.ppnv.space:30091

Genesis:

curl -Ls https://service.ppnv.space/humans/genesis.json > $HOME/.humans/config/genesis.json

Peering:

✅ Seed Node

✅ Live Peers

✅ Addrbook #update every hour

curl -Ls https://service.ppnv.space/humans/addrbook.json > $HOME/.humans/config/addrbook.json

✅ State Sync #snapshot-interval = 1000

sudo systemctl stop humansd
cp $HOME/.humans/data/priv_validator_state.json $HOME/.humans/priv_validator_state.json.backup
humansd tendermint unsafe-reset-all --home $HOME/.humans
STATE_SYNC_RPC=http://rpc.humans.ppnv.space:30657
STATE_SYNC_PEER=8b4c5d2f104759d91317acb27838eeeb1dddec7d@rpc.humans.ppnv.space:30656
LATEST_HEIGHT=$(curl -s $STATE_SYNC_RPC/block | jq -r .result.block.header.height)
SYNC_BLOCK_HEIGHT=$(($LATEST_HEIGHT - 1000))
SYNC_BLOCK_HASH=$(curl -s "$STATE_SYNC_RPC/block?height=$SYNC_BLOCK_HEIGHT" | jq -r .result.block_id.hash)
sed -i.bak -e "s|^enable *=.*|enable = true|" $HOME/.humans/config/config.toml
sed -i.bak -e "s|^rpc_servers *=.*|rpc_servers = \"$STATE_SYNC_RPC,$STATE_SYNC_RPC\"|" \
  $HOME/.humans/config/config.toml
sed -i.bak -e "s|^trust_height *=.*|trust_height = $SYNC_BLOCK_HEIGHT|" \
  $HOME/.humans/config/config.toml
sed -i.bak -e "s|^trust_hash *=.*|trust_hash = \"$SYNC_BLOCK_HASH\"|" \
  $HOME/.humans/config/config.toml
sed -i.bak -e "s|^persistent_peers *=.*|persistent_peers = \"$STATE_SYNC_PEER\"|" \
  $HOME/.humans/config/config.toml
mv $HOME/.humans/priv_validator_state.json.backup $HOME/.humans/data/priv_validator_state.json
sudo systemctl restart humansd && journalctl -u humansd -f --no-hostname -o cat

bottom of page