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.
- Host: GitHub
- URL: https://github.com/montyanderson/zec
- Owner: montyanderson
- License: mit
- Created: 2016-11-12T12:26:40.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-12T16:06:25.000Z (over 8 years ago)
- Last Synced: 2025-01-18T00:33:49.031Z (5 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
});
```