1.3.1 • Published 9 years ago

bitcoin-promise v1.3.1

Weekly downloads
19
License
Unlicense
Repository
github
Last release
9 years ago

node-bitcoin-promise

#Summary Add Promise support to bitcoin 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 bitcoin-promise

#Example var bitcoin = require( 'bitcoin-promise' ) ;

var client = new bitcoin.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 ) ;
}) ;
1.3.1

9 years ago

1.3.0

9 years ago

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago