Advertisement
zndtoshi

Joinmarket + MyNodeBtc

Nov 4th, 2019
1,437
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. Hello. This tutorial is for installing Joinmarket wallet and make it work with mynodebtc full node. You'll need a separate computer or laptop (old laptops are perfect for this). The tutorial is created with UbuntuOS in mind but it should be very similar to any other OS.
  2.  
  3. Step 1: Go to mynodebtc web page and select "Manage" under the Bitcoin Core service.
  4. You will see a RPC PASSWORD field, click show and copy somewhere the password. We'll need it later.
  5. Quit the mynode webpage.
  6.  
  7. #Next we will install JM on your personal PC
  8. #Go to web and follow the installation guide for your Operating system. After installing Joinmarket jump to step 3.
  9.  
  10. Step 2: For Ubuntu (type these commands one by one in terminal. Skip lines that start with #):
  11. #Download Source Code (zip)
  12. git clone https://github.com/JoinMarket-Org/joinmarket-clientserver.git
  13. cd joinmarket-clientserver/
  14. sudo apt-get install virtualenv
  15. ./install.sh
  16. #Select yes for Qt-dependencies. This is the GUI or visual interface of the software.
  17. source jmvenv/bin/activate
  18. cd scripts/
  19. python joinmarket-qt.py
  20. #throws out an error saying config file must be edited (check exactly where the config file was created and go there and edit it)
  21. cd .joinmarket/
  22. sudo nano joinmarket.cfg
  23. #modify rpc_host=<mynode ip>, rpc_user=mynode, rpc_password=<pass>
  24. (to exit press ctrl+x, y, enter)
  25.  
  26. Step 3: Modify the Joinmarket config file to connect to mynode (For all operating systems):
  27. #modify rpc_host=<mynode ip>, rpc_user=mynode, rpc_password=<pass>
  28. (to exit press ctrl+x, y, enter)
  29.  
  30. #go back to joinmarket/scripts folder
  31. cd Downloads/joinmarket-clientserver/scripts/
  32. python joinmarket-qt.py
  33.  
  34. #At this point you should see Joinmarket GUI starting.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement