Command
Wallet:
Add New Wallet:
nibid keys add wallet
Restore executing wallet:
nibid keys add wallet --recover
List All Wallets:
nibid keys list
Delete wallet:
nibid keys delete wallet
Check Balance:
nibid q bank balances $(nibid keys show wallet -a)
Validator:
Create Validator:
nibid tx staking create-validator \
--amount 1000000unibi \
--pubkey $(nibid tendermint show-validator) \
--moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id cataclysm-1 \
--commission-rate 0.1 \
--commission-max-rate 0.20 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--from wallet \
--fees 5000unibi \
-y
Edit Validator
nibid tx staking edit-validator \
--new-moniker "YOUR_MONIKER_NAME" \
--identity "YOUR_KEYBASE_ID" \
--details "YOUR_DETAILS" \
--website "YOUR_WEBSITE_URL" \
--chain-id cataclysm-1 \
--commission-rate 0.05 \
--from wallet \
--fees 5000unibi \
-y
Check sync | False -> done.
nibid status 2>&1 | jq .SyncInfo.catching_up
Delegate:
nibid tx staking delegate $(nibid keys show wallet --bech val -a) 1000000unibi \
--from wallet \
--chain-id=cataclysm-1 \
--gas-prices 0.025unibi \
--node=https://nibiru-rpc.node39.top:443 \
-y
Withdraw rewards and commission:
nibid tx distribution withdraw-rewards $(nibid keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id=cataclysm-1 \
--gas-prices 0.025unibi \
--node=https://nibiru-rpc.node39.top:443 \
-y
Unjail:
--from wallet \
--chain-id=cataclysm-1 \
--gas-prices 0.025unibi \
--node=https://nibiru-rpc.node39.top:443 \
-y
Unbond:
nibid tx staking unbond $(nibid keys show wallet --bech val -a) 1000000unibi \
--from wallet \
--chain-id=cataclysm-1 \
--gas-prices 0.025unibi \
--node=https://nibiru-rpc.node39.top:443 \
-y
Vote:
yes/no/no_with_veto/abstain
nibid tx gov vote 1 yes \
--from wallet \
--chain-id cataclysm-1 \
--gas-prices 0.025unibi \
--node=https://nibiru-rpc.node39.top:443 \
-y
System:
Reload Service:
sudo systemctl daemon-reload
Enable Service:
sudo systemctl enable nibid
Disable Service:
sudo systemctl disable nibid
Start Service:
sudo systemctl start nibid
Stop Service:
sudo systemctl stop nibid
Restart Service:
sudo systemctl restart nibid
Check Service Status:
sudo systemctl status nibid
Check Service Logs:
sudo journalctl -u nibid -fo cat