2
Is there a way to display on a website of mine, a new address for every transaction?
e.g., I have a wallet, and every time it receives a donation, displays a new address on my website that corresponds to the address my wallet will recognize, so that no address ever receives two transactions?
thanks!!
3Sounds like a job for stealth addresses (I forgot the more recent name for them) which are not really implemented yet. 2nd choice would be an HD wallet where you put the XPUB key on your server and let it generate addresses on the fly. The server can generate a pool of like 10 addresses without payment (so not everything gets the same address) and then when a payment comes in you signal the server to skip all those and start using the next 10 addresses. Anyway, I don't have a copy/paste ready answer and there are a lot of details to this. – Jannes – 2016-01-11T19:47:42.113
2You want to use hierarchical deterministic wallets. They solve exactly the problem you are describing - to generate any number of new addresses on the fly. – Nayuki – 2016-01-12T01:13:18.417
Hierarchical Deterministic Wallets, interesting! Had to look that one up: https://en.bitcoin.it/wiki/Deterministic_wallet
– Scott – 2016-03-12T18:03:57.247