Post
Topic
Board Project Development
Re: How can I make a unique bitcoin address for multiple users on my website?
by
12648430
on 14/11/2013, 21:59:51 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.