iota-sdk 0.3.0

The IOTA SDK provides developers with a seamless experience to develop on IOTA by providing account abstractions and clients to interact with node APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
plugins {
    id 'application'
}

repositories {
    mavenCentral()
}

dependencies {
    implementation project(':lib')
    implementation group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
}

application {
    mainClassName = project.findProperty("example").toString()
}

sourceSets.main.java.srcDirs = ['src']