Nodevism.com
  • Nodevism
    • Introduction
  • Mainnet
    • CrossFi
      • Installation
    • Medasdigital
  • Testnet
    • Aztec
    • Cortensor
    • Covalent
      • EWM Client
    • Dill.xyz
      • Dill light node
    • Empeiria
      • Endpoints
      • Requirement
      • Installation
    • Lumera Protocol
      • Public endpoint
      • Installation
      • Snapshot
      • Create Validator
      • 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
    • 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)
Powered by GitBook
On this page
  1. Testnet
  2. Lumera Protocol

CLI Cheatsheet

Useful Commands

to check logs of your node

sudo journalctl -u lumerad -f -o cat

to start your node service

sudo systemctl start lumerad

Stop service

sudo systemctl stop lumerad

Restart node

sudo systemctl restart lumerad

to check sync status

lumerad status 2>&1 | jq .SyncInfo

Node info

lumerad status 2>&1 | jq .NodeInfo

show node ID

lumerad tendermint show-node-id

delete wallet

lumerad keys delete $WALLET

to check wallet balance

lumerad q bank balances $(lumerad keys show $WALLET -a)

transfer funds to another wallet

lumerad tx bank send wallet <TO_WALLET_ADDRESS> 1000000ulume --from $WALLET --chain-id Lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

View evm priv key

lumerad keys unsafe-export-eth-key $WALLET

Withdraw all rewards

lumerad tx distribution withdraw-all-rewards --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

withdraw rewards and comission from your validator

lumerad tx distribution withdraw-rewards $(lumerad keys show wallet --bech val -a) --commission --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

check your balance

lumerad query bank balances $WALLET_ADDRESS

delegate to your self

lumerad tx staking delegate $(lumerad keys show wallet --bech val -a) 1000000uodis --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

redelegate stake to another validator

lumerad staking redelegate $(lumerad keys show wallet --bech val -a) <TO_VALOPER_ADDRESS> 1000000ulume --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

unbound stake

lumerad tx staking unbond $(lumerad keys show wallet --bech val -a) 1000000ulume --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

transfer funds

lumerad tx bank send wallet <TO_WALLET_ADDRESS> 1000000ulume --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

validator details

lumerad q staking validator $(lumerad keys show $WALLET --bech val -a)

jailing info

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

unjail validator

lumerad tx slashing unjail --from $WALLET --chain-id lumera-testnet-1 --gas-prices=0.25ulume --gas-adjustment=1.5 --gas=auto

active set validator

lumerad q staking validators -oj | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + "          " + .description.moniker' | sort -gr | nl

Delete Node

sudo systemctl stop lumerad
sudo systemctl disable lumerad
sudo rm /etc/systemd/system/lumerad.service
sudo systemctl daemon-reload
rm -f $(which lumerad)
rm -rf .lumera
PreviousCreate ValidatorNextOdiseo

Last updated 10 hours ago