To install PyBC for yourself:
If you installed version 0.1 and want the new version 0.2:
The executables all go in ~/.local/bin. If you want the GUI, run:
This will start up a node listening on port 8008, storing block data in test.blocks, and encryption keys in test.keys (think wallet.dat). It also sets it generating blocks.
You can start up another node and tell it to talk to the first node:
This will start a second node with a different block store, a different set of keys, and a different listen port, and tell it to connect to the first node. They may fight over which blockchain is longer for a bit until they finally settle on one.
Once you have this all running, you can use the GUIs to send coins between the two instances. There's no transaction listing yet, but you can see your balance change. Note that you won't see your balance update until the next block (and your client won't know which of its unspent outputs it has used until the next block, and will cheerily generate double-spend transactions that miners will reject).
There's only UI for a single receiving address per node, and anonymizing transactions with new change addresses has not been implemented, but neither would be particularly difficult to add.
The whole thing works on Windows if you install:
- Python
- Visual C++ 2008 Runtime (an OpenSSL dependency)
- OpenSSL (a pyelliptic dependency)
- setuptools (a pip dependency)
- pip (to install pyelliptic, which is a pure Python module with no Windows installer)
- pyelliptic
- Twisted
Thoughts and feature requests?