electrum-bitcoinprivate/README

56 lines
1.7 KiB
Plaintext
Raw Normal View History

2011-11-09 16:23:34 -08:00
Electrum - lightweight Bitcoin client
Licence: GNU GPL v3
Author: thomasv@gitorious
Language: Python
Features:
* Encrypted wallet: the file that contains your bitcoins is protected with a password. You are protected from thieves.
* Deterministic key generation: If you lose your wallet, you can recover it from its seed. You are protected from your own mistakes.
* No blockchain download: the client requests blockchain information from a server. No delays, always up-to-date.
* Transactions are signed locally: Your private keys are not shared with the server. You do not have to trust the server with your money.
* Privacy: The server does not know you, it does not store user accounts. You are not tied to a particular server.
* No single point of failure: The server code is open source, anyone can run a server.
* Firewall friendly: The client does not need to open a port, it simply polls the server for updates.
* Open Source: Anyone can audit the code.
* Python. Very compact code, easy to contribute.
INSTALL
2011-12-02 01:09:46 -08:00
If you use the source from git, you will need to install python-ecdsa and slowaes:
2011-11-09 16:23:34 -08:00
* sudo easy_install ecdsa
2011-11-29 01:32:56 -08:00
* sudo easy_install slowaes
2011-12-02 01:09:46 -08:00
These packages are included in the tar.gz and zip archives.
2012-02-14 14:32:53 -08:00
In order to use the gtk gui, you need pygtk and tk.
2011-12-02 01:09:46 -08:00
* apt-get install python-gtk2
* apt-get install python-tk
2012-03-15 06:34:46 -07:00
2011-11-09 16:23:34 -08:00
RUN
2012-02-14 14:32:53 -08:00
To start the Qt gui, type:
python electrum
To use the Gtk gui, type:
2012-02-14 23:22:12 -08:00
python electrum --gui gtk
2011-11-09 16:23:34 -08:00
2011-11-09 16:27:52 -08:00
If arguments are passed to the command line, Electrum will run in text mode.
2011-12-02 01:23:32 -08:00
Examples:
2012-02-14 14:32:53 -08:00
python electrum balance
python electrum help
2012-03-15 06:34:46 -07:00
HELP
the most up-to-date information is on the wiki:
https://en.bitcoin.it/wiki/Electrum
2012-02-14 14:32:53 -08:00
BROWSER CONFIGURATION
2012-02-14 23:22:12 -08:00
see http://ecdsa.org/bitcoin_URIs.html