Command

Managing keys

Generate new key

junctiond keys add wallet

Recover key

junctiond keys add wallet --recover

List all key

junctiond keys list

Query wallet balances

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

Managing validators

Create validator

junctiond tx staking create-validator \
--amount=10000000amf \
--pubkey=$(junctiond tendermint show-validator) \
--moniker=$MONIKER \
--identity="YOUR_KEYBASE_ID" \
--details="YOUR_DETAILS" \
--website="YOUR_WEBSITE_URL" \
--chain-id=junction \
--commission-rate=0.10 \
--commission-max-rate=0.20 \
--commission-max-change-rate=0.01 \
--min-self-delegation=1000 \
--from=wallet \
--gas-adjustment=1.5 \
--fees=200amf \ 
-y

Edit validator

Unjail

View validator details

Query active validators

Query inactive validators

Managing Tokens

Delegate tokens to your validator

Send token

Withdraw reward from all validator

Withdraw reward and commission

Redelegate to another validator

Governance

Query list proposal

View proposal by ID

Vote yes

Vote No

Vote option asbtain

Vote option NoWithVeto

Maintenance

Check sync

Node status

Get validator information

Get your p2p peer address

Get peers live

Last updated