0.0.7 • Published 10 years ago

blockchain-json-api v0.0.7

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

Blockchain-API-enBitcoins

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('./lib/blockchain'),
    bc = new blockchain();

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

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

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

10 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago