0.0.1 • Published 10 years ago

blockchain-info-ematiu v0.0.1

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

Blockchain-JSON-API

This is a simple implementation of the blockchain.info JSON API written for nodejs.

For all available methods please visit: http://blockchain.info/api/blockchain_api

Synopsis

var blockchain = require('blockchain-json-api');

var bc = new blockchain();

bc.API('tx-index', '1000', function (res, err) {
  if (err)
    console.log('Error! ', err)
  else
    console.log(res);  
});

bc.API('block-height', '1000', function (res, err) {
  if (err)
    console.log('Error! ', err)
  else
    console.log(res);
});

bc.API('address', '1LTNyzQDxyAU89BaQwk8vaePADnXYErYda', function (res, err) {
  if (err)
    console.log('Error! ', err)
  else
    console.log(res);
});