Skip to content

trevorism/kraken

Repository files navigation

kraken

Build GitHub last commit GitHub language count GitHub top language

Java client wrapping kraken.com

Current Version

How to Use

Kraken has a public and private API. This code uses a wrapper client which delegates to a DefaultPublicKrakenClient and DefaultPrivateKrakenClient. Here's how to create it:

String apiKey = "...";
String apiSecret = "...";
KrakenClient krakenClient = new DefaultKrakenClient(new DefaultPrivateKrakenClient(apiKey, apiSecret));

More reading

These links from Kraken helped me implement this:

https://support.kraken.com/hc/en-us/articles/360000919966-How-to-generate-an-API-key-pair-

https://www.kraken.com/features/api

https://support.kraken.com/hc/en-us/articles/360001491786-API-Error-Codes

How to Build

gradle clean build