You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Install latest
go version https://golang.org/doc/install
wget -q -O - https://raw.githubusercontent.com/canha/golang-tools-install-script/master/goinstall.sh | bash -s -- --version 1.18
source ~/.profile
// to verify that Golang installed
go version
// Should return go version go1.18 linux/amd64
Initialize the validator, where "validator" is a moniker name
humansd init validator --chain-id testhuman
### Validator
### human17zc58s96rxj79jtqqsnzt3wtx3tern6areu43g
humansd keys add validator --keyring-backend test --recover
### Pool
### human14u53eghrurpeyx5cm47vm3qwugtmhcpnstfx9t
humansd keys add validator1 --keyring-backend test --recover
### Test 1
### human1dfjns5lk748pzrd79z4zp9k22mrchm2a5t2f6u
humansd keys add test1 --keyring-backend test --recover
Add genesis accounts
humansd add-genesis-account $(humansd keys show validator -a --keyring-backend test) 90000000000000uheart
humansd add-genesis-account $(humansd keys show validator1 -a --keyring-backend test) 40000000000000uheart
humansd add-genesis-account $(humansd keys show test1 -a --keyring-backend test) 50000000000000uheart
Generate CreateValidator signed transaction
humansd gentx validator 50000000000000uheart --keyring-backend test --chain-id testhuman
Collect genesis transactions
humansd collect-gentxs
replace stake to uheart
sed -i 's/stake/uheart/g' ~/.humans/config/genesis.json
Create the service file "/etc/systemd/system/humansd.service" with the following content