You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.0 KiB

#!/bin/bash
#Input list of asset chains
source ~/scripts/testnet/testlist
# Minimum number of UTXOs to maintain
MINUTXOS=100
# Amount of UTXOs to create at one time
SPLITAMNT=50
#Print Date and Time
now=$(date +"%Y-%m-%d %T%z")
printf "$now \n";
echo -n KMD
UTXOS="$(komodo-cli listunspent | grep .0005 | wc -l)"
echo -n -e '\t\t';echo -n "$UTXOS"
if [ "$UTXOS" -lt "$MINUTXOS" ]
then
echo -n " - SPLITFUNDING KMD"
RESULT="$(acsplit KMD 100)"
echo $RESULT
fi
echo ""
echo "Checking Other Coins"
# Check the rest of the coins using a loop
count=0
while [ "x${coinlist[count]}" != "x" ]
do
all=${coinlist[count]}
name=${all%% *}
if [ "$name" != "" ]
then
echo -n "$name"
UTXOS="$(komodo-cli -ac_name=$name listunspent | grep .0005 | wc -l)"
echo -n -e '\t\t';echo -n "$UTXOS"
if [ "$UTXOS" -lt "$MINUTXOS" ]
then
echo -n " - SPLIT FUNDING: $name"
RESULT="$(acsplit $name $SPLITAMNT)"
echo $RESULT
fi
fi
count=$(( $count +1 ))
echo ""
done
echo "FINISHED"