Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 526 Bytes

File metadata and controls

30 lines (21 loc) · 526 Bytes

chain-node

The Official Node.js SDK for Chain's Bitcoin API

Install

$ npm install chain-node

Quick Start

var chain = require('chain-node');
chain.getAddress('17x23dNjXJLzGMev6R63uyRhMWP1VHawKc', function(err, resp) {
  console.log('balance='+resp['balance']);
});

Documentation

The Chain API Documentation is available at https://chain.com/docs/node

Publishing Nodule Package

$ npm publish
$ git tag 0.0.X
$ git push origin master --tags