Aptos Java SDK

This is an Aptos Java SDK. Aptos is a scalable layer one blockchain solution.

This SDK is licensed under Apache 2.0.

How to use

Maven

Add the following dependency to the project's pom.xml file.

Alternatively, you can import the dependency via https://jitpack.io (recommended).

<dependency>
    <groupId>com.github.wubuku</groupId>
    <artifactId>aptos-java-sdk</artifactId>
    <version>1.0-SNAPSHOT</version>
</dependency>

Add the following code to maven's settings.xml file.

<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
          xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0
                      http://maven.apache.org/xsd/settings-1.0.0.xsd">
    <servers>
        <server>
            <id>aptos-java-sdk-github</id>
            <username>aptos-java-sdk-bot</username>
            <password>&#103;hp_A4saSepapOl4nMOw3sPw7MominGo9d1vjG76</password>
        </server>
    </servers>
</settings>