Network
Cosmos
Empeiria
Chetasheet

Service operations

#Check Logs
sudo journalctl -f -u emped
 
#Start service
sudo systemnctl start emped
 
#Restart Service
sudo systemnctl restart emped
 
withdraw all reward
emped tx distribution withdraw-all-rewards --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 100uempe 
Withdraw rewards and commission from your validator
emped tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 100uempe -y 
Check wallet balance
emped query bank balances $WALLET
Delegate to the validator itself
emped tx staking delegate $(emped keys show $WALLET --bech val -a) 1000000uempe  --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 100uempe -y 
Redelegate to other validators
emped tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uempe  --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 100uempe -y 
Unbond
emped tx staking unbond $(emped keys show $WALLET --bech val -a) 1000000uempe  --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 100uempe -y 
Transfer Funds
emped tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uempe  --gas auto --gas-adjustment 1.5 --fees 100uempe -y 

KEY MANAGEMENT

Create Wallet
emped keys add $WALLET
Recover Existing Wallet
emped keys add $WALLET --recover
Check All Available Wallet
emped keys list
Check wallet funds
emped q bank balances $WALLET_ADDRESS 

VALIDATOR INFORMATION

create a validator
emped tx staking create-validator \
--amount 1000000uempe  \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--security-contact ""\
--pubkey $(emped tendermint show-validator) \
--moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--chain-id empe-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 100uempe
edit existing validator
emped tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--from $WALLET \
--chain-id empe-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 100uempe \
-y 
validator status/info
emped status 2>&1 | jq
Unjail validator
emped tx slashing unjail --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 100uempe -y