If you use our auto-installation, we've included several scripts under ./scripts
folder like:
./list_keys.sh
./check_balance.sh
./create_validator.sh
./unjail_validator.sh
./check_validator.sh
./start_wardend.sh
./check_log.sh
Here's other useful commands you might need
⚙️Service operations
Check logsReload daemonEnable serviceDisable serviceCopy
sudo journalctl -fu emped
Start serviceStop serviceRestart serviceCheck service statusCopy
sudo systemctl start emped
🖥️Node operations
Overall statusNode infoSync infoCopy
🗝️Key Management
Add new walletRestore walletList all walletCheck balanceCopy
emped keys add $WALLET
💱Transaction operations
Withdraw all rewards
Copy
emped tx distribution withdraw-all-rewards \
--from $WALLET \
--chain-id empe-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 20uempe -y
Withdraw rewards and commission from your validator
Copy
emped tx distribution withdraw-rewards $(emped keys show $WALLET --bech val -a) \
--from $WALLET \
--commission \
--chain-id empe-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 20uempe -y
Self delegate
Copy
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 20uempe -y
Redelegate
Copy
emped tx staking redelegate <FROM_VALOPER_ADDRESS> <TO_VALOPER_ADDRESS> 1000000uempe \
--from $WALLET \
--chain-id empe-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees 20uempe -y
Unbond
Copy
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 20uempe -y
Transfer token
Copy
emped tx bank send $WALLET <TO_WALLET_ADDRESS> 1000000uempe \
--gas auto \
--gas-adjustment 1.5 \
--fees 20uempe -y
✅Validator operations
Create validator
Check Validator Setup
Can follow this guide to get your keybase pgp : https://docs.harmony.one/home/network/validators/managing-a-validator/adding-a-validator-logo
Unjail Validator
Copy
emped tx slashing unjail \
--from $WALLET \
--chain-id empe-testnet-2 \
--fees=20uempe -y
🏛️Governance
Query Proposal List
Copy
emped query gov proposals
Vote
Copy
emped tx gov vote 1 yes \
--from $WALLET \
--chain-id empe-testnet-2 \
--gas auto \
--gas-adjustment 1.5 \
--fees=20uempe -y
vote value can be yes
, no
, no_with_veto
and abstain
Last updated