Skip to content

Commit

Permalink
Merge pull request #1 from cocoleecoco/0.2.0
Browse files Browse the repository at this point in the history
Support for Sophia Smart Contracts
  • Loading branch information
danielgogo authored Dec 21, 2018
2 parents e38caa0 + 969c6be commit 221b91b
Show file tree
Hide file tree
Showing 29 changed files with 3,728 additions and 871 deletions.
45 changes: 0 additions & 45 deletions .gitignore

This file was deleted.

27 changes: 0 additions & 27 deletions .gitlab-ci.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# 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
```

# Use

* config maven repository: http://sdk.platon.network/content/groups/public/
* config maven or gradle in project

```
<dependency>
<groupId>com.platon.client</groupId>
<artifactId>core</artifactId>
<version>0.2.0</version>
</dependency>
```

or

```
compile "com.platon.client:core:0.2.0"
```

* use in project

```
Web3j web3 = Web3j.build(new HttpService("https://host:port"));
```


# Other
[more reference wiki](https://github.com/PlatONnetwork/wiki/wiki)
Loading

0 comments on commit 221b91b

Please sign in to comment.