Skip to content

Instantly share code, notes, and snippets.

@tyler-smith
Last active January 8, 2019 17:46
Show Gist options
  • Save tyler-smith/87ccf18ce46b6b0663bd8c3ae6167867 to your computer and use it in GitHub Desktop.
Save tyler-smith/87ccf18ce46b6b0663bd8c3ae6167867 to your computer and use it in GitHub Desktop.

Install pre-built OB

Get latest release from: https://github.com/OpenBazaar/openbazaar-desktop/releases

Install app and start. It will walk you through setting up your profile. After that is finished you can click the wallet icon in the top right to get to you wallet.

OR Install OB from source for more detailed logging

Server: https://github.com/OpenBazaar/openbazaar-go#install

Client: Use pre-built client or https://github.com/OpenBazaar/openbazaar-desktop#getting-started

Set BB backend in config

open <OpenBazaar2.0/config, find the "Wallets" section and update the "API" for each coin:

 "Wallets": {
    "BCH": {
      "API": [
        "https://bch.blockbook.api.openbazaar.org/api"
      ],
      "APITestnet": [
        "https://tbch.blockbook.api.openbazaar.org/api"
      ],
      "FeeAPI": "",
      "HighFeeDefault": 10,
      "LowFeeDefault": 1,
      "MaxFee": 200,
      "MediumFeeDefault": 5,
      "TrustedPeer": "",
      "Type": "API",
      "WalletOptions": null
    },
    "BTC": {
      "API": [
        "https://btc.blockbook.api.openbazaar.org/api"
      ],
      "APITestnet": [
        "https://tbtc.blockbook.api.openbazaar.org/api"
      ],
      "FeeAPI": "https://btc.fees.openbazaar.org",
      "HighFeeDefault": 50,
      "LowFeeDefault": 1,
      "MaxFee": 200,
      "MediumFeeDefault": 10,
      "TrustedPeer": "",
      "Type": "API",
      "WalletOptions": null
    },
    "ETH": {
      "API": [
        "https://rinkeby.infura.io"
      ],
      "APITestnet": [
        "https://rinkeby.infura.io"
      ],
      "FeeAPI": "",
      "HighFeeDefault": 30,
      "LowFeeDefault": 7,
      "MaxFee": 200,
      "MediumFeeDefault": 15,
      "TrustedPeer": "",
      "Type": "API",
      "WalletOptions": {
        "RegistryAddress": "0x403d907982474cdd51687b09a8968346159378f3",
        "RinkebyRegistryAddress": "0x403d907982474cdd51687b09a8968346159378f3",
        "RopstenRegistryAddress": "0x403d907982474cdd51687b09a8968346159378f3"
      }
    },
    "LTC": {
      "API": [
        "https://ltc.blockbook.api.openbazaar.org/api"
      ],
      "APITestnet": [
        "https://tltc.blockbook.api.openbazaar.org/api"
      ],
      "FeeAPI": "",
      "HighFeeDefault": 20,
      "LowFeeDefault": 5,
      "MaxFee": 200,
      "MediumFeeDefault": 10,
      "TrustedPeer": "",
      "Type": "API",
      "WalletOptions": null
    },
    "ZEC": {
      "API": [
        "https://zec.blockbook.api.openbazaar.org/api"
      ],
      "APITestnet": [
        "https://tzec.blockbook.api.openbazaar.org/api"
      ],
      "FeeAPI": "",
      "HighFeeDefault": 20,
      "LowFeeDefault": 5,
      "MaxFee": 200,
      "MediumFeeDefault": 10,
      "TrustedPeer": "",
      "Type": "API",
      "WalletOptions": null
    }
  }

Test wallet

From the wallet screen in the app you can send and receive money and see your tx history.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment