MetaAPI is intended as a solution for developers who want to work with Metaverse API. MetaAPI (Java SDK) provide full wrapping of the Metaverse API.
For more information about the API visit the MetaverseAPI documentation.
The way to create the main instance is pretty simple. We need to call the Builder and with our authentication method.
MetaAPI metaAPI = MetaAPI.Builder.createBuilder()
.withToken("<walletIndex>")
.build();With actions, we handle the requests in different ways:
- Callbacks
- Promises
- Sync
This three ways leave the pattern to the developer. This is intended to give the best experiences to any type of developers.
Represents a callback or result of the MetaverseAPI. Entities will have available actions to
be used withing their data.
In this version of the SDK the entity is not updated after a callback or similar.
Latest Stable Version Release
<dependency>
<groupId>io.mymetavese</groupId>
<artifactId>metaapi</artifactId>
<version>VERSION</version>
</dependency>dependencies {
compile 'io.mymetaverse:metaapi:VERSION'
}Docs can be found "HERE".
For general bugs and errors visit FAQ. If you need any help visit our Discord.
This SDK requires Java 8+.
All dependencies are managed by Maven.
- OkHttp
- Project Lombok (For Development)
- Gson
- Jupiter JUnit (For Development)