Bitcoin Forum
June 23, 2024, 08:20:39 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Other / Beginners & Help / Re: Generating thousands of addresses on: August 19, 2012, 03:37:26 PM
After googling some more I guess I'm SOL if I have a Mac and want to do business with Bitcoins.

1) Bitcoind apparently doesn't work on Mac OS X.
2) The Armory client is pretty hard to compile.

Guess I have a reason to fire up my Windows partition :-)
2  Other / Beginners & Help / Re: Generating thousands of addresses on: August 19, 2012, 01:11:13 PM
why the need to generate them all at once?

if you're getting 10 customers a day, you just need to generate 11+ addresses a day to keep up and fill your db.

why the need to have them as vanity addresses? how long is the vanity string you have in mind?


I would rather just do it once and be done with it.

I was using vanitygen because it was the only tool I knew that could mass-generate bitcoin addresses.
3  Other / Beginners & Help / Re: Generating thousands of addresses on: August 19, 2012, 01:09:49 PM
Code:
for i in `seq 1 5000`; do bitcoind getnewaddress; done >addresses.txt

That command will generate 5000 addresses on your wallet using bitcoind(no import needed) and save the addresses to a text file.
Change 5000 to any other number you like.

Nice, just what I was looking for. Thank you very much.

Edit: I'm on a Mac. How do I install bitcoind? I found this wiki-article, but there's nothing listed under the Mac section.

https://en.bitcoin.it/wiki/Running_bitcoind#Mac
4  Other / Beginners & Help / Generating thousands of addresses on: August 19, 2012, 12:43:26 PM
Hello

I'm in the process of coding a webshop app, and would like to accept bitcoins.

What I want to do is this:

  • Pre-Generate a few thousand addresses with vanitygen.
  • Import the addresses in a mysql table.
  • Import the private keys in the Bitcoin app so I can easily see the money I've made.
  • Every new user that registers gets a bitcoin address from the mysql table.
  • A bitcoin notification service pings a script on the webserver when someone sends bitcoins to their address.
  • Their balance is updated and they can make purchases.

I'm having a few problems, though:

- Vanitygen is slow (2009 Core 2 Duo)

- Most notification services only support a low number of addresses.

- It's hard to import thousands of bitcoins into the Bitcoin app.

- An internet wallet like Blockchain only supports up to 400 addresses. (is there an alternative that supports more?)

I'd guess someone has done all this before. Is there an easy solution to this? Or am I handling this wrong?
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!