Node CLI Cheatsheet

  • Network Type: Testnet
  • Chain-id: elystestnet-1
  • Current Node version: v0.9.0
  • CLI Cheatsheet

    • Always be careful with the capitalized words
    • Specify --chain-id

    Wallet Management

    Add Wallet Specify the value <wallet> with your own wallet name

    elysd keys add <wallet>

    Recover Wallet

    elysd keys add <wallet> --recover

    List Wallet

    elysd keys list

    Delete Wallet

    elysd keys delete <wallet>

    Check Wallet Balance

    elysd q bank balances $(elysd keys show wallet -a)

    Validator Management

    Please adjust <wallet> , MONIKER , YOUR_KEYBASE_ID , YOUR_DETAILS , YOUUR_WEBSITE_URL

    Create Validator (Staking)

    elysd tx staking create-validator \
    --amount=100000000uelys \
    --pubkey=$(elysd tendermint show-validator) \
    --moniker="YOUR_MONIKER_NAME" \
    --identity="YOUR_KEYBASE_ID" \
    --details="YOUR_DETAILS" \
    --website="YOUR_WEBSITE_URL" \
    --chain-id=elystestnet-1 \
    --commission-rate=0.05 \
    --commission-max-rate=0.20 \
    --commission-max-change-rate=0.01 \
    --min-self-delegation=1 \
    --from=wallet \
    --gas-adjustment=1.4 \
    --gas=auto \
    --gas-prices=0uelys \
    -y

    Edit Validator

    elysd tx staking edit-validator \
    --moniker="<MONIKER>" \
    --identity="YOUR_KEYBASE_ID" \
    --details="YOUR_DETAILS" \
    --website="YOUR_WEBSITE_URL"
    --chain-id elystestnet-1 \
    --commission-rate=0.05 \
    --from=<wallet> \
    --gas-adjustment="1.15" \
    --gas auto \
    --gas-prices=0uelys \
    -y

    Unjail Validator

    elysd tx slashing unjail --from <wallet> --chain-id --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Check Jailed Reason

    elysd query slashing signing-info $(elysd tendermint show-validator)

    Token Management

    Withdraw Rewards

    elysd tx distribution withdraw-all-rewards --from wallet --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Withdraw Rewards with Comission

    elysd tx distribution withdraw-rewards $(elysd keys show wallet --bech val -a) --commission --from wallet --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Delegate Token to your own validator

    elysd tx staking delegate $(elysd keys show wallet --bech val -a) 1000000uelys --from wallet --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Delegate Token to other validator

    elysd tx staking redelegate $(elysd keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000uelys --from wallet --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Unbond Token from your validator

    elysd tx staking unbond $(elysd keys show wallet --bech val -a) 1000000uelys --from wallet --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Send Token to another wallet

    elysd tx bank send wallet <TO_WALLET_ADDRESS> 1000000uelys --from wallet --chain-id elystestnet-1

    Governance

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

    elysd tx gov vote 1 yes --from wallet --chain-id elystestnet-1 --gas-adjustment 1.4 --gas auto --gas-prices=0uelys -y

    Other

    Set Your own Custom Ports You can change value CUSTOM_PORT=44 To any other ports

    CUSTOM_PORT=40
    sed -i.bak -e "s%^proxy_app = \"tcp://127.0.0.1:26658\"%proxy_app = \"tcp://127.0.0.1:${CUSTOM_PORT}658\"%; s%^laddr = \"tcp://127.0.0.1:26657\"%laddr = \"tcp://127.0.0.1:${CUSTOM_PORT}657\"%; s%^pprof_laddr = \"localhost:6060\"%pprof_laddr = \"localhost:${CUSTOM_PORT}060\"%; s%^laddr = \"tcp://0.0.0.0:26656\"%laddr = \"tcp://0.0.0.0:${CUSTOM_PORT}656\"%; s%^prometheus_listen_addr = \":26660\"%prometheus_listen_addr = \":${CUSTOM_PORT}660\"%" $HOME/.elys/config/config.toml
    sed -i.bak -e "s%^address = \"tcp://0.0.0.0:1317\"%address = \"tcp://0.0.0.0:${CUSTOM_PORT}317\"%; s%^address = \":8080\"%address = \":${CUSTOM_PORT}080\"%; s%^address = \"0.0.0.0:9090\"%address = \"0.0.0.0:${CUSTOM_PORT}090\"%; s%^address = \"0.0.0.0:9091\"%address = \"0.0.0.0:${CUSTOM_PORT}091\"%; s%^address = \"0.0.0.0:8545\"%address = \"0.0.0.0:${CUSTOM_PORT}545\"%; s%^ws-address = \"0.0.0.0:8546\"%ws-address = \"0.0.0.0:${CUSTOM_PORT}546\"%" $HOME/.elys/config/app.toml

    Enable Indexing usually enabled by default

    sed -i -e 's|^indexer *=.*|indexer = "kv"|' $HOME/.elys/config/config.toml

    Disable Indexing

    sed -i -e 's|^indexer *=.*|indexer = "null"|' $HOME/.elys/config/config.toml

    Reset Chain Data

    elysd tendermint unsafe-reset-all --home $HOME/.elys --keep-addr-book

    Delete Node

    WARNING! Use this command wisely Backup your key first it will remove Defund from your system

    sudo systemctl stop elysd && \
    sudo systemctl disable elysd && \
    rm /etc/systemd/system/elysd.service && \
    sudo systemctl daemon-reload && \
    cd $HOME && \
    rm -rf .elys && \
    rm -rf $(which elysd)