Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/calvinchengx/hedera-sdk-js

JavaScript (NodeJS and Web) gRPC package for Hedera Hashgraph
https://github.com/calvinchengx/hedera-sdk-js

distributed-ledger grpc hashgraph hedera

Last synced: about 2 months ago
JSON representation

JavaScript (NodeJS and Web) gRPC package for Hedera Hashgraph

Awesome Lists containing this project

README

        

# Hedera SDK, JavaScript

[![NPM](https://img.shields.io/npm/v/hedera-sdk-js.svg)](https://img.shields.io/npm/v/hedera-sdk-js.svg)
![CircleCI branch](https://img.shields.io/circleci/project/github/calvinchengx/hedera-sdk-js/master.svg?label=circleci)
![Codecov](https://img.shields.io/codecov/c/github/calvinchengx/hedera-sdk-js.svg)
[![Snyk](https://img.shields.io/snyk/vulnerabilities/github/calvinchengx/hedera-sdk-js.svg)](https://img.shields.io/snyk/vulnerabilities/github/calvinchengx/hedera-sdk-js.svg)

This repository tracks https://github.com/hashgraph/hedera-protobuf and is used to generate JavaScript gRPC packages for Hedera.

## Set up

```
npm install
```

## Automated update for our pbnode and pbweb packages from hedera-protobuf

```
# by default, this will clone the latest hedera-protobuf on master branch and
# generate JS gRPC packages into pbnode and pbweb
# hedera-protobuf master branch is automatically tested against Hedera main-net
# and Hedera test-net
./scripts/proto.sh

# if we want to use the vNext branch (which is tested against Hedera engineering's
# testnet -- new features that are not released to main-net or test-net),
# then, run
./scripts/proto.sh vNext
```