A decentralized bitcoin exchange network
Go to file
2018-10-22 19:57:25 +02:00
.idea Merge remote-tracking branch 'upstream/master' 2018-09-25 19:58:15 -05:00
assets Merge pull request #1706 from Mentors4EDU/List-EtherStone-(ETHS) 2018-10-15 12:30:59 -05:00
common Add comment to clarify usage of buildscript block 2018-10-20 08:45:08 -07:00
core Merge pull request #1778 from ManfredKarrer/Dao-UI-improvements 2018-10-18 16:15:28 -05:00
desktop Remove openjfx checksum until implementation for platform specific libraries is finished 2018-10-22 19:57:25 +02:00
doc Update rpc port for regtest 2018-09-14 12:33:37 -05:00
gradle/wrapper Update gradle to 4.9 2018-09-05 11:19:58 +02:00
monitor Move classes 2018-09-23 15:35:06 -05:00
p2p Change delay for storage from 2 sec to 200 ms 2018-10-17 10:52:37 -05:00
pricenode Fix gradle build files 2018-09-18 23:44:19 -05:00
relay Fix gradle build files 2018-09-18 23:44:19 -05:00
seednode Add Java 10 configuration for merged repositories 2018-09-17 13:37:03 +02:00
statsnode Add Java 10 configuration for merged repositories 2018-09-17 13:37:03 +02:00
.editorconfig Revert to 4-space indentation in build.gradle 2018-03-29 19:44:35 +02:00
.gitignore Improve gitignore 2018-09-05 11:20:22 +02:00
.travis.yml Switch to OpenJDK10 in Gradle builds 2018-10-19 15:46:01 -07:00
build.gradle Merge "Update root gradle scripts":9c628bb873cbfd7fd9c56fbbd022470a205561f9 from @chirhonul 2018-09-05 11:15:30 +02:00
CONTRIBUTING.md Add CONTRIBUTING.md 2018-01-23 09:08:30 +01:00
gradle.properties Increase Gradle HTTP timeouts from 30 => 120 seconds 2018-03-22 10:39:52 +01:00
gradlew Add Gradle build 2018-03-21 06:14:48 +01:00
gradlew.bat Add Gradle build 2018-03-21 06:14:48 +01:00
LICENSE add basic wallet, update nav buttons, move unused img 2014-04-24 16:55:55 +02:00
README.md Update README 2018-10-19 16:10:06 -07:00
settings.gradle Merge statsnode repository at fc0a288 2018-09-14 11:53:35 +02:00

Bisq

Build Status

What is Bisq?

Bisq is a safe, private and decentralized way to exchange bitcoin for national currencies and other cryptocurrencies. Bisq uses peer-to-peer technology and multi-signature escrow to facilitate trading without the need for a centralized third party exchange. Bisq is non-custodial (never holds your funds), and incorporates a human arbitration system to resolve disputes.

For more information, see https://bisq.network/intro and for step-by-step getting started instructions, see https://bisq.network/get-started.

Building Bisq

You will need OpenJDK JDK 10 installed to complete the following instructions.

  1. Clone the Bisq source code and cd into bisq

     git clone https://github.com/bisq-network/bisq
     cd bisq
    
  2. Build Bisq

    You do not need to install Gradle to complete the following command. The gradlew shell script will install it for you if necessary.

     ./gradlew build
    

Running Bisq

With the above build complete, the Bisq executable jar is now available in the desktop/build/libs/ directory. Run it as follows, replacing {version} with the actual version found in the filename:

java -jar desktop/build/libs/desktop-{version}-all.jar`

Importing Bisq into Intellij IDEA

The following instructions have been tested on IDEA 2018.2

  1. Open IDEA
  2. Go to Help->Edit Custom Properties..., add a line to the file that reads idea.max.intellisense.filesize=12500 (to handle Bisq's very large generated PB.java Protobuf source file)
  3. Go to Preferences->Plugins. Search for and install the Lombok plugin. When prompted, do not restart IDEA.
  4. Go to Preferences->Build, Execution, Deployment->Compiler->Annotation Processors and check the Enable annotation processing option (to enable processing of Lombok annotations)
  5. Restart IDEA
  6. Go to Import Project, select the settings.gradle file and click Open
  7. In the Import Project from Gradle screen, check the Use auto-import option and click OK
  8. When prompted whether to overwrite the existing .idea directory, click Yes
  9. In the Project tool window, right click on the root-level .idea folder, select Git->Revert... and click OK in the dialog that appears (to restore source-controlled .idea configuration files that get overwritten during project import)
  10. Go to Build->Build Project. Everything should build cleanly. You should be able to run tests, run main methods in any component, etc.

TIP: If you encounter compilation errors related to the io.bisq.generated.protobuffer.PB class, it is probably because you didn't run the full Gradle build above. You need to run the generateProto task in the common project. You can do this via the Gradle tool window in IDEA, or you can do it the command line with cd common; ./gradlew generateProto. Once you've done that, run Build->Build Project again and you should have no errors.