Useful Command
Useful Command
Wallet Commands
# Create a new wallet
qied keys add wallet --home $HOME/.qie
# Restore existing wallet
qied keys add wallet --recover --home $HOME/.qie
# Check sync status
qied status 2>&1 | jq .sync_info --home $HOME/.qieCreate Validator File
tee $HOME/validator.json > /dev/null << EOF
{
"pubkey": $(qied comet show-validator --home $HOME/.qie),
"amount": "1000000aqie",
"moniker": "Your_Nodes_Name",
"identity": "Your_Keybase",
"website": "Your_Website",
"details": "Your_Detail",
"commission-rate": "0.05",
"commission-max-rate": "0.2",
"commission-max-change-rate": "0.05",
"min-self-delegation": "1"
}
EOF