Author

Topic: Generate Multiple Wallet Addresses (Read 189 times)

legendary
Activity: 1946
Merit: 1427
December 11, 2017, 04: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://bitcointalksearch.org/topic/generating-thousands-of-addresses-101708

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.
member
Activity: 77
Merit: 13
December 11, 2017, 04: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?

Jump to: