Useful Command
Useful Command
Wallet Commands
# Create a new wallet
latandad keys add wallet --home $HOME/.latanda
# Restore existing wallet
latandad keys add wallet --recover --home $HOME/.latanda
# Check sync status
latandad status 2>&1 | jq .sync_info --home $HOME/.latandaCreate Validator File
tee $HOME/validator.json > /dev/null << EOF
{
"pubkey": $(latandad comet show-validator --home $HOME/.latanda),
"amount": "1000000ultd",
"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