electrum-bitcoinprivate/server
ThomasV f9608c8dba address.subscribe 2012-03-17 13:58:00 +03:00
..
patches * Update server HOWTO to Bitcoin 0.5.2 2012-02-16 13:31:05 +02:00
HOWTO * Update server HOWTO to Bitcoin 0.5.2 2012-02-16 13:31:05 +02:00
LICENSE readmes 2011-11-10 01:23:34 +01:00
README remove electrum.php 2012-01-11 19:02:26 +03:00
README-IRC.txt typos 2011-12-01 19:43:30 +03:00
electrum.conf.sample * Add missing cache key to sample config. 2011-12-28 00:15:50 +02:00
server.py address.subscribe 2012-03-17 13:58:00 +03:00
start start and stop 2011-11-23 13:50:04 +03:00
stop start and stop 2011-11-23 13:50:04 +03:00

README

Electrum - server for the Electrum client

Licence: GNU GPL v3
Author: thomasv@gitorious
Language: Python

Features: 

* The server uses a patched version of the Bitcoin daemon that can
forward transactions, and bitcoin-abe 

* The server code is open source. Anyone can run a server, removing
single points of failure concerns.

* The server knows which set of Bitcoin addresses belong to the same
wallet, which might raise concerns about anonymity. However, it should
be possible to write clients capable of using several servers.


INSTALL

1. patch and recompile the bitcoin daemon: see bitcoinrpc.cpp.diff and main.cpp.diff

2. install bitcoin-abe : https://github.com/jtobey/bitcoin-abe

3. install jsonrpclib: code.google.com/p/jsonrpclib/

4. launch the server:  nohup python -u server.py > /var/log/electrum.log &


Note: 
You do not want to run bitcoin-abe and the server simultaneously, because they will both try to update the database. 
If you want bitcoin-abe to be available on your website, run it with the --no-update option