I created a minimalistic and deterministic version of Bitcoin address generator (from Electrum Master Public Key).
It's based on php-ecc by Matyas Danter and mpkgen by Chris Savery.
The main difference from these two is that it's cleaned up significantly and therefore you need to require just one 7 kB PHP file.
It also requires GMP extension (no BCMath this time), so it's a little bit faster than php-ecc which uses an abstraction layer on top of GMP and BCMath.
I also ported the code to:
* Python - you'll need to have gmpy package installed.
* Ruby - you'll need to have ffi rubygem installed.
The code is MIT licensed and lives here:
https://github.com/prusnak/addrgenI hope this will enable all of you to create your own tipping platforms, eshops and crowdfunding pages. (Most of the software dealing with deterministic wallets was written in Python up to now).
Donations are welcome at 1PuRV7zVXrajGxHJ6LJLccgDYz4hNcVPfS
Thanks!