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