Useful commands
Useful set of commands for node operators. From key management to chain governance.
Create Valdator
quicksilverd tx staking create-validator \
--amount 99500000000uqck \
--from $WALLET \
--commission-max-change-rate "0.01" \
--commission-max-rate "0.2" \
--commission-rate "0.05" \
--min-self-delegation "1" \
--pubkey $(quicksilverd tendermint show-validator) \
--moniker $NODENAME \
--identity=91BCDBE6537D7D86 \
--details="Everything Crypto!" \
--website="https://www.nkbblocks.com" \
--security-contact "[email protected]" \
--chain-id $QUICKSILVER_CHAIN_ID
🔑 Key management
Add new key
Recover existing key
List all keys
Delete key
Export key to the file
Import key from the file
Query wallet balance
👷 Validator management
Create new validator
Edit existing validator
Unjail validator
Jail reason
List all active validators
List all inactive validators
View validator details
💲 Token management
Withdraw rewards from all validators
Withdraw commission and rewards from your validator
Delegate tokens to yourself
Delegate tokens to validator
🗳 Governance
List all proposals
View proposal by id
Vote 'Yes'
Vote 'No'
Vote 'Abstain'
Vote 'NoWithVeto'
⚡️ Utility
Update ports
Update Indexer
Update pruning
🚨 Maintenance
Get validator info
Get sync info
Get node peer
Check if validator key is correct
Get live peers
Set minimum gas price
Enable prometheus
Reset chain data
Remove node
⚙️ Service Management
Reload service configuration
Enable service
Disable service
Start service
Stop service
Restart service
Check service status
Check service logs
Last updated