Go-SDK & CLI tool to interact with the Woop Blockchain
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
# Harmony's go-sdk
|
|
|
|
|
|
|
|
This is a go layer on top of the Harmony RPC, included is a CLI tool that you can build with a
|
|
|
|
simple invocation of `make`
|
|
|
|
|
|
|
|
# Build
|
|
|
|
|
|
|
|
Invoke `make` to build the `hmy_cli` binary.
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
hmy_cli implements a fluent API
|
|
|
|
|
|
|
|
```bash
|
|
|
|
./hmy_cli blockchain protocol-version
|
|
|
|
{"jsonrpc":"2.0","id":"0","result":"0x1"}
|
|
|
|
```
|
|
|
|
|
|
|
|
# Debugging
|
|
|
|
|
|
|
|
```bash
|
|
|
|
HMY_RPC_DEBUG=true ./hmy_cli blockchain protocol-version
|
|
|
|
```
|