🔨Staking
If you find this guide helpful, you can stake to our validator.
We would really appreciate it! 🚀add a variable with the validator address:
VAL_ADDRESS="tnam1q8vhe85yc5ttt7mveds58gyqzavfwnn9eqhfxpgc" # address of validator you want to stake toexport the variable:
echo "export VAL_ADDRESS="$VAL_ADDRESS"" >> $HOME/.bash_profile \
source $HOME/.bash_profiledelegate tokens:
namadac bond --source $WALLET --validator $VAL_ADDRESS --amount 500 --memo $MEMOcheck your user bonds:
namadac bonds --owner $WALLET check all bonded nodes:
namadac bonded-stake add stake:
namadac bond --source $WALLET --validator $VAL_ADDRESS --amount 500 --memo $MEMOunbond the tokens:
namadac unbond --source $WALLET --validator $VAL_ADDRESS --amount 15 --memo $MEMOwait for 6 epochs, then check when the unbonded tokens can be withdrawed:
namadac bonds --owner $WALLET withdraw unbonded tokens:
namadac withdraw --source $WALLET --validator $VAL_ADDRESS --memo $MEMOredelegate:
namadac redelegate --owner $WALLET --source-validator $VAL_ADDRESS --destination-validator <destination-validator-address> --amount 10 --memo $MEMOclaim rewards:
namadac claim-rewards --source $WALLET --validator $VAL_ADDRESS --memo $MEMOquery the pending reward tokens without claiming:
namadac rewards --source $WALLET --validator $VAL_ADDRESS Last updated