Service operations
#Check Logs
sudo journalctl -f -u junctiond
#Start service
sudo systemnctl start junctiond
#Restart Service
sudo systemnctl restart junctiond
withdraw all reward
junctiond tx distribution withdraw-all-rewards --from $WALLET --chain-id junction --gas auto --gas-adjustment 1.5 --fees 500amf Withdraw rewards and commission from your validator
junctiond tx distribution withdraw-rewards $VALOPER_ADDRESS --from $WALLET --commission --chain-id junction --gas auto --gas-adjustment 1.5 --fees 500amf -y Check wallet balance
junctiond query bank balances $WALLETDelegate to the validator itself
junctiond tx staking delegate $(junctiond keys show $WALLET --bech val -a) 1000000amf --from $WALLET --chain-id junction --gas auto --gas-adjustment 1.5 --fees 500amf -y Redelegate to other validators
junctiond tx staking redelegate $VALOPER_ADDRESS <TO_VALOPER_ADDRESS> 1000000amf --from $WALLET --chain-id junction --gas auto --gas-adjustment 1.5 --fees 500amf -y Unbond
junctiond tx staking unbond $(junctiond keys show $WALLET --bech val -a) 1000000amf --from $WALLET --chain-id junction --gas auto --gas-adjustment 1.5 --fees 500amf -y Transfer Funds
junctiond tx bank send $WALLET_ADDRESS <TO_WALLET_ADDRESS> 1000000amf --gas auto --gas-adjustment 1.5 --fees 500amf -y KEY MANAGEMENT
Create Wallet
junctiond keys add $WALLETRecover Existing Wallet
junctiond keys add $WALLET --recoverCheck All Available Wallet
junctiond keys listCheck wallet funds
junctiond q bank balances $WALLET_ADDRESS VALIDATOR INFORMATION
create a validator
junctiond tx staking create-validator \
--amount 1000000amf \
--from $WALLET \
--commission-rate 0.1 \
--commission-max-rate 0.2 \
--commission-max-change-rate 0.01 \
--min-self-delegation 1 \
--security-contact ""\
--pubkey $(junctiond tendermint show-validator) \
--moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--chain-id junction \
--gas auto \
--gas-adjustment 1.5 \
--fees 500amfedit existing validator
junctiond tx staking edit-validator \
--commission-rate 0.1 \
--new-moniker $MONIKER \
--identity "" \
--details "a validator blockchain" \
--from $WALLET \
--chain-id junction \
--gas auto \
--gas-adjustment 1.5 \
--fees 500amf \
-y validator status/info
junctiond status 2>&1 | jqUnjail validator
junctiond tx slashing unjail --from $WALLET --chain-id junction --gas auto --gas-adjustment 1.5 --fees 500amf -y