3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-01-30 23:02:15 +00:00
Java library for adding altcoin support to bitcoinj
Go to file
Ross Nicoll 9261271b3d Add Litecoin testnet difficulty rules
Add special rules for Litecoin testnet difficulty transitions when there's
a long break between blocks
2015-12-28 10:19:31 +00:00
examples Merge branch 'master' of https://github.com/bitcoinj/bitcoinj into rebase 2014-12-23 18:09:55 +01:00
src Add Litecoin testnet difficulty rules 2015-12-28 10:19:31 +00:00
.gitattributes Add a logo. 2013-03-01 13:59:48 +01:00
.gitignore Remove existing build pom.xml 2015-05-30 21:22:58 +01:00
.travis.yml.unused Merge remote-tracking branch 'upstream/master' 2015-02-12 23:15:09 +01:00
AUTHORS Update AUTHORS file 2014-12-03 13:01:28 +01:00
COPYING Initial checkin of BitCoinJ 2011-03-07 10:17:10 +00:00
pom.xml Complete rename to libdohj 2015-08-09 15:19:31 +01:00
README.md Fix typo in build.md. 2015-10-18 21:04:53 +02:00

Welcome to libdohj

The libdohj library is a lightweight wrapper library around the bitcoinj Java library, enabling support for Dogecoin (pull requests for support for other altcoins would be welcomed).

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. You should be familiar with bitcoinj first, as this library simply adds minor changes to extend bitcoinj. Generally using libdohj is equivalent to using bitcoinj, except with different network parameters (reflecting Dogecoin consensus in place of Bitcoin).

Be aware however that altcoin blocks have their own class, AltcoinBlock, which adds support for features such as AuxPoW.

Building from the command line

To perform a full build use

mvn clean package

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.