@@ -25,6 +25,7 @@ The following table shows versions compatibility:
2525
2626| Light Client | Exonum | Exonum Java |
2727| --------------| --------| -------------|
28+ | 0.2.0 | 0.11.0 | 0.6.0 |
2829| 0.1.0 | 0.10.* | 0.4 |
2930
3031## System Dependencies
@@ -37,15 +38,18 @@ If you are using Maven, add this to your _pom.xml_ file
3738<dependency >
3839 <groupId >com.exonum.client</groupId >
3940 <artifactId >exonum-light-client</artifactId >
40- <version >0.1 .0</version >
41+ <version >0.2 .0</version >
4142</dependency >
4243```
4344If you are using Gradle, add this to your dependencies
4445``` Groovy
45- compile 'com.exonum.client:exonum-light-client:0.1 .0'
46+ compile 'com.exonum.client:exonum-light-client:0.2 .0'
4647```
4748
4849## Examples
50+ This section contains most frequently used operations with the blockchain.
51+ Please navigate to [ Exonum client] [ exonum-client ] API documentation
52+ to see all supported operations.
4953
5054### Exonum Client Initialization
5155The following example shows how to create the instance of exonum client
@@ -105,8 +109,6 @@ for the full example of how to create a transaction message and
105109send it to Exonum node.
106110
107111### Transaction Info
108- <!-- TODO: remove after release -->
109- _ * Not available for Light Client v0.1_
110112The following method provides a possibility to get information
111113on a transaction by its hash - status of the transaction,
112114details of the message containing the transaction and,
@@ -132,9 +134,9 @@ which is required for the client.
132134Apache 2.0 - see [ LICENSE] ( ../LICENSE ) for more information.
133135
134136[ exonum ] : https://github.com/exonum/exonum
135- [ ejb-common ] : https://exonum.com/doc/api/java-binding-common/0.4 /
136- [ exonum-tx-message-builder ] : https://exonum.com/doc/api/java-binding-common/0.4 /com/exonum/binding/common/message/TransactionMessage.Builder.html
137+ [ ejb-common ] : https://exonum.com/doc/api/java-binding-common/0.6.0 /
138+ [ exonum-tx-message-builder ] : https://exonum.com/doc/api/java-binding-common/0.6.0 /com/exonum/binding/common/message/TransactionMessage.Builder.html
137139[ protobuf ] : https://developers.google.com/protocol-buffers/docs/proto3
138- [ standard-serializers ] : https://exonum.com/doc/api/java-binding-common/0.4 /com/exonum/binding/common/serialization/StandardSerializers.html
140+ [ standard-serializers ] : https://exonum.com/doc/api/java-binding-common/0.6.0 /com/exonum/binding/common/serialization/StandardSerializers.html
139141[ send-tx-it ] : ./src/test/java/com/exonum/client/ExonumHttpClientIntegrationTest.java
140142[ exonum-client ] : ./src/main/java/com/exonum/client/ExonumClient.java
0 commit comments