It is a java client SDK for the project Hyperledger.
You can find some common examples created using hyperledger-java-client in an example project
Fabric FABRIC = Hyperledger.fabric("http://localhost:5000/")
FABRIC.getNetworkPeers().subscribe(new Action1<PeersMessage>() {
@Override
public void call(PeersMessage peersMessage) {
for (PeerEndpoint peerEndpoint : peersMessage.getPeers()) {
System.out.printf("Peer message:%s\n", peerEndpoint);
}
}
});
FABRIC.getBlock(0)
.subscribe(new Action1<Block>() {
@Override
public void call(Block block) {
System.out.printf("Get Block info:%s\n", block);
}
}, new Action1<Throwable>() {
@Override
public void call(Throwable throwable) {
Error error = ErrorResolver.resolve(throwable, Error.class);
System.out.printf("Error message:%s\n", error.getError());
}
});
Binaries and dependency information for Maven, Ivy, Gradle and others can be found at http://search.maven.org.
Example for Maven:
<dependency>
<groupId>me.grapebaba</groupId>
<artifactId>hyperledger-java-client</artifactId>
<version>0.1.3</version>
</dependency>
and for Ivy:
<dependency org="me.grapebaba" name="hyperledger-java-client" rev="0.1.3" />
and for Gradle:
compile 'me.grapebaba:hyperledger-java-client:0.1.3'
To build:
$ git clone git@github.com:GrapeBaBa/hyperledger-java.git
$ cd hyperledger-java/
$ ./gradlew build
For bugs, questions and discussions please use the Github Issues.
Copyright 2016 281165273@qq.com
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.