Bitcoin Forum
May 04, 2024, 08:08:18 AM *
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?

1714810098
Hero Member
*
Offline Offline

Posts: 1714810098

View Profile Personal Message (Offline)

Ignore
1714810098
Reply with quote  #2

1714810098
Report to moderator
1714810098
Hero Member
*
Offline Offline

Posts: 1714810098

View Profile Personal Message (Offline)

Ignore
1714810098
Reply with quote  #2

1714810098
Report to moderator
1714810098
Hero Member
*
Offline Offline

Posts: 1714810098

View Profile Personal Message (Offline)

Ignore
1714810098
Reply with quote  #2

1714810098
Report to moderator
"There should not be any signed int. If you've found a signed int somewhere, please tell me (within the next 25 years please) and I'll change it to unsigned int." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714810098
Hero Member
*
Offline Offline

Posts: 1714810098

View Profile Personal Message (Offline)

Ignore
1714810098
Reply with quote  #2

1714810098
Report to moderator
1714810098
Hero Member
*
Offline Offline

Posts: 1714810098

View Profile Personal Message (Offline)

Ignore
1714810098
Reply with quote  #2

1714810098
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!