/client-sdk-java

A java interface for interacting with the PlatON network

Primary LanguageJavaOtherNOASSERTION

Overview

Java SDK is a Java development kit for PlatON public chain provided by PlatON for Java developers.

Build

    git clone https://github.com/PlatONnetwork/client-sdk-java.git
    cd client-sdk-java/
    ./gradlew clean jar            //Generate jar package
	./gradlew clean distZip        //Generate code generation skeleton tool
    ./gradlew -Pintegration-tests=true :integration-tests:test    //To run the integration tests:
   

Use

<dependency>
    <groupId>com.platon.sdk</groupId>
    <artifactId>core</artifactId>
    <version>0.15.1.8</version>
</dependency>

or

compile "com.platon.sdk:core:0.15.1.8"
  • use in project
  1. SDK includes Alaya network already. User can initialize custom networks, the latest is the current network.
NetworkParameters.init(2000L, "ABC");  
  1. user can switch current network if multi-networks have been initialized.
NetworkParameters.selectNetwork(2000L, "ABC");  
  1. In Alaya, the gas price for submitting a proposal is lower than in PlatON. When initializing a network with the parameter chainId:201018 or hrp:atp, this network will be considered as an Alaya network.