Skip to main content

SDKs

To interact with a ledger from your application, you'll need an SDK. SDKs are available for Java, Node, and Ruby.

Use the language dropdown in the left-hand navigation of this page to switch the programming language displayed for all documentation.

The Java SDK is available via the Maven Central Repository. Java 8, 9, and 10 are supported.

Maven users should add the following to pom.xml:

<dependencies>
<dependency>
<groupId>com.seq</groupId>
<artifactId>sequence-sdk</artifactId>
<version>[2.2,3)</version>
</dependency>
</dependencies>

Gradle users should add the following to build.gradle:

compile 'com.seq:sequence-sdk:2.2'

Then use the following import statements in your code:

import com.seq.api.*;
import com.seq.http.*;
import com.seq.exception.*;