All Projects → nebulasio → neb.java

nebulasio / neb.java

Licence: LGPL-3.0 license
Java implementation of the Nebulas protocol

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to neb.java

nebPay.js
Nebulas payment Javascript SDK
Stars: ✭ 81 (+170%)
Mutual labels:  transaction, nebulas
DYFStoreKit
([Swift] https://github.com/chenxing640/DYFStore) A lightweight and easy-to-use iOS library for In-App Purchases (Objective-C). DYFStoreKit uses blocks and notifications to wrap StoreKit, provides receipt verification and transaction persistence and doesn't require any external dependencies.
Stars: ✭ 52 (+73.33%)
Mutual labels:  transaction
Apriori-and-Eclat-Frequent-Itemset-Mining
Implementation of the Apriori and Eclat algorithms, two of the best-known basic algorithms for mining frequent item sets in a set of transactions, implementation in Python.
Stars: ✭ 36 (+20%)
Mutual labels:  transaction
web trader
📊 Python Flask game that consolidates data from Nasdaq, allowing the user to practice buying and selling stocks.
Stars: ✭ 21 (-30%)
Mutual labels:  transaction
LocalTransactionTableTest
利用rabbitmq做消息队列,通过本地消息事务表序列化消息,通过定时轮训保证消息强行落地,最终达到数据最终一致性
Stars: ✭ 19 (-36.67%)
Mutual labels:  transaction
trakeva
Transactions, Keys, and Values
Stars: ✭ 24 (-20%)
Mutual labels:  transaction
orchestrate-node
This Orchestrate library provides convenient access to the Orchestrate API from applications written in server-side NodeJS
Stars: ✭ 19 (-36.67%)
Mutual labels:  transaction
cosmospy
Python tools for Cosmos wallet management and offline transaction signing
Stars: ✭ 57 (+90%)
Mutual labels:  transaction
blockchain-pen
BlockchainPen - a web app for writing immutable messages to the blockchain.
Stars: ✭ 14 (-53.33%)
Mutual labels:  transaction
laravel-reset-transaction
distributed transaction for call remote api service
Stars: ✭ 40 (+33.33%)
Mutual labels:  transaction
arweave-python-client
This client allows you to integrate your python apps with the Arweave network allowing you to perform wallet operations and transactions
Stars: ✭ 87 (+190%)
Mutual labels:  transaction
ddal
DDAL(Distributed Data Access Layer) is a simple solution to access database shard.
Stars: ✭ 33 (+10%)
Mutual labels:  transaction
neb.py
Nebulas Python API
Stars: ✭ 16 (-46.67%)
Mutual labels:  nebulas
trans-dsl
a transaction model framework, seems simple but powerful
Stars: ✭ 64 (+113.33%)
Mutual labels:  transaction
rlp
Recursive Length Prefix Encoding in PHP.
Stars: ✭ 25 (-16.67%)
Mutual labels:  transaction
KuiBaDB
Another OLAP database
Stars: ✭ 297 (+890%)
Mutual labels:  transaction
indexeddb-orm
Indexed DB ORM
Stars: ✭ 53 (+76.67%)
Mutual labels:  transaction
node-pg-large-object
Large object support for PostgreSQL clients using the node-postgres library.
Stars: ✭ 31 (+3.33%)
Mutual labels:  transaction
js-undo-manager
Simple JavaScript undo/redo command manager supporting transactions with no dependencies
Stars: ✭ 23 (-23.33%)
Mutual labels:  transaction
neb.php
Nebulas PHP API
Stars: ✭ 29 (-3.33%)
Mutual labels:  nebulas

nebulasj

The nebulasj library is a Java implementation of the Nebulas protocol, which allows it to maintain a wallet and send/receive transactions without needing a local copy of go-nebulas.

Add as dependency

Gradle

repositories {
    mavenCentral()
}

dependencies {
    compile "io.nebulas:nebulas:0.2"
}

Maven

<dependency>
    <groupId>io.nebulas</groupId>
    <artifactId>nebulas</artifactId>
    <version>0.2</version>
</dependency>

Building from source

Prerequisites

Components Version Description
Java >= 1.8.0_171 Java8
Gradle >= 4.6 Gradle is a dependency management tool for Java.

Build

it is best to have the latest JDK and Gradle installed. The HEAD of the master branch contains the latest development code and various production releases are provided on feature branches.

./gradlew clean build

Building from an IDE

Alternatively, just import the project using your IDE. IntelliJ has Gradle integration built-in and has a free Community Edition.

Documentation

Documents of NebulasJ is here: Public API documentation

http nebulasio-client

Http client is used to access the RPC API of Nebulas, such as mainnet and testnet.

We haven't written examples for http-client now, please refer to the test cases to learn how to use it.

    private NebulasClient nebulasClient = HttpNebulasClient.create("https://testnet.nebulas.io");

    @Test
    public void testGetNebState() {
        Response<NebState> response = nebulasClient.getNebState();
        System.out.println(response);
    }

    @Test
    public void testGetAccountState() {
        Response<AccountState> response = nebulasClient.getAccountState(new GetAccountStateRequest("n1Z6SbjLuAEXfhX1UJvXT6BB5osWYxVg3F3"));
        System.out.println(response);
    }

Wiki

Please check our Wiki to learn more about Nebulas.

Contribution

We are very glad that you are considering to help Nebulas Team or go-nebulas project, including but not limited to source code, documents or others.

If you'd like to contribute, please fork, fix, commit and send a pull request for the maintainers to review and merge into the main code base. If you wish to submit more complex changes though, please check up with the core devs first on our slack channel to ensure those changes are in line with the general philosophy of the project and/or get some early feedback which can make both your efforts much lighter as well as our review and merge procedures quick and simple.

Please refer to our contribution guideline for more information.

Thanks.

License

The go-nebulas project is licensed under the GNU Lesser General Public License Version 3.0 (“LGPL v3”).

For the more information about licensing, please refer to Licensing page.

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].