Bit stuck on this one. I was wondering if anyone can help me find a script or dos command that would bulk create say 1000 FTC addresses per wallet into a listed spreadsheet or txt doc
Would really appreciate help on this one!
Koolio
SET /A COUNT=0
:Top
novacoind getnewaddress >> address.txt
SET /a COUNT=%COUNT%+1
IF %COUNT% == 1000 Goto :End
Goto :Top
:End
Obviously just change "novacoind" to your feathercoin daemon, start up your daemon, start the script.
EDIT: it's pretty slow. But it works.
EDIT 2: If you want to name/label each, it's pretty simple. I'll do a couple examples.
Labels one at a time by number:
SET /A COUNT=0
:Top
novacoind getaccountaddress %COUNT% >> address.txt
SET /a COUNT=%COUNT%+1
IF %COUNT% == 1000 Goto :End
Goto :Top
:End
Labels 1000 with the same name, labels another 1000 with next name:
SET /A COUNT=0
SET /A ROUND=1
:Top
SET /a COUNT=%COUNT%+1
novacoind getaccountaddress "Wallet %ROUND%-%COUNT%" >> address.txt
IF %COUNT% == 1000 (
SET /a ROUND=%ROUND%+1
SET /A COUNT=0
)
Goto :Top
:End