All Projects → ArkEcosystemArchive → ark-kotlin

ArkEcosystemArchive / ark-kotlin

Licence: MIT license
Library for interacting with an Ark Ecosystem Blockchain using the JVM. Written in Kotlin and fully interoperable with Java & Android.

Programming Languages

kotlin
9241 projects

Labels

Projects that are alternatives of or similar to ark-kotlin

explorer
A Blockchain Explorer for ARK using Vue.js and Tailwind CSS.
Stars: ✭ 108 (+620%)
Mutual labels:  ark
cryptology tbw
Cryptology - True Block Weight Voter share payout script for ARK Core blockchains
Stars: ✭ 13 (-13.33%)
Mutual labels:  ark
ARK
ARK is a lightweight, agile, elastic, distributed plugin framework written in C++,make it easier and faster to create your own application service.
Stars: ✭ 411 (+2640%)
Mutual labels:  ark
deployer
A small deployment script for ARK Chains, that lets you create your own blockchain in minutes
Stars: ✭ 50 (+233.33%)
Mutual labels:  ark
ark.db
Small and fast JSON database for Node and browser. 😋
Stars: ✭ 65 (+333.33%)
Mutual labels:  ark
Cross-Ark-Chat
Provides the ability to cross chat between all your Ark Survival Evolved Servers including discord support.
Stars: ✭ 54 (+260%)
Mutual labels:  ark
ark-lite-wallet
💰 ARK Lite Wallet https://arkecosystem.github.io/ark-lite-wallet/app
Stars: ✭ 26 (+73.33%)
Mutual labels:  ark
ark-java
Library for interacting with an Ark Ecosystem Blockchain using the JVM.
Stars: ✭ 15 (+0%)
Mutual labels:  ark
AIPs
ARK Improvement Proposals
Stars: ✭ 26 (+73.33%)
Mutual labels:  ark
wiki
📚 The ARK Ecosystem Wiki
Stars: ✭ 12 (-20%)
Mutual labels:  ark
ark-go
Ark GO client for ARK.io blockchain ecosystem #golang #ark #blockchain
Stars: ✭ 14 (-6.67%)
Mutual labels:  ark
paper-wallet
The official Paper Wallet for the ARK Blockchain.
Stars: ✭ 22 (+46.67%)
Mutual labels:  ark
ArkSavegameToolkitNet
Library for reading ARK Survival Evolved savegame files using C#.
Stars: ✭ 19 (+26.67%)
Mutual labels:  ark
ARKcommander
A simple shell script to easily setup an ARK node
Stars: ✭ 13 (-13.33%)
Mutual labels:  ark
ark-invest-api
📈 API for tracking holdings and trades of ARK Invest funds
Stars: ✭ 49 (+226.67%)
Mutual labels:  ark
Server-Creation-Tool
A Tool to easily create Server via SteamCMD
Stars: ✭ 33 (+120%)
Mutual labels:  ark
qrcode
A web component to generate QR codes for ARK payments.
Stars: ✭ 18 (+20%)
Mutual labels:  ark
legacy-docs
One common place to gather the relevant documentation and learning materials for all.
Stars: ✭ 13 (-13.33%)
Mutual labels:  ark
Larkator
ARK dino locator that uses your saved .ark
Stars: ✭ 42 (+180%)
Mutual labels:  ark
javascript-cli
A CLI in JavaScript for the ARK Blockchain.
Stars: ✭ 48 (+220%)
Mutual labels:  ark

ARK Kotlin

Download Build Status

ark-kotlin

Kotlin library for interacting with an Ark Ecosystem Blockchain using the JVM. Written in Kotlin and fully interoperable with Java & Android.

Installation

You must add a Bintray repository in order to retrieve the dependency:

build.gradle

    repositories {
        maven {
            url https://dl.bintray.com/arkecosystem/ark-kotlin/
        }
    }

pom.xml

    <profiles>
        <profile>
            <repositories>
                <repository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>ark-kotlin</id>
                    <name>ark-kotlin</name>
                    <url>https://dl.bintray.com/arkecosystem/ark-kotlin/</url>
                </repository>
            </repositories>
            <pluginRepositories>
                <pluginRepository>
                    <snapshots>
                        <enabled>false</enabled>
                    </snapshots>
                    <id>ark-io</id>
                    <name>plugins</name>
                    <url>https://dl.bintray.com/arkecosystem/ark-kotlin</url>
                </pluginRepository>
            </pluginRepositories>
            <id>bintray</id>
        </profile>
    </profiles>

Include the dependency in your project:

build.gradle

    compile 'io.ark:ark-kotlin:1.0.0'

pom.xml

    <dependency>
        <groupId>io.ark</groupId>
        <artifactId>ark-kotlin</artifactId>
        <version>1.0.0</version>
        <type>pom</type>
    </dependency>

License

The MIT License (MIT)

Copyright (c) 2017-2018 ARK.io

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].