Useful commands
Service operations ⚙️
Check logs
sudo journalctl -u mantrachaind -f
Start service
sudo systemctl start mantrachaind
Stop service
sudo systemctl stop mantrachaind
Restart service
sudo systemctl restart mantrachaind
Check service status
sudo systemctl status mantrachaind
Reload services
sudo systemctl daemon-reload
Enable Service
sudo systemctl enable mantrachaind
Disable Service
sudo systemctl disable mantrachaind
Node info
mantrachaind status 2>&1 | jq
Your 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 $WALLET
Restore executing wallet
mantrachaind keys add $WALLET --recover
List All Wallets
mantrachaind keys list
Delete wallet
mantrachaind keys delete $WALLET
Check Balance
mantrachaind q bank balances $WALLET_ADDRESS
Export Key (save to wallet.backup)
mantrachaind keys export $WALLET
View EVM Prived Key
mantrachaind keys unsafe-export-eth-key $WALLET
Import Key (restore from wallet.backup)
mantrachaind keys import $WALLET wallet.backup
Tokens
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_ADDRESS
Delegate 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 | jq
Validator 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