Hey everybody,
PreambleI have written a simple coinjoin client which does peer-discovery via a central server (my own) and speaks with bitcoin-qt/bitcoind over RPC to construct transactions. The server opens a join session as soon as it receives an unsigned transaction. Then over the next 20 minutes it accepts more unsigned transactions, then closes the join session. At that point all the transactions are merged, the merged transaction is passed back to the clients, and they submit signatures. When all the signatures are in, the merged transaction is submitted to the network.
(If you don't use bitcoin-qt, it is possible to give txids and privkeys directly to the client, so our brainwallet-using friends are supported.)
DownloadsThe download links are:
Source:
https://github.com/apoelstra/cj-clientWindows binary:
https://wpsoftware.net/coinjoin/dload/cj-windows.zipMore information, as well as a link to the web interface (for those who would rather deal with raw transactions than use a point-and-click client) is available at
https://wpsoftware.net/coinjoin/client.phpWhen do the joins happen?You can use the joiner any time. However, to get people on the same page during these early days of few users, we will have scheduled joins starting at
7PM PST and
7PM GMT on
Monday,
Thursday and
Saturday. The recommended output size for these scheduled joins will be
0.5 BTC.
How do I use it?First, start bitcoin-qt with the
-server option. I think on Windows you can do this by Right-clicking on the program icon and going into `Properties'.
Even if you do not use bitcoin-qt, you will need bitcoin-qt or bitcoind to be running in other to do the transaction construction. I'm sorry for the inconvenience.
Next, start the joiner. It will communicate with bitcoin-qt to get a list of your coins. Choose the ones you want to join, and a target output size. When you are satisfied, click "View Transaction" to see the transaction that will get joined. You will see the inputs you selected, and several output addresses. These are new output addresses given to the joiner by bitcoin-qt.
(If you'd rather specify output addresses manually, click Advanced->Add Outputs... and type them in.)
If you are happy with this transaction, click 'Submit Transaction'. After a minute or so, the client will ask for your wallet passphrase. This is needed so that the client can sign the joined transaction. (The passphrase will not be sent over the network under any circumstances.)
That's it! Leave the client running, and when the session ends, it will sign a merged transaction and submit it to the network.
Good luck!