Giter Site home page Giter Site logo

weavechain / weave-java-api Goto Github PK

View Code? Open in Web Editor NEW
9.0 1.0 0.0 227 KB

Weavechain Java API

Home Page: https://www.weavechain.com

License: MIT License

Kotlin 0.58% Java 99.42%
confidential-compute data data-replication distributed-computing homomorphic-encryption layer-0 mpc self-sovereign verifiable-credentials weavechain

weave-java-api's Introduction

Weavechain Java API

https://weavechain.com: Layer-0 For Data

Usage

Gradle Groovy DSL

implementation 'com.weavechain:api:1.1'

Gradle Kotlin DSL

implementation("com.weavechain:api:1.1")
Apache Maven
<dependency>
  <groupId>com.weavechain</groupId>
  <artifactId>api</artifactId>
  <version>1.1</version>
</dependency>
VM Args
--add-opens=java.base/sun.security.x509=ALL-UNNAMED --add-exports=java.base/sun.security.util=ALL-UNNAMED
val jvmAddedArgs = listOf(
        "--add-opens=java.base/sun.security.x509=ALL-UNNAMED",
        "--add-exports=java.base/sun.security.util=ALL-UNNAMED"
)

application {
    mainClass.set(mainCls)
    applicationDefaultJvmArgs += jvmAddedArgs
}

Repositories

mavenCentral()
maven("https://jitpack.io")
maven("https://hyperledger.jfrog.io/artifactory/besu-maven")

Data read sample

Keys keys = Keys.generateKeys();
String pub = keys.getPublicKey();
String pvk = keys.getPrivateKey();
System.out.println("Public key: " + pub);
System.out.println("Private key:" + pvk);

String host = "public.weavechain.com";
int port = 443;
String seed = "92f30f0b6be2732cb817c19839b0940c";

String organization = "weavedemo";
String scope = "shared";
String table = "directory";

ChainClientConfig cfg =  new ChainClientConfig()
        .organization(organization)
        .http(new HttpClientConfig()
                .host(host)
                .port(port)
                .useHttps(true)
        )
        .seed(seed)
        .privateKey(pvk)
        .publicKey(pub);

ApiClientV1 nodeApi = ChainApiFactory.createApiClient(cfg);
nodeApi.init();

Session session = nodeApi.login(organization, pub, "*").get();

OperationResult reply = nodeApi.read(session, scope, table, null, ReadOptions.DEFAULT_NO_CHAIN).get();
System.out.println(reply.getStringData());

nodeApi.logout(session);

Docs

https://docs.weavechain.com

weave-java-api's People

Contributors

ix42 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.