Chain ID: router_9600-1 | Current Node Version: v2.2.4
This cheatsheet collects commonly used CLI commands for node operators to easily copy and paste. A few conventions we follow:
--chain-id
and --node
flags
even when they are unnecessary
--output json
flag and
pipes result through jq
routerd tx bank send KEY RECEIVER_ADDRESS 1000000route \
--chain-id router_9600-1 \
--node https://router-rpc.polkachu.com:443 --fees=100000000000000route \
--from KEY
routerd tx distribution withdraw-rewards VALIDATOR_OPERATOR \
--commission \
--chain-id router_9600-1 \
--node https://router-rpc.polkachu.com:443 --fees=100000000000000route \
--from KEY
routerd query gov proposal PROPOSAL_NUMBER \
--chain-id router_9600-1 \
--node https://router-rpc.polkachu.com:443 \
--output json | jq
VOTE_OTION: yes
, no
,
no_with_veto
and abstain
.
routerd tx gov vote PROPOSAL_NUMBER VOTE_OPTION \
--chain-id router_9600-1 \
--node https://router-rpc.polkachu.com:443 --fees=100000000000000route \
--from KEY
routerd tx slashing unjail \
--chain-id router_9600-1 \
--node https://router-rpc.polkachu.com:443 --fees=100000000000000route \
--from KEY
Note: We use example filed values instead of capitalized dummy words for demo purpose in this command. Please make sure to adjust accordingly for your use.
routerd tx staking create-validator \
--amount 1000000route \
--commission-max-change-rate "0.05" \
--commission-max-rate "0.10" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey=$(routerd tendermint show-validator) \
--moniker 'polkachu.com' \
--website "https://polkachu.com" \
--identity "0A6AF02D1557E5B4" \
--details "Polkachu is the trusted staking service provider for blockchain projects. 100% refund for downtime slash. Contact us at [email protected]" \
--security-contact="[email protected]" \
--chain-id router_9600-1 \
--node https://router-rpc.polkachu.com:443 --fees=100000000000000route \
--from KEY
If you have feedback or find errors in this cheatsheet, please let us know in our Discord Server. Thanks!