litecoin-promise

1.3.1 • Public • Published

node-litecoin-promise

Summary

Add Promise support to litecoin package. It is backward compatible with the original package. If no callback function is passed in to a command a Promise is returned

Installation

npm install litecoin-promise

Example

var litecoin = require( 'litecoin-promise' ) ;

var client = new litecoin.Client({
  host: 'rcorbish.ydns.eu',
  port: 18332,
  user: 'bitcoinrpc',
  pass: 'password',
  timeout: 30000
});

// get a new address and return details about it
client.getNewAddress()
  .then( function(addr){
    return client.validateAddress( addr ) ;
  })
  .then( function(addrInfo){
    console.log( addrInfo ) ;
  })
  .catch( function(err){
    console.log( err ) ;
  }) ;

Package Sidebar

Install

npm i litecoin-promise

Weekly Downloads

0

Version

1.3.1

License

Unlicense

Last publish

Collaborators

  • burtonium