Is there any possibility to automate the generating of sets BURST ADDRESS <-> PASSWORD <-> POOLv1 ID?
sure, you can script almost everything.
if you want dedicated named addresses like BURST-JACK-FSQD-2PEF-2HMZ7 with almost secure passwords you can use this sort of this shellscript:
while [ true ];
do
secret=`openssl rand -base64 45`
result=`curl --silent '
http://127.0.0.1:8125/burst' -H 'Origin:
http://127.0.0.1:8125' -H 'Accept-Encoding: gzip,deflate' -H 'Accept-Language: en-US,en;q=0.8,de;q=0.6' -H 'Content-Type: application/x-www-form-urlencoded; charset=UTF-8' -H 'Accept: */*' -H 'Referer:
http://127.0.0.1:8125/test?requestTag=ACCOUNTS' -H 'X-Requested-With: XMLHttpRequest' -H 'Connection: keep-alive' --data "requestType=getAccountId&secretPhrase=$secret" --compressed|awk -F':' '{print $4}'|awk -F',' '{print $1}'|awk -F'"' '{print $2}'|awk -F'-' '{print $2}'`
echo "address start: $result $secret"
if [[ $result == *JACK* ]]
then
echo "result is $result with secret: $secret"
touch ./$secret
break
fi
done
i still have a issue with curl. if the random privatekey contains a + curl truncates or converts them somehow so that you cannot use them with the wallet ui.
beside this it shows you can fund accounts and assign the reward receipient and do withdrawals utilizing curl and shellscript.