Command
Wallet:
Add New Wallet:
hippod keys add wallet
Restore executing wallet:
hippod keys add wallet --recover
List All Wallets:
hippod keys list
Delete wallet:
hippod keys delete wallet
Check Balance:
hippod q bank balances $(hippod keys show wallet -a)
Validator:
Create Validator:
hippod tx staking create-validator <(cat <<EOF
{
"pubkey": $(hippod comet show-validator),
"amount": "1000000000000000000ahp",
"moniker": "Node39-Guide",
"identity": "YOUR_KEYBASE_ID",
"website": "YOUR_WEBSITE_URL",
"security-contact": "YOUR_SECURITY_EMAIL",
"details": "YOUR_DETAILS",
"commission-rate": "0.05",
"commission-max-rate": "0.20",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
EOF
) \
--from wallet \
--chain-id hippo-protocol-1 \
--fees 100000000000000000ahp \
-y
Edit Validator:
hippod tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--security-contact "YOUR_SECURITY_EMAIL" \
--commission-rate 0.05 \
--from your-wallet \
--chain-id=hippo-protocol-1 \
--fees 100000000000000000ahp \
--node=https://hippo-rpc.node39.top:443 \
-y