Khaos-Labs / dashj

Dash Java Library (X11, DGW, InstantSend)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dashj

A Java library for working with Dash

Build Status

Welcome to dashj

The dashj library is a Java implementation of the Dash protocol, which allows it to maintain a wallet and send/receive transactions without needing a local copy of Dash Core. It comes with full documentation and some example apps showing how to use it.

Technologies

  • Java 7 for the core modules, Java 8 for everything else
  • Maven 3+ - for building the project
  • Google Protocol Buffers - for use with serialization and hardware communications

Getting started

To get started, it is best to have the latest JDK and Maven installed. The HEAD of the master branch contains the latest development code and various production releases are provided on feature branches.

Building from the command line

To initialize the repo after cloning it:

git submodule update  --init --recursive

To perform a full build use (this includes the dashjbls shared library):

mvn clean package

To perform a full build without building the bls shared library and skip the test:

mvn clean package -Pno-build-bls -DskipTests

To perform a full build and install it in the local maven repository:

mvn clean install

You can also run

mvn site:site

to generate a website with useful information like JavaDocs.

The outputs are under the target directory.

Building from an IDE

Alternatively, just import the project using your IDE. IntelliJ has Maven integration built-in and has a free Community Edition. Simply use File | Import Project and locate the pom.xml in the root of the cloned project source tree.

The dashjbls library must still be built with mvn.

Example applications

These are found in the examples module.

Where next?

Now you are ready to follow the tutorial. Though this is for bitcoinj, there is no equivalent site for dashj.

About

Dash Java Library (X11, DGW, InstantSend)

License:Apache License 2.0


Languages

Language:Java 86.5%Language:C 10.5%Language:C++ 2.7%Language:CMake 0.1%Language:Python 0.1%Language:Shell 0.0%Language:Batchfile 0.0%Language:CSS 0.0%Language:Makefile 0.0%