3.0.92 • Published 7 years ago
divid-rpc v3.0.92
divid-rpc.js
A client library to connect to Divi Core RPC in JavaScript.
Get Started
divid-rpc.js runs on node, and can be installed via npm:
npm install divid-rpc
Examples
var run = function() {
var bitcore = require('bitcore');
var RpcClient = require('divid-rpc');
var config = {
protocol: 'http',
user: 'user',
pass: 'pass',
host: '127.0.0.1',
port: '51473',
};
var rpc = new RpcClient(config);
var txids = [];
function showNewTransactions() {
rpc.getRawMemPool(function (err, ret) {
if (err) {
console.error(err);
return setTimeout(showNewTransactions, 10000);
}
function batchCall() {
ret.result.forEach(function (txid) {
if (txids.indexOf(txid) === -1) {
rpc.getRawTransaction(txid);
}
});
}
rpc.batch(batchCall, function(err, rawtxs) {
if (err) {
console.error(err);
return setTimeout(showNewTransactions, 10000);
}
rawtxs.map(function (rawtx) {
var tx = new bitcore.Transaction(rawtx.result);
console.log('\n\n\n' + tx.id + ':', tx.toObject());
});
txids = ret.result;
setTimeout(showNewTransactions, 2500);
});
});
}
showNewTransactions();
};
License
Code released under the MIT license.
Copyright 2013-2014 BitPay, Inc.
3.0.92
7 years ago
3.0.91
7 years ago
3.0.90
7 years ago
3.0.89
7 years ago
3.0.88
7 years ago
3.0.87
7 years ago
3.0.86
7 years ago
3.0.85
7 years ago
3.0.84
7 years ago
3.0.83
7 years ago
3.0.82
7 years ago
3.0.81
7 years ago
3.0.80
7 years ago
3.0.79
7 years ago
3.0.78
7 years ago
3.0.77
7 years ago
3.0.76
7 years ago
3.0.75
7 years ago
3.0.47
7 years ago
3.0.74
7 years ago
3.0.73
7 years ago
3.0.72
7 years ago
3.0.71
7 years ago
0.7.62
7 years ago
0.7.61
7 years ago