Bitcoin Forum
August 25, 2024, 11:32:25 PM *
News: All versions of Windows are affected by a critical security bug; make sure you update.
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Generate Multiple Wallet Addresses  (Read 185 times)
thr3 (OP)
Member
**
Offline Offline

Activity: 77
Merit: 13


View Profile
December 11, 2017, 08:25:31 PM
 #1

How can I execute getnewaddress multiple times (say 1000) on Bitcoincore or BitcoinQT? Are there simpler options out there to generate multiple wallet addresses?

AdolfinWolf
Legendary
*
Offline Offline

Activity: 1946
Merit: 1427


View Profile
December 11, 2017, 08:44:19 PM
 #2

How can I execute getnewaddress multiple times (say 1000) on Bitcoincore or BitcoinQT? Are there simpler options out there to generate multiple wallet addresses?



Possibly, depending on what you want.

Are you looking for something like this? - > https://bitcointalk.org/index.php?topic=101708.0

It seems a bit outdated, but it should still work, simply open up the console, and try to execute the commands given in the comments.

Which are:

Code:
for i in `seq 1 5000`; do bitcoind getnewaddress; done >addresses.txt
^ Linux,

Code:
for /l %x in (1, 1, 5000) do bitcoind getnewaddress >> newaddrs.txt

^Windows

The corresponding private keys should automatically be added to your bitcoind  (?).

Would recommend playing around with a little bit and to try it out. I'm actually not quite sure if this will still work.

Optionally: you could use https://www.bitaddress.org/ to generate bulk adresses.

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!