Post
Topic
Board Project Development
Re: How can I make a unique bitcoin address for multiple users on my website?
by
WagerBTC
on 14/11/2013, 23:44:45 UTC
Hierarchical Deterministic Wallets are the ideal way to do this, so that you can generate new addresses on the server as needed but the server has no ability to spend. There are implementations in python, Java, C++, and Ruby here: https://en.bitcoin.it/wiki/BIP_0032#Implementations
You could also communicate with Electrum over RPC.

I have been reading into Electrum and I still have to figure out which coding would be most secure. I am most familiar with Js so I will be looking into the implementations next. Thanks a lot for the response!