Last active
January 8, 2019 03:53
-
-
Save nckrtl/d05b7af24a72032ca83c33b26b312644 to your computer and use it in GitHub Desktop.
Auto delegate
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "Enter your key password:" | |
| read -s password | |
| while true | |
| do | |
| amount_steak=$(gaiacli query account <comosaddr> --chain-id=9001 --trust-node=true | jq -r '.value.coins[0].amount') | |
| if [[ $amount_steak > 0 && $amount_steak != "null" ]]; then | |
| echo "About to stake ${amount_steak} steak" | |
| echo "${password}" | gaiacli tx delegate --amount=${amount_steak}steak --from=crytter --validator=<cosmosvaloper> --chain-id=gaia-9001 | |
| fi | |
| sleep 60 | |
| done |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This script auto delegates unused steak in the account to a validator of your liking every 60 seconds.
Replace
<cosmosaddr>and<cosmosvaloper>with your own values. Also make sure your using the correctchain-idcosmosaddr can be found via
gaiacli keys listand the cosmosvaloper can be found viagaiacli keys show <key_name> --bech=valYou can run the script with
bash <scriptname>.sh