Skip to content

Latest commit

 

History

History
90 lines (57 loc) · 2.88 KB

Readme.md

File metadata and controls

90 lines (57 loc) · 2.88 KB

Release

WARNING: the current version of the API is configured to use Dev Privilege keys. If you want to use this on mainnet, you need to change the dependency to a release version of Bisq.

Bisq API

Based on proposal: Bisq-IP 1

This repository is an add-on to the bisq-exchange.

The goal is to add Trading API functionality to Bisq, see this video to see it in action.

Prerequisites

  • Java 8
  • Maven 3.5+

Bisq configuration

Starting this api is like starting a normal Bisq client: configurations are read and written to the same location on your disk.

This implies that:

  • if you already have a fully configured Bisq application, the api will use those pre-existing configurations.
  • If this is the first time you use Bisq on your machine, you need to first start with UI, so you can make all necessary configurations.

Note: running 2 Bisq instances on one computer (e.g one with API, one without) is not advisable. By default they both write to the same configuration location. Changing the appname can fix this issue.

Compiling the API

This step needs to be done before you can start the API with UI or headless:

mvn clean install

Getting started: with UI

The following command will start a GUI Bisq instance on Bitcoin mainnet (meaning you can lose real BTC):

mvn exec:java -Dexec.mainClass="io.bisq.api.app.BisqApiWithUIMain"

Getting started: headless

The following command will start a headless Bisq instance on Bitcoin mainnet (meaning you can lose real BTC):

mvn exec:java -Dexec.mainClass="io.bisq.api.app.ApiMain"

Developing

When testing it's advisable to run Bisq in REGTEST mode. See below on how to pass Bisq arguments to enable REGTEST mode. All regular Bisq arguments can be used.

mvn exec:java
-Dexec.mainClass="io.bisq.api.app.BisqApiWithUIMain"
-Dexec.args="--baseCurrencyNetwork=BTC_REGTEST --bitcoinRegtestHost localhost --nodePort 2003 --seedNodes=localhost:2225 --useLocalhost true --appName Bisq-Regtest-Bob"

Exploring the HTTP API

locally generated swagger docs are at: http://localhost:8080/swagger

publically generated swagger docs are at: https://mrosseel.github.io/bisq-api-examples/

Locally generated swagger.json can be found at: http://localhost:8080/swagger.json

the admin interface can be found at: http://localhost:8080/admin[

Overriding http port

Set the environment variable BISQ_API_PORT to your desired port.

TODO

  • produce jar with all dependencies for easier deployment
  • Dockerfile to get up-and-running without having java/maven/git/...
  • fix the Bisq dependency to the latest release, once it's released (post 0.5.3)