Bitcoin Forum
June 14, 2024, 06:53:21 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Bulk Feathercoin Addresses?  (Read 374 times)
The Koolio (OP)
Hero Member
*****
Offline Offline

Activity: 560
Merit: 500


Minds are like parachutes they work best when open


View Profile WWW
June 18, 2013, 03:44:19 AM
 #1

Hi

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

1. Litecoin 2. Bitcoin 3. Any of the Anon coins
TheSpiral
Full Member
***
Offline Offline

Activity: 322
Merit: 113


Sinbad Mixer: Mix Your BTC Quickly


View Profile
June 18, 2013, 04:02:37 AM
Last edit: June 18, 2013, 04:34:24 AM by TheSpiral
 #2

Hi

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

I just tried with novacoin and it worked.

Code: (address.bat)
@echo off
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:
Code: (address.bat)
@echo off
SET /A COUNT=0
:Top
novacoind getaccountaddress %COUNT% >> address.txt
SET /a COUNT=%COUNT%+1
IF %COUNT% == 1000 Goto :End
Goto :Top

:End
^ Address label would be "1", "2", etc.

Labels 1000 with the same name, labels another 1000 with next name:
Code: (address.bat)
@echo off
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
^ Address would be "Wallet 1-1", "Wallet 1-2"... "Wallet 1-1000", "Wallet 2-1", etc.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!