CryptoNodeID
  • Introduction
  • Basics
    • Server Preparation
    • Setting up DNS
    • Routing using NGINX
    • Setting up SSL
    • Security Setup
  • Advance
    • Proxmox Setup with 1 Public IP
  • Mainnet
    • Humanode
      • Installation
      • Node Activation
      • Monitoring
    • CrossFi
      • Endpoints and Sync
      • Installation
      • Validator Setup
      • Cheat Sheet
  • Testnet
    • Airchain
      • Endpoints and Sync
      • Installation
      • Validator Setup
    • Cortensor
      • Installation
      • Multiple Node Setup
        • VM Method
        • Docker Method
    • CrossFi
      • Endpoints and Sync
      • Installation
      • Validator Setup
      • Cheat Sheet
      • User ITN Guide
    • Empeiria
      • Endpoints and Sync
      • Installation
      • Validator Setup
      • Cheat Sheet
    • Ethereum and Arbitrum Sepolia
      • Installation
    • Symphony
      • Endpoints and Sync
      • Installation
      • Validator Setup
      • Cheat Sheet
    • NuLink
    • Shardeum
    • Warden Protocol
      • Endpoints and Sync
      • Installation
      • Validator Setup
      • Cheat Sheet
  • Supporting Tools
    • Cosmos Explorer
      • Installation
  • Archived
    • Galactica
      • Endpoints and Sync
      • Installation
    • Initia
      • Endpoints and Sync
      • Installation
    • Mantrachain
      • Endpoints and Sync
      • Installation
    • Side Protocol
      • Endpoints and Sync
      • Installation
    • Stratis EVM
Powered by GitBook
On this page
  • ⚙️Service operations
  • 🖥️Node operations
  • 🗝️Key Management
  • 💱Transaction operations
  • ✅Validator operations
  • 🏛️Governance

Was this helpful?

  1. Testnet
  2. Empeiria

Cheat Sheet

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

sudo journalctl -fu emped
sudo systemctl daemon-reload
sudo systemctl enable emped
sudo systemctl disable emped
sudo systemctl start emped
sudo systemctl stop emped
sudo systemctl status emped
sudo systemctl status emped

🖥️Node operations

emped status | jq
emped status 2>&1 | jq .NodeInfo
emped status 2>&1 | jq .SyncInfo

🗝️Key Management

emped keys add $WALLET
emped keys add $WALLET --recover
emped keys list
emped q bank balances $(emped keys show $WALLET -a)

💱Transaction operations

Withdraw all rewards

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

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

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

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

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

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

Unjail Validator

emped tx slashing unjail \
--from $WALLET \
--chain-id empe-testnet-2 \
--fees=20uempe -y

🏛️Governance

Query Proposal List

emped query gov proposals

Vote

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

PreviousValidator SetupNextEthereum and Arbitrum Sepolia

Last updated 9 months ago

Was this helpful?

Can follow this guide to get your keybase pgp :

https://docs.harmony.one/home/network/validators/managing-a-validator/adding-a-validator-logo