Useful commands
Service operations ⚙️
Check logs
sudo journalctl -u mantrachaind -fStart service
sudo systemctl start mantrachaindStop service
sudo systemctl stop mantrachaindRestart service
sudo systemctl restart mantrachaindCheck service status
sudo systemctl status mantrachaindReload services
sudo systemctl daemon-reloadEnable Service
sudo systemctl enable mantrachaindDisable Service
sudo systemctl disable mantrachaindNode info
mantrachaind status 2>&1 | jqYour node peer
echo $(mantrachaind tendermint show-node-id)'@'$(wget -qO- eth0.me)':'$(cat $HOME/.mantrachain/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')Key management
Add New Wallet
mantrachaind keys add $WALLETRestore executing wallet
mantrachaind keys add $WALLET --recoverList All Wallets
mantrachaind keys listDelete wallet
mantrachaind keys delete $WALLETCheck Balance
mantrachaind q bank balances $WALLET_ADDRESS Export Key (save to wallet.backup)
mantrachaind keys export $WALLETView EVM Prived Key
mantrachaind keys unsafe-export-eth-key $WALLETImport Key (restore from wallet.backup)
mantrachaind keys import $WALLET wallet.backupTokens
Withdraw all rewards
mantrachaind tx distribution withdraw-all-rewards --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom Withdraw rewards and commission from your validator
mantrachaind tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Check your balance
mantrachaind query bank balances $WALLET_ADDRESSDelegate to Yourself
mantrachaind tx staking delegate $(mantrachaind keys show $WALLET --bech val -a) 1000000uom --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Delegate
mantrachaind tx staking delegate <TO_VALOPER_ADDRESS> 1000000uom --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Redelegate Stake to Another Validator
mantrachaind tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000uom --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Unbond
mantrachaind tx staking unbond $(mantrachaind keys show $WALLET --bech val -a) 1000000uom --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Transfer Funds
mantrachaind tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000uom --gas auto --gas-adjustment 1.5 --fees 50uom -y Validator operations
Create New Validator
mantrachaind tx staking create-validator \
--amount 1000000uom \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--pubkey $(mantrachaind tendermint show-validator) \
--moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--chain-id mantra-hongbai-1 \
--gas auto --gas-adjustment 1.5 --fees 50uom \
-y \Edit Existing Validator
mantrachaind tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker "$MONIKER" \
--identity "" \
--details "I love blockchain ❤️" \
--from $WALLET \
--chain-id mantra-hongbai-1 \
--gas auto --gas-adjustment 1.5 --fees 50uom \
-y \Validator info
mantrachaind status 2>&1 | jqValidator Details
mantrachaind q staking validator $(mantrachaind keys show $WALLET --bech val -a) Jailing info
mantrachaind q slashing signing-info $(mantrachaind tendermint show-validator) Slashing parameters
mantrachaind q slashing params Unjail validator
mantrachaind tx slashing unjail --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Active Validators List
mantrachaind q staking validators -oj --limit=2000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " " + .description.moniker' | sort -gr | nl Check Validator key
[[ $(mantrachaind q staking validator $VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(mantrachaind status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "Your key status is ok" || echo -e "Your key status is error"Signing info
mantrachaind q slashing signing-info $(mantrachaind tendermint show-validator) Governance
Create New Text Proposal
mantrachaind tx gov submit-proposal \
--title "" \
--description "" \
--deposit 1000000uom \
--type Text \
--from $WALLET \
--gas auto --gas-adjustment 1.5 --fees 50uom \
-y \
Proposals List
mantrachaind query gov proposals View proposal
mantrachaind query gov proposal 1 Vote
mantrachaind tx gov vote 1 yes --from $WALLET --chain-id mantra-hongbai-1 --gas auto --gas-adjustment 1.5 --fees 50uom -y Last updated