Renamed: modules -> backends
[electrum-server.git] / README
1 Electrum - server for the Electrum client
2
3 Licence: GNU GPL v3
4 Author: thomasv@gitorious
5 Language: Python
6
7 Features: 
8
9 * The server uses a patched version of the Bitcoin daemon that can
10 forward transactions, and bitcoin-abe 
11
12 * The server code is open source. Anyone can run a server, removing
13 single points of failure concerns.
14
15 * The server knows which set of Bitcoin addresses belong to the same
16 wallet, which might raise concerns about anonymity. However, it should
17 be possible to write clients capable of using several servers.
18
19
20 INSTALL
21
22 1. patch and recompile the bitcoin daemon: see bitcoinrpc.cpp.diff and main.cpp.diff
23
24 2. install bitcoin-abe : https://github.com/jtobey/bitcoin-abe
25
26 3. install jsonrpclib: code.google.com/p/jsonrpclib/
27
28 4. launch the server:  nohup python -u server.py > /var/log/electrum.log &
29
30
31 Note: 
32 You do not want to run bitcoin-abe and the server simultaneously, because they will both try to update the database. 
33 If you want bitcoin-abe to be available on your website, run it with the --no-update option
34