Skip to content
This repository has been archived by the owner on May 7, 2022. It is now read-only.
Bad_Pop edited this page Mar 29, 2021 · 2 revisions

The JCoinbaseClient class

The JCoinbaseClient class is the main class of the library. Once an object of this type is instantiated, you will have access to all the functionalities of JCoinbase.

See the complete JCoinbaseClient documentation


The JCoinbaseClientFactory class

The JCoinbaseClientFactory class is the second most important class. It is through this class that you will be able to build instances of the JCoinbaseClient class.

See the complete JCoinbaseClientFactory documentation


The CallResult class

A CallResult<L, R> object represents a value of two possible types, a Failure<L> or a Success<R>.

CallResult, is a simplified version of the vavr Either and provide you a powerful API based on lambdas. Thus, you are not dependent on vavr if you do not wish to use it.

See the complete CallResult documentation