Bitcoin Forum
April 23, 2024, 06:05:25 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Generate Multiple Wallet Addresses  (Read 178 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?

1713895525
Hero Member
*
Offline Offline

Posts: 1713895525

View Profile Personal Message (Offline)

Ignore
1713895525
Reply with quote  #2

1713895525
Report to moderator
1713895525
Hero Member
*
Offline Offline

Posts: 1713895525

View Profile Personal Message (Offline)

Ignore
1713895525
Reply with quote  #2

1713895525
Report to moderator
1713895525
Hero Member
*
Offline Offline

Posts: 1713895525

View Profile Personal Message (Offline)

Ignore
1713895525
Reply with quote  #2

1713895525
Report to moderator
The trust scores you see are subjective; they will change depending on who you have in your trust list.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713895525
Hero Member
*
Offline Offline

Posts: 1713895525

View Profile Personal Message (Offline)

Ignore
1713895525
Reply with quote  #2

1713895525
Report to moderator
1713895525
Hero Member
*
Offline Offline

Posts: 1713895525

View Profile Personal Message (Offline)

Ignore
1713895525
Reply with quote  #2

1713895525
Report to moderator
1713895525
Hero Member
*
Offline Offline

Posts: 1713895525

View Profile Personal Message (Offline)

Ignore
1713895525
Reply with quote  #2

1713895525
Report to moderator
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!