Skip to content

Latest commit

 

History

History
45 lines (25 loc) · 2.19 KB

README.md

File metadata and controls

45 lines (25 loc) · 2.19 KB

##What is JoinMarket ?

The idea behind JoinMarket is to allow users to have their bitcoins mixed with other JoinMarket users in return for a fee. A form of smart contract is created, meaning the private keys will never be broadcasted outside of your computer, resulting in virtually zero risk of loss (aside from malware or bugs).

Simply put, JoinMarket allows its users to improve the privacy of their bitcoin transactions (and therefore maintaining or even restoring fungibility) in a decentralized fashion. On the other side, there are the JoinMarket operators who provide access to their bitcoins for others to use in mixing transactions. Their incentive is in the form of a fee in return for the provision of their bitcoins, meaning JoinMarket could become a form of passive income.

As a result of free-market forces (i.e. anyone with bitcoins can become a JoinMarket operator), the fees will eventually be next to nothing.

##Installation

#####REQUIRED INSTALLATION DEPENDENCIES

  • You will need python 2.7

  • You will need libsodium installed

  • You can get it here: http://doc.libsodium.org/ or through apt-get as libsodium-dev

  • Use this line to check it was installed correctly: python lib/enc_wrapper.py

  • Matplotlib for displaying the graphs in orderbook-watcher (optional)

###DEBIAN / UBUNTU QUICK INSTALL:

  1. sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get install python libsodium-dev -y
  2. sudo apt-get install python-matplotlib -y (optional)
  3. git clone https://github.com/chris-belcher/joinmarket.git
  4. Generating your first wallet will populate the configuration file: joinmarket.cfg. Check if the default settings suit your needs.

###WIKI PAGES FOR DETAILED ARTICLES/GUIDES

###FOR WINDOWS