Overview
ViteJ is a collection of Java libraries that allows you to interact with a local or remote Vite node using HTTP, IPC or WebSocket.
Source Code
Source code: ViteJ
Dependencies
Maven
<dependency>
<groupId>org.vite</groupId>
<artifactId>vitej</artifactId>
<version>1.1.0</version>
</dependency>
<dependency>
<groupId>org.vite</groupId>
<artifactId>vitej-dependencies</artifactId>
<version>1.1.0</version>
<type>pom</type>
</dependency>
Gradle
A Simple Example
import com.alibaba.fastjson.JSON;
import org.vitej.core.protocol.HttpService;
import org.vitej.core.protocol.Vitej;
import org.vitej.core.protocol.methods.response.SnapshotChainHeightResponse;
import java.io.IOException;
public class QuickStart {
public static void main(String[] args) {
try {
// Create a Vitej client
Vitej vitej = new Vitej(new HttpService());
// Look up the latest snapshot block height
SnapshotChainHeightResponse response = vitej.getSnapshotChainHeight().send();
System.out.println(JSON.toJSONString(response));
Long latestSnapshotHeight = response.getHeight();
System.out.println(latestSnapshotHeight);
} catch (IOException e) {
e.printStackTrace();
}
}
}
See ViteJ Demo for more examples and usages