ypool-wallet
v0.0.2
Published
A client library for API calls to wallet.ypool.net
Downloads
1
Readme
ypool-wallet-node
A client library for API calls to the ypool wallet
Example:
var YPool = require('ypool-wallet');
var ypool = new YPool({
key: YPOOL_API_KEY,
secret: YPOOL_API_SECRET
});
ypool.getAddresses('BTC', function(err, result) {
if (err) return console.log(err);
return console.log(result);
})