validator
Guidance for Validator
Create wallet
To create new wallet you can use command below. Don’t forget to save the mnemonic
wardend keys add $WALLETTo recover your wallet using seed phrase
wardend keys add $WALLET --recoverShow your wallet list
wardend keys listSave wallet info
Add wallet and validator address into variables
WARDEN_WALLET_ADDRESS=$(wardend keys show $WALLET -a)
WARDEN_VALOPER_ADDRESS=$(wardend keys show $WALLET --bech val -a)
echo 'export WARDEN_WALLET_ADDRESS='${WARDEN_WALLET_ADDRESS} >> $HOME/.bash_profile
echo 'export WARDEN_VALOPER_ADDRESS='${WARDEN_VALOPER_ADDRESS} >> $HOME/.bash_profile
source $HOME/.bash_profileFund your wallet
In order to create validator first you need to fund your wallet with discord faucet.
curl -X POST -H "Content-Type: application/json" -d '{"address": "wardenxxxxx"}' https://faucet.alfama.wardenprotocol.orgCreate validator
check your wallet balance:
wardend query bank balances $WARDEN_WALLET_ADDRESSTo create your validator run command below
wardend comet show-validator
The output will be similar to this (with a different key):
{"@type":"/cosmos.crypto.ed25519.PubKey","key":"lR1d7YBVK5jYijOfWVKRFoWCsS4dg3kagT7LB9GnG8I="}Then, create a file named validator.json with the following content:
{    
    "pubkey": {"@type":"/cosmos.crypto.ed25519.PubKey","key":"lR1d7YBVK5jYijOfWVKRFoWCsS4dg3kagT7LB9GnG8I="},
    "amount": "1000000uward",
    "moniker": "your-node-moniker",
    "identity": "eqlab testnet validator",
    "website": "optional website for your validator",
    "security": "optional security contact for your validator",
    "details": "optional details for your validator",
    "commission-rate": "0.1",
    "commission-max-rate": "0.2",
    "commission-max-change-rate": "0.01",
    "min-self-delegation": "1"
}Finally, we're ready to submit the transaction to create the validator:
wardend tx staking create-validator validator.json \
    --from=$WALLET \
    --chain-id=alfama \
    --fees=500uwardCheck your validator key
[[ $(wardend q staking validator $WARDEN_VALOPER_ADDRESS -oj | jq -r .consensus_pubkey.key) = $(wardend status | jq -r .ValidatorInfo.PubKey.value) ]] && echo -e "\n\e[1m\e[32mTrue\e[0m\n" || echo -e "\n\e[1m\e[31mFalse\e[0m\n"Get list of validators
wardend q staking validators -oj --limit=3000 | jq '.validators[] | select(.status=="BOND_STATUS_BONDED")' | jq -r '(.tokens|tonumber/pow(10; 6)|floor|tostring) + " \t " + .description.moniker' | sort -gr | nlUsefull commands
Service management
Check logs
journalctl -fu wardend -o catStart service
sudo systemctl start wardendStop service
sudo systemctl stop wardendRestart service
sudo systemctl restart wardendNode info
Synchronization info
wardend status 2>&1 | jq .SyncInfoValidator info
wardend status 2>&1 | jq .ValidatorInfoNode info
wardend status 2>&1 | jq .NodeInfoShow node id
wardend tendermint show-node-idWallet operations
List of wallets
wardend keys listRecover wallet
wardend keys add $WALLET --recoverDelete wallet
wardend keys delete $WALLETGet wallet balance
wardend query bank balances $WARDEN_WALLET_ADDRESSTransfer funds
wardend tx bank send $WARDEN_WALLET_ADDRESS <TO_WARDEN_WALLET_ADDRESS> 1000000uwardVoting
wardend tx gov vote 1 yes --from $WALLET --chain-id=$WARDEN_CHAIN_IDStaking, Delegation and Rewards
Delegate stake
wardend tx staking delegate $WARDEN_VALOPER_ADDRESS 1000000uward --from=$WALLET --chain-id=$WARDEN_CHAIN_ID --gas=autoRedelegate stake from validator to another validator
wardend tx staking redelegate <srcValidatorAddress> <destValidatorAddress> 1000000uward --from=$WALLET --chain-id=$WARDEN_CHAIN_ID --gas=autoWithdraw all rewards
wardend tx distribution withdraw-all-rewards --from=$WALLET --chain-id=$WARDEN_CHAIN_ID --gas=autoWithdraw rewards with commision
wardend tx distribution withdraw-rewards $WARDEN_VALOPER_ADDRESS --from=$WALLET --commission --chain-id=$WARDEN_CHAIN_IDValidator management
Edit validator
wardend tx staking edit-validator \
  --moniker=$NODENAME \
  --identity=<your_keybase_id> \
  --website="<your_website>" \
  --details="<your_validator_description>" \
  --chain-id=$WARDEN_CHAIN_ID \
  --from=$WALLETUnjail validator
wardend tx slashing unjail \
  --broadcast-mode=block \
  --from=$WALLET \
  --chain-id=$WARDEN_CHAIN_ID \
  --gas=autoLast updated
