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

https://github.com/montyanderson/zec

Zcash RPC wallet wrapper.
https://github.com/montyanderson/zec

Last synced: 3 months ago
JSON representation

Zcash RPC wallet wrapper.

Awesome Lists containing this project

README

        

# zec
Zcash RPC wallet wrapper.

## Usage

``` javascript
const Zcash = require("zcash");
const Zec = require("zec");

const rpc = Zcash.auto();
const wallet = new Zec(rpc);

wallet.balance().then(balance => {
console.log(balance);
});
```