This file contains 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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Missing arguments!" | |
echo "" | |
echo "Argument for enable staker is missing." | |
echo "" | |
echo "Example usage ./enablestaker.sh Barrage" | |
exit 1; | |
fi |
This file contains 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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Missing arguments!" | |
echo "" | |
echo "Argument for purchase staker is missing." | |
echo "" | |
echo "Example usage ./purchasestaker.sh Barrage n2mncrSmtgDhTzTD4PNFkVoHG6gyNCxcTA" | |
exit 1; | |
fi |
This file contains 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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Missing arguments!" | |
echo "" | |
echo "Argument for set staker meta is missing." | |
echo "" | |
echo "Example usage ./setstakermeta.sh Barrage meta_key meta_value" | |
exit 1; | |
fi |
This file contains 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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Missing arguments!" | |
echo "" | |
echo "Argument for enable staker is missing." | |
echo "" | |
echo "Example usage ./enablestaker.sh Barrage" | |
exit 1; | |
fi |
This file contains 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
#!/bin/bash | |
if [ $# -eq 0 ]; then | |
echo "Missing arguments!" | |
echo "" | |
echo "Argument for claim QPoS balance is missing." | |
echo "" | |
echo "Example usage ./claimqposbalance.sh Barrage 1000" | |
exit 1; | |
fi |