Nodevism.com
  • Nodevism
    • Booting Up Nodevism
  • Mainnet
    • CrossFi
      • Installation
    • Hippo Protocol
      • Endpoint
      • Installation
      • Creating-validator
      • CLI-cheatsheet
    • Medasdigital
  • Testnet
    • Aztec
    • Cortensor
    • Covalent
      • EWM Client
    • Empeiria
      • Endpoints
      • Requirement
      • Installation
      • Snapshot
      • Creating Validator
      • CLI Cheatsheet
    • Lumera Protocol
      • Public endpoint
      • Installation
      • Snapshot
      • Create Validator
      • Upgrade
      • CLI Cheatsheet
    • Odiseo
      • Installation
      • Creating Validator
      • Snapshot
      • CLI Cheatsheet
    • Symphony (Orchestra Labs)
      • Endpoint
      • Requirement
      • Installation
      • Create Validator
      • Cheatsheet
    • Union
      • Union ceremony task
    • XRVL-EVM
      • Public Endpoint
      • Installation
      • Creating Validator
      • Snapshot
      • CLI Cheatsheet
      • Cli Cheatsheet
  • Archive
    • Artela
      • Requirement
        • Public Endpoint
        • Installation
        • Create Validator
        • Upgrade
        • Snapshot
      • Testnet User Guide
    • CrossFi Chain
      • Endpoints
      • Installation
      • Upgrade
      • Validator Setup
      • Cheatsheet
      • How to create RPC,API, and Json-RPC
      • CrossFi user incentivized testnet guide
    • Dill.xyz
      • Dill light node
    • InitiaFDN
      • Endpoint
      • Run Initia Node
        • Installation
        • Creating validator
        • Setup Oracle
        • Cheatsheet
        • Upgrade
      • User Testnet Guide
    • Network3 AI
      • Installation
    • Nubit
      • Nubit Light Node
    • 0G_Labs
      • Page 2
    • Story protocol
    • Warden
      • Endpoint
      • Run Warden Node
      • Installation
      • Creating Validator
      • Cheatsheet
    • Zenrock
      • Public endpoint
      • Automatic installation
      • Manual installation
      • Creating validator
      • Usefull command
  • Other
    • Secure server settup (optional)
    • Make Terminal Colorful
Powered by GitBook
On this page
  • Service Operation
  • Check Logs
  • Start Sevice
  • Stop service
  • Restart Service
  • Check Service
  • Reload Service
  • Enable Service
  • Disable Service
  • Node Peer
  • Wallet Operation
  • Add New Wallet
  • Add Existing Wallet
  • List Wallet
  • Delete Wallet
  • Check Balance
  • View EVM Private Key
  • Convert address
  • Token
  • Withdraw all rewards
  • Withdraw comission
  • Delegate to your own validator
  • Delegate to other validator
  • Unbound token from your own validator
  • Sending token to other wallet
  • Validator Operations
  • Edit existing validator
  • Validator Info
  • Unjail Validator
  • Jailed Reason
  • Governance
  • Vote You can change the value of yes to no,abstain,no withveto
  • Proposal List
  • Delete Node
Edit on GitHub
  1. Testnet
  2. Empeiria

CLI Cheatsheet

Service Operation

Check Logs

sudo journalctl -u emped -f

Start Sevice

sudo systemctl start emped

Stop service

sudo systemctl stop emped

Restart Service

sudo systemctl restart emped

Check Service

sudo systemctl status emped

Reload Service

sudo systemctl daemon-reload

Enable Service

sudo systemctl enable emped

Disable Service

sudo systemctl disable emped

Node Peer

echo $(emped tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.empe-chain/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')

Wallet Operation

Add New Wallet

emped keys add $WALLET

Add Existing Wallet

emped keys add $WALLET --recover

List Wallet

emped keys list

Delete Wallet

emped keys delete $WALLET

Check Balance

emped q bank balances $WALLET_ADDRESS 

View EVM Private Key

emped keys unsafe-export-eth-key $WALLET

Convert address

Token

Withdraw all rewards

emped tx distribution withdraw-all-rewards --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --gas-prices 0.0001uempe -y 

Withdraw comission

emped tx distribution withdraw-rewards $(emped keys show $WALLET --bech val -a) --commission --from wallet --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --gas-prices 0.0001uempe -y 

Delegate to your own validator

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 --gas-prices 0.0001uempe -y 

Delegate to other validator

emped tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uempe --from $WALLET --chain-id empe-testnet-2 --gas auto --gas-adjustment 1.5 --fees 30uempe -y 

Unbound token from your own validator

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 30uempe -y 

Sending token to other wallet

emped tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uempe --gas auto --gas-adjustment 1.5 --fees 30uempe -y 

Validator Operations

Edit existing validator

emped tx staking edit-validator \
--new-moniker="" \
--identity="" \
--details="" \
--website="" \
--chain-id=empe-testnet-2 \
--from=wallet \
--gas=auto \
-y 

Validator 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 30uempe -y 

Jailed Reason

emped q slashing signing-info $(emped tendermint show-validator) 

Governance

Vote You can change the value of yes to no,abstain,no withveto

emped tx gov vote (proposal number) yes --from $WALLET --chain-id empe-testnet-2 --gas=auto -y

Proposal List

emped query gov proposals 

Delete Node

this command for delete node make sure u had back up your priv_validator_key.json

cd $HOME && sudo systemctl stop emped && sudo systemctl disable emped && sudo rm /etc/systemd/system/emped.service && sudo systemctl daemon-reload && sudo rm -rf $(which emped) && sudo rm -rf $HOME/.empe-chain && sudo rm -rf $(which emped)
PreviousCreating ValidatorNextLumera Protocol

Last updated 2 days ago