Skip to main content

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" \
--fees 5000ubze \
--gas=auto --gas-adjustment=1.5 \
--from=wallet \
-y

Edit Validator:​

bzed 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=beezee-1 \
--fees 5000ubze \
--gas=auto --gas-adjustment=1.5 \
-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 \
--fees 5000ubze \
--gas=auto --gas-adjustment=1.5 \
-y

Withdraw rewards and commission:​

bzed tx distribution withdraw-rewards $(bzed keys show wallet --bech val -a) \
--commission \
--from wallet \
--chain-id=beezee-1 \
--fees 5000ubze \
--gas=auto --gas-adjustment=1.5 \
-y

Unjail:​

bzed tx slashing unjail \
--from wallet \
--chain-id=beezee-1 \
--fees 5000ubze \
--gas=auto --gas-adjustment=1.5 \
-y

Unbond:​

bzed tx staking unbond $(bzed keys show wallet --bech val -a) 1000000ubze \
--from wallet \
--chain-id=beezee-1 \
--fees 5000ubze \
--gas=auto --gas-adjustment=1.5 \
-y

Vote:​

bzed tx gov vote proposal_id yes \
--from wallet \
--chain-id=beezee-1 \
--fees 2500ubze \
--node=https://beezee-rpc.meshrpc.com: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