Skip to content

Getting Started

DKCoins contains a large and powerful API that is easy to use. The api is very flexible and gives you the possibility to fully interact with DKCoins. You don't need to worry about anything else, the DKCoins api interface will handle everything for you.

As soon as McNative is available for developers, we will document exactly how to use and integrate with DKCoins. If you already want to use the DKCoins api, use the development channel on our Discord to get help from us and our community.

Thread safety

All operations in DKCoins are totally thread safety and designed for asynchronously usage.

Storage & Synchronisation operations

DKCoins offers you a simple api to create, modify, update and delete currency and bank account and other things. You have not to deal with saving or synchronizing data, DKCoins is automatically handling those things in the background.

Javadocs

The full Api documentation is available as Javadocs here. This wiki covers only basic examples, the api is much bigger and offers many more possibilities.

Dependency

DKCoins is built with the Maven build tool and has its own repository (Public available).

Repository

<repository>
    <id>pretronic</id>
    <url>https://repository.pretronic.net/repository/pretronic/</url>
</repository>
repositories {
    maven {
        url "https://repository.pretronic.net/repository/pretronic/"
    }
}

Dependency

<dependency>
    <groupId>net.pretronic.dkcoins</groupId>
    <artifactId>dkcoins-api</artifactId>
    <version>VERSION</version>
    <scope>compile</scope>
</dependency>
dependencies {
    compile 'net.pretronic.dkcoins:dkcoins-api:VERSION'
}

Last update: 2021-02-14