solution: update docs for client libs

This commit is contained in:
Igor Artamonov
2019-08-25 21:37:22 -04:00
parent bc83b1b120
commit 53da38b7ab
2 changed files with 41 additions and 17 deletions

View File

@@ -141,19 +141,19 @@ repositories {
}
dependencies {
compile 'io.emeraldpay:emerald-grpc:0.2'
compile "io.emeraldpay:emerald-grpc:0.6.0-0.2"
}
----
=== Javascript gRPC Client
image:https://img.shields.io/npm/v/@emeraldplatform/grpc.svg["npm (scoped)", link="https://www.npmjs.com/package/@emeraldplatform/grpc"]
image:https://img.shields.io/npm/v/@emeraldpay/grpc-client.svg["npm (scoped)", link="https://www.npmjs.com/package/@emeraldpay/grpc-client"]
https://github.com/emeraldpay/emerald-js-grpc
[source,json]
----
"dependencies": {
"@emeraldplatform/grpc": "0.10.0",
"@emeraldpay/grpc-client": "0.11.0-0.2",
}
----

View File

@@ -1,19 +1,43 @@
== Client Libraries
=== Java Client
TBD
=== EtherJar Java library
TBD
=== Javascript Client
TBD
=== Protobuf
Original Protobuf definitions
Original Protobuf definitions can be found at https://github.com/emeraldpay/emerald-grpc
TBD
=== Javascript gRPC Client
image:https://img.shields.io/npm/v/@emeraldpay/grpc-client.svg["npm (scoped)", link="https://www.npmjs.com/package/@emeraldpay/grpc-client"]
Emerald Javascript gRPC Client is a low level API and Stubs to access different services of Emerald, including Dshackle, more
details at https://github.com/emeraldpay/emerald-js-grpc
[source,json]
----
"dependencies": {
"@emeraldpay/grpc-client": "0.11.0-0.2",
}
----
=== Java gRPC Client
image:https://api.bintray.com/packages/emerald/emerald-grpc/emerald-grpc/images/download.svg[link="https://bintray.com/emerald/emerald-grpc/emerald-grpc/"]
Emerald Java gRPC Client is a low level API and Stubs to access different services of Emerald, including Dshackle, more
details at https://github.com/emeraldpay/emerald-java-client
[source,groovy]
----
repositories {
maven {
url "https://dl.bintray.com/emerald/emerald-grpc"
}
}
dependencies {
compile "io.emeraldpay:emerald-grpc:0.6.0-0.2"
}
----
=== EtherJar Java library
image:https://api.bintray.com/packages/infinitape/etherjar/etherjar-domain/images/download.svg[link="https://bintray.com/infinitape/etherjar"]
EtherJar is a framework agnostic modular Java 8+ integration library for Ethereum blockchains, it supports different protocols
to connect to an Ethereum API, including gRPC protocol via module `etherjar-rpc-emerald`. More details at https://github.com/infinitape/etherjar