create account

Decentralized Trading Guide: Installation and Initial Configuration by karnal

View this thread on: hive.blogpeakd.comecency.com
· @karnal · (edited)
$45.45
Decentralized Trading Guide: Installation and Initial Configuration
![](https://i.imgsafe.org/320b7eefed.png)

Joining the ranks of people scammed by centralized exchanges is perfectly avoidable. In this series, I will show you how..

# Notice

The images in this article are appearing *way too small* on my display, but only when loaded from steemit.com.

If the same happens to you, please open the relevant images in a separate tab, they will then be the right size.

Sorry for the inconvenience!

# Introduction

[Recent events](https://www.coindesk.com/bitfinex-bitcoin-hack-know-dont-know/) once again demonstrate that we should **think twice** before resorting to the services of a centralized crypto-currency service.

It is not just the [privacy implications](https://steemit.com/money/@karnal/how-to-convert-usd-to-steemusd-in-one-step) (jump to "What is wrong with Bitcoin Exchanges?", or even better, *read the whole article, I consider it Part 1 of this series*) that should make you pause and assess the situation.

If you use these centralizes services, **your funds are at risk too**.

There are better alternatives. 

As part of my unofficial campaign to raise awareness of **alternatives to centralized crypto-currency services**, I would like to continue developing the topic of [Bitsquare](https://bitsquare.io/) for Steemit users.

For an introduction to Bitsquare (what it is, what it aims to do, and how to create more synergy between Bitsquare and Steemit, [read this](https://steemit.com/money/@karnal/how-to-convert-usd-to-steemusd-in-one-step).

# Scope of the series

While it is possible to convert from/to Bitcoin to/from [Altcoins](http://www.investopedia.com/terms/a/altcoin.asp) (say, STEEM to/from BTC), here I am aiming exclusively at demonstrating how you can go to/from money in a bank account (and [Alipay](https://intl.alipay.com/), [Perfect Money](https://perfectmoney.is/?welcome=1), [OKPay](https://www.okpay.com/en/), even [Swish](https://www.getswish.se/) (for our Swedish friends) to Bitcoin.

*(disclaimer: I do not endorse any of those services, as I do not use them personally)*

We will do this **without** setting ourselves up for *identity theft* (by providing sensitive documents to companies of questionable reputation and competence) and without **putting our funds at their mercy**.

## Desired end result

By the end of the series, you will be able to effortlessly go to and from fiat money to Bitcoin, at which point it is very simple to change to many other crypto-currencies ([including SteemUSD](https://steemit.com/investment/@karnal/thinking-of-selling-your-bitcoin-for-fiat-currency-put-it-in-steemusd-instead))

Once you understand the basic routines of using the Bitsquare software, signing away your privacy and sending your money to an untrustworthy third-party will all be distant memories in the past.

# Preparations

![](https://thumbs.dreamstime.com/x/preparations-meal-25933779.jpg)

Naturally, we begin by [installing the software](https://github.com/bitsquare/bitsquare/releases).

It is also very important to **verify that your download has not been tampered with**.

This should **never** happen, but since it is software that handles crypto-currency that we are talking about, you **really should** verify the authenticity of your download.

*Thankfully* (so that I do not have to) the good folks over at [The Tor Project](https://www.torproject.org) have already [written a guide](https://www.torproject.org/docs/verifying-signatures.html.en) on how to do so for [Mac OS X](http://www.apple.com/osx/), [GNU/Linux](https://www.gnu.org/gnu/linux-and-gnu.en.html) and [Microsoft Windows](https://www.fsf.org/news/the-fsfs-statement-on-windows-10).

## Verifying the download

![](https://i.imgsafe.org/32e108b8c7.jpeg)

This section is, necessarily, technical.

I have tried to keep it as simple as possible, but it is unavoidable that some technical terms and concepts have to be introducted.

Truthfully, the chances that you end up with a backdoored version of the software are very, very tiny. If you can live with the uncertainty, feel free to skip this whole section.

Otherwise...

When you click the download link for Bitsquare above, you are taken to their [GitHub](https://github.com) page.

In that page, you will find a few more files, besides the .dmg (if you are on a Mac), .deb (for Debian-like linux distributions) or .exe (for Windows users).

Go ahead and download the one for your operating system.

Other than that, the two files that you are interested in, for purposes of verifying the download (.dmg, .deb or .exe), are *F379A1C6.asc* and *signed_sha256_hashes.txt*.

The former is a [public key](http://computer.howstuffworks.com/encryption3.htm) that you will import to gpg-compatible software.

The latter is a *[cryptographically signed](https://en.wikipedia.org/wiki/Digital_signature)* file with the [hashes](https://en.wikipedia.org/wiki/File_verification) of the Bitsquare file (.dmg, .exe or .deb).


**If all of this is over your head, the important things to understand are**:

- You import the public key (*F379A1C6.asc*) to your GPG-compatible software, as described in the TorProject Guide above.
> $ gpg --import **/tmp/F379A1C6.asc**
> gpg: key F379A1C6: public key "Manfred Karrer <manfred@bitsquare.io>" imported
> gpg: Total number processed: 1
> gpg:               imported: 1
> gpg: 3 marginal(s) needed, 1 complete(s) needed, PGP trust model
> gpg: depth: 0  valid:  15  signed:   0  trust: 0-, 0q, 0n, 0m, 0f, 15u
> gpg: next trustdb check due at 2020-06-15

- You verify that *signed_sha256_hashes.txt* has not been tampered with:
> $ gpg --verify /tmp/signed_sha256_hashes.txt 
> gpg: Signature made Sat 30 Jul 2016 12:56:16 AM WEST using RSA key ID F379A1C6
> gpg: **Good signature** from **"Manfred Karrer <manfred@bitsquare.io>"** [unknown]
> gpg: WARNING: This key is not certified with a trusted signature!
> gpg:          There is no indication that the signature belongs to the owner.
> Primary key fingerprint: 1DC3 C8C4 316A 698A C494  039C F5B8 4436 F379 A1C6

- Now that you know that the *hashes* inside *signed_sha256_hashes.txt* have not been tampered with (because the cryptographic signature checks out), you compare the hashes - if they match, you have the correct file.

> $ sha256sum /tmp/Bitsquare-64bit-0.4.9.2.deb 
> **1826d8c9a205db5a6dc4a2d1c56a52be95955817088e0989ab832dd8b915b07b** /tmp/Bitsquare-64bit-0.4.9.2.deb

> $ grep Bitsquare-64bit-0.4.9.2.deb /tmp/signed_sha256_hashes.txt
> **1826d8c9a205db5a6dc4a2d1c56a52be95955817088e0989ab832dd8b915b07b**  Bitsquare-64bit-0.4.9.2.deb


  - For Windows, *sha256sum* and *grep* are not available.
    - You need instead to open *signed_sha256_hashes.txt* with *notepad* and visually compare (the hashes).
    - For computing the sha256 hash on Windows, [I found this](https://sourceforge.net/projects/quickhash/) online.


As you can see above, the output of *sha256sum* matches the hash for *Bitsquare-64bit-0.4.9.2.deb*, as described in *signed_sha256_hashes.txt*, which I verified was the original file, by checking the digital signature.

All good, we have the right file.

## Installation

![](https://i.imgsafe.org/32eb9bb236.jpg)

I can only provide an example for Linux. Installing on a Mac or a Windows system should be equally (if *slightly* more graphical) simple.

> $ sudo dpkg -i /tmp/Bitsquare-64bit-0.4.9.2.deb 
> (Reading database ... 91859 files and directories currently installed.)
> Preparing to unpack .../Bitsquare-64bit-0.4.9.2.deb ...
> Removing shortcut
> Unpacking bitsquare (0.4.9.2) over (0.4.9) ...
> Setting up bitsquare (0.4.9.2) ...
> Adding shortcut to the menu

That is it! We are now ready to begin using the software.

# Setting Bitsquare up

Congratulations! You have (perhaps) made sure that you are installing the software as the authors intended, and you are now ready to start it up.

Launch the software. You should be greeted by something like the following image.

![](https://i.imgsafe.org/320b7021e2.png)

## Warning!
This guide assumes that you live in a country where **direct access to the Tor network is not censored**.

Bitsquare **operates over Tor**, and if you cannot connect to the Tor Network directly, you will need to use [bridges](https://www.torproject.org/docs/bridges.html.en). That is outside the scope of this tutorial, but drop a comment below if you are in this situation.

## First launch

Give the software some time to catch up with the network, and eventually you should see ..

## The main screen

![](https://i.imgsafe.org/320b9bf384.png)

At the top, we have a series of clickable icons separated by the bitcoin price (fiat denominated) and the *available Bitcoin balance*.

Bitsquare is also a **bitcoin wallet**, which you will learn to fund and operate in the next article in this series.

Since you have just installed the software and the Bitsquare developers are not *that* generous, your BTC balance sits predictably at 0.00.

The two icons at the far right (*Settings* and *Account*) will be the focus of this article.

The central part of the screen is taken by the [order book](https://en.wikipedia.org/wiki/Order_book_(trading)) pertaining to the relevant (crypto-)currency - by default, the [US Dollar](https://en.wikipedia.org/wiki/USD).

Under the order book, on the left you will see the top 3 offers to **buy bitcoin**, and on the right, the top 3 offers to **sell bitcoin**.

## Securing Bitsquare
![](https://thumbs.dreamstime.com/x/computer-security-laptop-padlock-as-metaphor-information-32158189.jpg)

There are only a handful of settings that you need to change in order to improve the security of your installation.

By this I mean settings *inside the Bitsquare application* - I am not addressing the bigger scope of your [opsec](https://en.wikipedia.org/wiki/Operations_security) here.

First and foremost, you will set a **high-quality, random password**.

This topic has been beaten to death on steemit already, so I will not repeat everything that has been said once again.

Merely, I will tell you this: you need a [password manager](https://en.wikipedia.org/wiki/Password_manager), and I recommend [KeePassX](http://keepass.info/download.html) - the *Classic Edition* (1.31 at the time of this writing).

You **must keep regular backups of this application**, and you **must choose a strong password to secure the password manager itself**.

So go ahead and generate a *giant* password for Bitsquare, using KeePassX (or your choice of password manager).

Then, *in Bitsquare*, click the *Account* button (top, far right), then on the left side, *Wallet password*.

You will see a healthy privacy disclaimer, which will become relevant later (see: "Customizing Bitsquare", below)

![](https://i.imgsafe.org/320b887983.png)
*Copy-paste the randomly generated password from the password manager*

You will receive the following confirmation:

![](https://i.imgsafe.org/320b676416.png)

From now on, your password will be required for certain operations, *including starting up the Bitsquare application*.

The other setting you should change is to *make Bitsquare connect to the Bitcoin network via Tor* - this will make your transactions **more private**, as they will no longer be tied down to your [IP address](https://en.wikipedia.org/wiki/IP_address).

To do that, click the *Settings* button (next to *Account*, top right), then click the *Network info* tab, and check *Use Tor for Bitcoin Network*.

![](https://i.imgsafe.org/3213fa9de9.png)
*Click "Apply and Shutdown", and wait for the application to come back - or restart it manually if it does not (happened during this demo session)*

The startup screen will change slightly to reflect this change:

![](https://i.imgsafe.org/320bb238a1.png)

A few seconds later you should be back to the main screen. You should have also been asked during startup to input your Bitsquare password.

## Account setup

![](https://i.imgsafe.org/320b4bbffc.png)
*None of the account information we will set up is transmitted from your computer (preserving your privacy), up to the point it has to be - and only to the person that needs it (your trading partner))*

When it is time to trade crypto-currency for fiat (you want your SteemUSD to show up in your bank account as USD, EUR, etc), a peer-to-peer trading partner will send you fiat money in exchange for your Bitcoin (to recap: you are **selling bitcoin** and **buying fiat money** in this case)

**For this to happen the trading partner needs to know where to send the fiat money.**

Thus, we set up one or more accounts.

The first step is choosing **which payment method** to use.

![](https://i.imgsafe.org/320b93ddb4.png)

For purposes of this demo, I have set up an EUR account using SEPA, and a USD account for national transfers in the US.

**NOTE**: Once you create an account, it is **not possible** to edit the details - you have to *delete* the account, and start over. So, make sure all the details are correct before clicking *Save new account*.

Once again, click *Account* (top right corner). Then, click (on the left), *National currency accounts*.

![](https://i.imgsafe.org/320b5b956b.png)
*(fictitious details, demo)*

As you can see, for *SEPA*, it is even possible to select *which countries* we will be accepting business from.

Double-check your IBAN, SWIFT, and account holder. Name your account properly (I like using "[CURRENCY/PAYMENT_METHOD]: Description".

Finally, click *Save new account*.

For a *national bank transfer* in the US, here is how it might look like instead:

![](https://i.imgsafe.org/320b63ca18.png)
*(fictitious details, demo)*

## Final customizations

Click *Settings* (top right).

The main screen there has some options that you should explore:

![](https://i.imgsafe.org/320ba41ffe.png)
*add and remove the national currencies that are relevant to you, ditto for crypto-currencies*

# Recap

We have installed and secured our Bitsquare installation, which will allow us to trade in and out of crypto-currency without recourse to a third-party exchange.

Furthermore, we have set up one or more bank accounts, where our trading partners will be sending fiat money in exchange for Bitcoin.

Though Steemit does not use Bitcoin, it is trivial to exchange SteemUSD (or indeed, STEEM) for Bitcoin using [blocktrades](https://blocktrades.us) ([simple tutorial](https://steemit.com/investment/@karnal/thinking-of-selling-your-bitcoin-for-fiat-currency-put-it-in-steemusd-instead)).

This makes it possible - and easy - to materialize some of our Steemit profits in our bank account(s).

We have also customized the software to our liking, ignoring all currencies that do not interest us.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 57 others
properties (23)
authorkarnal
permlinkdecentralized-trading-guide-installation-and-initial-configuration
categorybitsquare
json_metadata{"tags":["bitsquare","steemit","bitshares","bitcoin","cryptocurrency"],"links":["https://sourceforge.net/projects/quickhash/"]}
created2016-08-04 12:12:48
last_update2016-08-04 20:45:42
depth0
children24
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value39.012 HBD
curator_payout_value6.436 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14,668
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,161
net_rshares19,349,146,816,912
author_curate_reward""
vote details (121)
@acec ·
$0.03
I feel  great disturbance if Force that makes me upvote posts about Bitsquere... Once again, another exchange hacked... well... "hacked". If Bitcoins is P2P, exchanges should also be P2P. Bitsquere is what Satoshi would use to buy bitcoin ;)
👍  , , ,
properties (23)
authoracec
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t124057436z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 12:41:12
last_update2016-08-04 12:41:12
depth1
children1
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.004 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length241
author_reputation693,860,176,160
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,611
net_rshares35,378,359,823
author_curate_reward""
vote details (4)
@karnal ·
$0.03
I share the same opinion!

Stay tuned, more articles about this coming over the following days .. :)
👍  ,
properties (23)
authorkarnal
permlinkre-acec-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t164436700z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 16:44:36
last_update2016-08-04 16:44:36
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id605,213
net_rshares32,689,193,803
author_curate_reward""
vote details (2)
@bitcoinfly ·
Very useful guide. Decentralized markets like Bitsquare is the way to go!
👍  
properties (23)
authorbitcoinfly
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160805t094138172z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-05 09:41:39
last_update2016-08-05 09:41:39
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation714,517,472
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id620,666
net_rshares31,428,156,145
author_curate_reward""
vote details (1)
@cheremet ·
properties (23)
authorcheremet
permlinkdecentralized-trading-guide-installation-and-initial-configuration
categorybitsquare
json_metadata""
created2016-08-04 12:39:51
last_update2016-08-04 12:39:51
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation-269,345,517,998
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,589
net_rshares-31,636,654,296
author_curate_reward""
vote details (49)
@jabberw0cky ·
$0.03
Thank you for this karnal. But what is the advantage of using this over BitShares? BitShares is totally decentralized too.
👍  
properties (23)
authorjabberw0cky
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t175949171z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 17:59:57
last_update2016-08-04 17:59:57
depth1
children1
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.002 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation2,488,807,039,602
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id606,626
net_rshares32,632,472,974
author_curate_reward""
vote details (1)
@karnal ·
$0.03
Not when it comes to going in and out of fiat currency.

If you read my writings you will quickly realize I am a big #bitshares fan, but #bitsquare is a better tool for this particular job.

Even if there were enough fiat gateways on the Bitshares ecosystem, you would still always depend on them to honor your conversion request.

Bitsquare differs in that it is peer to peer *and* decentralized.

Bitshares does not aim to be peer to peer at all.

Hope that clears the confusion!
👍  ,
properties (23)
authorkarnal
permlinkre-jabberw0cky-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t181053100z
categorybitsquare
json_metadata{"tags":["bitshares","bitsquare"]}
created2016-08-04 18:10:54
last_update2016-08-04 18:10:54
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length481
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id606,786
net_rshares32,689,193,803
author_curate_reward""
vote details (2)
@karnal ·
Big correction to this article, the KeePassX version I recommend is 0.4.x, not 1.31 - that is for KeePass, a different (but related program).

Article is no longer editable, my apologies for this oversight!
👍  
properties (23)
authorkarnal
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160805t101822500z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-05 10:18:21
last_update2016-08-05 10:18:21
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length206
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id621,134
net_rshares30,773,402,892
author_curate_reward""
vote details (1)
@karnal ·
![](https://img1.steemit.com/0x0/https://i.imgsafe.org/461f756695.jpeg)

For those interested, I have [written a post](https://steemit.com/steem/@karnal/securing-your-password-manager) about properly securing the password manager.
👍  
properties (23)
authorkarnal
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160805t102605900z
categorybitsquare
json_metadata{"tags":["bitsquare"],"image":["https://img1.steemit.com/0x0/https://i.imgsafe.org/461f756695.jpeg"]}
created2016-08-05 10:26:06
last_update2016-08-05 10:26:06
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length230
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id621,247
net_rshares30,118,649,639
author_curate_reward""
vote details (1)
@licdocarlos ·
nice post...!
properties (22)
authorlicdocarlos
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t130023348z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 13:00:12
last_update2016-08-04 13:00:12
depth1
children1
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation3,495,916,151
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,926
net_rshares0
@karnal ·
$0.03
Thank you!
👍  
properties (23)
authorkarnal
permlinkre-licdocarlos-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t164456700z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 16:44:57
last_update2016-08-04 16:44:57
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id605,222
net_rshares32,632,472,974
author_curate_reward""
vote details (1)
@manfredkarrer ·
Great thanks for the great tutorial!!!!
👍  
properties (23)
authormanfredkarrer
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160807t003639034z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-07 00:37:15
last_update2016-08-07 00:37:15
depth1
children1
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation1,234,635,526
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id653,460
net_rshares34,707,539,175
author_curate_reward""
vote details (1)
@karnal ·
Nice to see you here :)

Stay tuned for upcoming parts of the tutorial, I will continue writing tomorrow - enjoying a chilled out weekend for now.

And thank you a lot for making Bitsquare !!
👍  
properties (23)
authorkarnal
permlinkre-manfredkarrer-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160807t080138000z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-07 08:01:39
last_update2016-08-07 08:01:39
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length191
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id658,206
net_rshares34,707,539,175
author_curate_reward""
vote details (1)
@michaeldodridge · (edited)
$0.03
Great, sounds good but without exchanges how would we determine price of the crypto. The exchanges  provide liquidity and allows the market to determine price through the mechanism of supply and demand. They do serve a useful purpose even if some turn rogue. People in the crypto space are generally averse to regulation but sometimes it is in place to protect you and not always control you.
👍  ,
properties (23)
authormichaeldodridge
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t122146903z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 12:21:51
last_update2016-08-04 12:24:24
depth1
children2
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.030 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length392
author_reputation3,270,661,957,369
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,303
net_rshares33,209,344,663
author_curate_reward""
vote details (2)
@karnal ·
$0.05
It would be a good problem to have if we ever made it there - I do not think it will happen.

If a decentralized exchange became the main source of trading, then you would just grab the price from the decentralized exchange itself.
👍  , ,
properties (23)
authorkarnal
permlinkre-michaeldodridge-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t122611500z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 12:26:12
last_update2016-08-04 12:26:12
depth2
children1
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length231
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,361
net_rshares50,641,998,859
author_curate_reward""
vote details (3)
@michaeldodridge ·
Thanks for clarrifying, I think I'll need to think a little more how the technology would work to determine price.
properties (22)
authormichaeldodridge
permlinkre-karnal-re-michaeldodridge-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160804t122930437z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-04 12:29:33
last_update2016-08-04 12:29:33
depth3
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length114
author_reputation3,270,661,957,369
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,410
net_rshares0
@officialfuzzy ·
Hm...it would be interested to have bitsquare as the kind of "local bitcoins" to #bitshares as well.  :)

Anyone can run their own exchange and use bitsquare to buy and sell other cryptos for real cash by settling through the Dex.  :)

Thoughts?  

P.S. I love bitsquare. good call :)
👍  
properties (23)
authorofficialfuzzy
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160805t034554993z
categorybitsquare
json_metadata{"tags":["bitshares","bitsquare"]}
created2016-08-05 03:45:54
last_update2016-08-05 03:45:54
depth1
children1
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length284
author_reputation386,160,910,642,701
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id616,300
net_rshares32,082,174,715
author_curate_reward""
vote details (1)
@karnal ·
BitShares (BTS) is already supported by Bitsquare.

There is zero volume though, I think because most people in the Bitshares ecosystem do not yet realize they can easily go BTS->BTC->fiat from Bitsquare.

Or perhaps, we just do not like selling our BTS .... ;)

Adding SmartCoins support would be awesome though! Been meaning to write about that, but the post about adding SteemUSD did so badly that it hardly seems worth the effort.

Would you be interested in having BitUSD & co in Bitsquare?
👍  
properties (23)
authorkarnal
permlinkre-officialfuzzy-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160805t080935700z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-05 08:09:36
last_update2016-08-05 08:09:36
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length495
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id619,382
net_rshares31,427,436,455
author_curate_reward""
vote details (1)
@rok-sivante · (edited)
what are the differences between Bitsquare and OpenLedger - and Bitshares platform itself - if both are based on Bitshares?
👍  ,
properties (23)
authorrok-sivante
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160808t141239217z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-08 14:12:39
last_update2016-08-08 14:12:57
depth1
children2
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation664,045,451,891,191
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id682,883
net_rshares43,167,266,140
author_curate_reward""
vote details (2)
@earnest ·
Hi Rok, please check my new exposing conartists post,
it involves @lauralemons and a clear as water scam/plagiarism
https://steemit.com/scam/@earnest/exposing-conartists-posers-and-liars-the-case-of-lauralemons
👍  
properties (23)
authorearnest
permlinkre-rok-sivante-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160808t154514700z
categorybitsquare
json_metadata{"tags":["bitsquare"],"users":["lauralemons"],"links":["https://steemit.com/scam/@earnest/exposing-conartists-posers-and-liars-the-case-of-lauralemons"]}
created2016-08-08 15:45:15
last_update2016-08-08 15:45:15
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length210
author_reputation-2,314,359,161,729
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id684,588
net_rshares5,659,552,069
author_curate_reward""
vote details (1)
@karnal ·
$0.53
Bitsquare is not based on bitshares - they both propose to enable *decentralized trading*, but reach that goal through very different means, and arguably with different goals in mind as well.

Bitsquare is much more geared towards going in and out of the *legacy* banking system in a decentralized way (as in, you do not need to sign away your rights and provide a company with a sample of your DNA (only slightly exaggerating there :-))).

You can trade crypto-to-crypto with Bitsquare as well, but in my opinion what makes it unique (and thus distinguishes it from Bitshares) is that you can trade fiat money peer to peer with other people.

While Bitshares also enables you to trade in and out of fiat, there are some differences.

To begin, it is not peer to peer. There is a centralized company who takes your cryptographic tokens, and exchanges them for money in a bank account.

Then, there is the fact that at the moment there is really one company only providing this service, and they are based in Europe - which means, unless the customer is also in Europe, the fees and delays will most likely not be worth the hassle.

It is a vision of many Bitshares users that in time there will be a global network of such companies, but for now that is just a dream.

So, both bitsquare and bitshares are decentralized trading systems, but bitshares is more geared to quickly exchanging crypto-tokens in a decentralized (and not peer-to-peer) manner, with the possibility of exchanging crypto-tokens for fiat (in a non-decentralized, with counterparty risk, and not peer-to-peer) as well.

Bitsquare is a decentralized peer-to-peer trading system, (in my opinion) more geared and better suited for trading in and out of fiat.

Both are excellent pieces of software, with excellent use cases.

I am a big fan of both.
👍  , , , ,
properties (23)
authorkarnal
permlinkre-rok-sivante-re-karnal-decentralized-trading-guide-installation-and-initial-configuration-20160808t142256500z
categorybitsquare
json_metadata{"tags":["bitsquare"]}
created2016-08-08 14:22:57
last_update2016-08-08 14:22:57
depth2
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.402 HBD
curator_payout_value0.126 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,817
author_reputation19,869,197,162,216
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id683,048
net_rshares1,028,299,737,481
author_curate_reward""
vote details (5)
@steemlove ·
properties (23)
authorsteemlove
permlinkdecentralized-trading-guide-installation-and-initial-configuration
categorybitsquare
json_metadata""
created2016-08-04 12:17:45
last_update2016-08-04 12:17:45
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation-705,106,123,629
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,250
net_rshares-31,865,877,406
author_curate_reward""
vote details (22)
@sugarfromhell ·
properties (23)
authorsugarfromhell
permlinkdecentralized-trading-guide-installation-and-initial-configuration
categorybitsquare
json_metadata""
created2016-08-04 12:13:30
last_update2016-08-04 12:13:30
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation-412,716,207,122
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id600,174
net_rshares-31,556,464,100
author_curate_reward""
vote details (51)
@theonelaw ·
The last PGP step makes no sense:

     $ grep Bitsquare-64bit-0.4.9.2.deb /tmp/signed_sha256_hashes.txt


----------------
properties (22)
authortheonelaw
permlinkre-karnal-decentralized-trading-guide-installation-and-initial-configuration-20170722t235602086z
categorybitsquare
json_metadata{"tags":["bitsquare"],"app":"steemit/0.1"}
created2017-07-22 23:56:03
last_update2017-07-22 23:56:03
depth1
children0
last_payout2017-07-29 23:56:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation49,136,954,594
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id9,360,200
net_rshares0
@younlong ·
properties (23)
authoryounlong
permlinkdecentralized-trading-guide-installation-and-initial-configuration
categorybitsquare
json_metadata""
created2016-08-04 20:46:21
last_update2016-08-04 20:46:21
depth1
children0
last_payout2016-09-04 01:43:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation-514,283,363,172
root_title"Decentralized Trading Guide: Installation and Initial Configuration"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id609,730
net_rshares-32,302,818,584
author_curate_reward""
vote details (41)