bitcore-node-zcash/lib/services/bitcoind.js

1156 lines
32 KiB
JavaScript
Raw Normal View History

2015-08-31 06:00:00 -07:00
'use strict';
2015-09-16 10:35:54 -07:00
var fs = require('fs');
var path = require('path');
var spawn = require('child_process').spawn;
2015-08-31 06:00:00 -07:00
var util = require('util');
var mkdirp = require('mkdirp');
2015-10-16 21:56:29 -07:00
var bitcore = require('bitcore-lib');
var zmq = require('zmq');
var async = require('async');
2016-03-25 11:17:22 -07:00
var LRU = require('lru-cache');
var BitcoinRPC = require('bitcoind-rpc');
2015-08-31 06:00:00 -07:00
var $ = bitcore.util.preconditions;
var _ = bitcore.deps._;
2015-08-31 06:00:00 -07:00
var index = require('../');
var log = index.log;
var errors = index.errors;
2015-08-31 06:00:00 -07:00
var Service = require('../service');
var Transaction = require('../transaction');
2015-08-31 06:00:00 -07:00
/**
* Provides an interface to native bindings to [Bitcoin Core](https://github.com/bitcoin/bitcoin)
* compiled as a static library. The C++ bindings can be found at `src/libbitcoind.cc`
2015-08-31 06:00:00 -07:00
* @param {Object} options
* @param {Node} options.node - A reference to the node
*/
function Bitcoin(options) {
/* jshint maxstatements: 20 */
2016-04-07 11:46:19 -07:00
var self = this;
2015-08-31 06:00:00 -07:00
if (!(this instanceof Bitcoin)) {
return new Bitcoin(options);
}
2015-08-31 06:00:00 -07:00
Service.call(this, options);
2016-03-25 11:17:22 -07:00
// caches valid until there is a new block
2016-04-05 07:32:07 -07:00
this.utxosCache = LRU(50000);
2016-03-25 11:17:22 -07:00
this.txidsCache = LRU(50000);
this.balanceCache = LRU(50000);
this.summaryCache = LRU(50000);
// caches valid indefinitely
2016-03-25 11:17:22 -07:00
this.transactionCache = LRU(100000);
this.transactionInfoCache = LRU(100000);
this.transactionInfoCacheConfirmations = 6;
2016-03-25 11:17:22 -07:00
this.blockCache = LRU(144);
this.blockHeaderCache = LRU(288);
this.zmqKnownTransactions = LRU(50);
2016-04-07 11:46:19 -07:00
this.zmqLastBlock = 0;
this.zmqUpdateTipTimeout = false;
this.options = options;
// bitcoind child process
this.spawn = false;
// available bitcoind nodes
this.nodes = [];
this.nodesIndex = 0;
Object.defineProperty(this, 'client', {
get: function() {
2016-04-07 11:46:19 -07:00
var client = self.nodes[self.nodesIndex].client;
self.nodesIndex = (self.nodesIndex + 1) % self.nodes.length;
return client;
},
enumerable: true,
configurable: false
});
2016-03-25 11:17:22 -07:00
2015-08-31 06:00:00 -07:00
}
2015-08-31 06:00:00 -07:00
util.inherits(Bitcoin, Service);
2015-08-31 06:00:00 -07:00
Bitcoin.dependencies = [];
Bitcoin.DEFAULT_CONFIG = 'whitelist=127.0.0.1\n' + 'txindex=1\n' + 'addressindex=1\n' + 'server=1\n';
/**
* Called by Node to determine the available API methods.
*/
Bitcoin.prototype.getAPIMethods = function() {
var methods = [
['getBlock', this, this.getBlock, 1],
['getBlockHeader', this, this.getBlockHeader, 1],
['getBlockHashesByTimestamp', this, this.getBlockHashesByTimestamp, 2],
['getTransaction', this, this.getTransaction, 2],
['getTransactionWithBlockInfo', this, this.getTransactionWithBlockInfo, 2],
['sendTransaction', this, this.sendTransaction, 1],
['estimateFee', this, this.estimateFee, 1],
['getAddressTxids', this, this.getAddressTxids, 2],
['getAddressBalance', this, this.getAddressBalance, 2],
['getAddressUnspentOutputs', this, this.getAddressUnspentOutputs, 2],
['getAddressHistory', this, this.getAddressHistory, 2],
['getAddressSummary', this, this.getAddressSummary, 1]
];
return methods;
};
2015-08-31 06:00:00 -07:00
Bitcoin.prototype._loadSpawnConfiguration = function(node) {
2015-08-31 06:00:00 -07:00
/* jshint maxstatements: 25 */
$.checkArgument(this.options.spawn, 'Please specify "spawn" in bitcoind config options');
$.checkArgument(this.options.spawn.datadir, 'Please specify "spawn.datadir" in bitcoind config options');
$.checkArgument(this.options.spawn.exec, 'Please specify "spawn.exec" in bitcoind config options');
var spawnOptions = this.options.spawn;
var configPath = spawnOptions.datadir + '/bitcoin.conf';
2015-08-31 06:00:00 -07:00
this.spawn = {};
this.spawn.datadir = this.options.spawn.datadir;
this.spawn.exec = this.options.spawn.exec;
this.spawn.configPath = configPath;
this.spawn.config = {};
if (!fs.existsSync(spawnOptions.datadir)) {
mkdirp.sync(spawnOptions.datadir);
2015-08-31 06:00:00 -07:00
}
var file = fs.readFileSync(configPath);
var unparsed = file.toString().split('\n');
for(var i = 0; i < unparsed.length; i++) {
var line = unparsed[i];
if (!line.match(/^\#/) && line.match(/\=/)) {
var option = line.split('=');
var value;
if (!Number.isNaN(Number(option[1]))) {
value = Number(option[1]);
} else {
value = option[1];
}
this.spawn.config[option[0]] = value;
2015-08-31 06:00:00 -07:00
}
}
var spawnConfig = this.spawn.config;
2015-08-31 06:00:00 -07:00
$.checkState(
spawnConfig.txindex && spawnConfig.txindex === 1,
'"txindex" option is required in order to use transaction query features of bitcore-node. ' +
2015-08-31 06:00:00 -07:00
'Please add "txindex=1" to your configuration and reindex an existing database if ' +
2015-08-31 06:00:00 -07:00
'necessary with reindex=1'
);
$.checkState(
spawnConfig.addressindex && spawnConfig.addressindex === 1,
'"addressindex" option is required in order to use address query features of bitcore-node. ' +
'Please add "addressindex=1" to your configuration and reindex an existing database if ' +
'necessary with reindex=1'
);
$.checkState(
spawnConfig.server && spawnConfig.server === 1,
'"server" option is required to communicate to bitcoind from bitcore. ' +
'Please add "server=1" to your configuration and restart'
);
$.checkState(
spawnConfig.zmqpubrawtx,
'"zmqpubrawtx" option is required to get event updates from bitcoind. ' +
'Please add "zmqpubrawtx=tcp://127.0.0.1:<port>" to your configuration and restart'
);
$.checkState(
spawnConfig.zmqpubhashblock,
'"zmqpubhashblock" option is required to get event updates from bitcoind. ' +
'Please add "zmqpubhashblock=tcp://127.0.0.1:<port>" to your configuration and restart'
);
if (spawnConfig.reindex && spawnConfig.reindex === 1) {
log.warn('Reindex option is currently enabled. This means that bitcoind is undergoing a reindex. ' +
'The reindex flag will start the index from beginning every time the node is started, so it ' +
'should be removed after the reindex has been initiated. Once the reindex is complete, the rest ' +
'of bitcore-node services will start.');
node._reindex = true;
}
2015-08-31 06:00:00 -07:00
};
2016-03-25 11:17:22 -07:00
Bitcoin.prototype._resetCaches = function() {
2016-04-05 07:32:07 -07:00
this.utxosCache.reset();
2016-03-25 11:17:22 -07:00
this.txidsCache.reset();
this.balanceCache.reset();
this.summaryCache.reset();
};
Bitcoin.prototype._initChain = function(callback) {
2015-08-31 08:09:24 -07:00
var self = this;
self.client.getBestBlockHash(function(err, response) {
2015-08-31 08:09:24 -07:00
if (err) {
return callback(err);
}
self.client.getBlock(response.result, function(err, response) {
if (err) {
return callback(err);
}
self.height = response.result.height;
self.client.getBlockHash(0, function(err, response) {
if (err) {
return callback(err);
}
var blockhash = response.result;
self.getBlock(blockhash, function(err, block) {
if (err) {
return callback(err);
}
self.genesisBuffer = block.toBuffer();
self.emit('ready');
log.info('Bitcoin Daemon Ready');
callback();
});
});
});
2015-08-31 08:09:24 -07:00
});
};
2015-08-31 08:09:24 -07:00
Bitcoin.prototype._getNetworkOption = function() {
var networkOption;
if (this.node.network === bitcore.Networks.testnet) {
2016-04-07 11:46:19 -07:00
networkOption = '--testnet';
if (this.node.network.regtestEnabled) {
networkOption = '--regtest';
}
}
return networkOption;
2015-08-31 08:09:24 -07:00
};
Bitcoin.prototype._zmqBlockHandler = function(node, message) {
var self = this;
2016-04-07 11:46:19 -07:00
function updateChain() {
var hex = message.toString('hex');
if (hex !== self.tiphash) {
self._resetCaches();
self.tiphash = message.toString('hex');
node.client.getBlock(self.tiphash, function(err, response) {
if (err) {
return log.error(err);
}
2016-04-07 11:46:19 -07:00
self.height = response.result.height;
$.checkState(self.height >= 0);
self.emit('tip', self.height);
});
2016-04-07 11:46:19 -07:00
if(!self.node.stopping) {
self.syncPercentage(function(err, percentage) {
if (err) {
return log.error(err);
}
log.info('Bitcoin Height:', self.height, 'Percentage:', percentage.toFixed(2));
});
}
}
}
2016-04-07 11:46:19 -07:00
// Prevent a rapid succession of updates with regtest
if (self.node.network.regtestEnabled) {
if (new Date() - self.zmqLastBlock > 1000) {
self.zmqLastBlock = new Date();
2016-04-07 11:46:19 -07:00
updateChain();
} else {
clearTimeout(self.zmqUpdateTipTimeout);
self.zmqUpdateTipTimeout = setTimeout(function() {
updateChain();
}, 1000);
}
} else {
updateChain();
}
};
Bitcoin.prototype._zmqTransactionHandler = function(node, message) {
var self = this;
var id = message.toString('binary');
if (!self.zmqKnownTransactions[id]) {
self.zmqKnownTransactions[id] = true;
self.emit('tx', message);
}
};
Bitcoin.prototype._subscribeZmqEvents = function(node) {
var self = this;
node.zmqSubSocket.subscribe('hashblock');
node.zmqSubSocket.subscribe('rawtx');
node.zmqSubSocket.on('message', function(topic, message) {
var topicString = topic.toString('utf8');
if (topicString === 'rawtx') {
self._zmqTransactionHandler(node, message);
} else if (topicString === 'hashblock') {
self._zmqBlockHandler(node, message);
}
});
};
Bitcoin.prototype._initZmqSubSocket = function(node, zmqUrl) {
var self = this;
node.zmqSubSocket = zmq.socket('sub');
node.zmqSubSocket.on('monitor_error', function(err) {
log.error('Error in monitoring: %s, will restart monitoring in 5 seconds', err);
setTimeout(function() {
self.zmqSubSocket.monitor(500, 0);
}, 5000);
});
node.zmqSubSocket.monitor(500, 0);
node.zmqSubSocket.connect(zmqUrl);
};
Bitcoin.prototype._checkReindex = function(node, callback) {
2015-08-31 06:00:00 -07:00
var self = this;
if (node._reindex) {
var interval = setInterval(function() {
node.client.syncPercentage(function(err, percentSynced) {
if (err) {
return log.error(err);
}
log.info('Bitcoin Core Daemon Reindex Percentage: ' + percentSynced.toFixed(2));
if (Math.round(percentSynced) >= 100) {
node._reindex = false;
self._subscribeZmqEvents(node);
callback();
clearInterval(interval);
}
});
}, self._reindexWait);
2015-08-31 06:00:00 -07:00
} else {
self._subscribeZmqEvents(node);
callback();
}
};
Bitcoin.prototype._loadTipFromNode = function(node, callback) {
var self = this;
node.client.getBestBlockHash(function(err, response) {
if (err) {
if (!(err instanceof Error)) {
log.warn(err.message);
}
return callback(new Error('Could not connect to bitcoind RPC'));
}
node.client.getBlock(response.result, function(err, response) {
if (err) {
2016-04-07 11:46:19 -07:00
return callback(err);
}
self.height = response.result.height;
$.checkState(self.height >= 0);
self.emit('tip', self.height);
callback();
});
});
};
Bitcoin.prototype._spawnChildProcess = function(callback) {
var self = this;
var node = {};
node._reindex = false;
node._reindexWait = 1000;
try {
self._loadSpawnConfiguration(node);
} catch(e) {
return callback(e);
}
2015-08-31 06:00:00 -07:00
var options = [
'--conf=' + path.resolve(this.spawn.configPath),
'--datadir=' + this.spawn.datadir,
];
if (self._getNetworkOption()) {
options.push(self._getNetworkOption());
2016-02-03 15:29:33 -08:00
}
self.spawn.process = spawn(this.spawn.exec, options, {stdio: 'inherit'});
2016-02-03 15:29:33 -08:00
self.spawn.process.on('error', function(err) {
log.error(err);
});
async.retry({times: 60, interval: 5000}, function(done) {
if (self.node.stopping) {
return done(new Error('Stopping while trying to connect to bitcoind.'));
2015-08-31 06:00:00 -07:00
}
node.client = new BitcoinRPC({
protocol: 'http',
host: '127.0.0.1',
port: self.spawn.config.rpcport,
user: self.spawn.config.rpcuser,
pass: self.spawn.config.rpcpassword
});
self._loadTipFromNode(node, done);
}, function(err) {
if (err) {
return callback(err);
}
self._initZmqSubSocket(node, self.spawn.config.zmqpubrawtx);
self._checkReindex(node, function() {
2015-08-31 08:09:24 -07:00
if (err) {
return callback(err);
2015-08-31 06:00:00 -07:00
}
callback(null, node);
});
});
};
Bitcoin.prototype._connectProcess = function(config, callback) {
var self = this;
var node = {};
async.retry({times: 60, interval: 5000}, function(done) {
if (self.node.stopping) {
return done(new Error('Stopping while trying to connect to bitcoind.'));
}
node.client = new BitcoinRPC({
protocol: config.rpcprotocol || 'http',
host: config.rpchost || '127.0.0.1',
port: config.rpcport,
user: config.rpcuser,
pass: config.rpcpassword
});
self._loadTipFromNode(node, done);
}, function(err) {
if (err) {
return callback(err);
}
self._initZmqSubSocket(node, config.zmqpubrawtx);
callback(null, node);
});
};
/**
* Called by Node to start the service
* @param {Function} callback
*/
Bitcoin.prototype.start = function(callback) {
var self = this;
async.series([
function(next) {
if (self.options.spawn) {
self._spawnChildProcess(function(err, node) {
if (err) {
return next(err);
}
self.nodes.push(node);
next();
});
} else {
next();
}
},
function(next) {
if (self.options.connect) {
async.map(self.options.connect, self._connectProcess.bind(self), function(err, nodes) {
if (err) {
return callback(err);
}
for(var i = 0; i < nodes.length; i++) {
self.nodes.push(nodes[i]);
}
next();
});
} else {
next();
}
}
], function(err) {
if (err) {
return callback(err);
}
2016-04-07 11:46:19 -07:00
if (self.nodes.length === 0) {
return callback(new Error('Bitcoin configuration options "spawn" or "connect" are expected'));
}
self._initChain(callback);
2015-08-31 06:00:00 -07:00
});
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Helper to determine the state of the database.
* @param {Function} callback
2015-09-22 08:38:14 -07:00
* @returns {Boolean} If the database is fully synced
*/
Bitcoin.prototype.isSynced = function(callback) {
this.syncPercentage(function(err, percentage) {
if (err) {
return callback(err);
}
if (Math.round(percentage) >= 100) {
callback(null, true);
} else {
callback(null, false);
}
});
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Helper to determine the progress of the database.
* @param {Function} callback
2015-09-22 08:38:14 -07:00
* @returns {Number} An estimated percentage of the syncronization status
*/
Bitcoin.prototype.syncPercentage = function(callback) {
this.client.getBlockchainInfo(function(err, response) {
if (err) {
return callback(err);
}
var percentSynced = response.result.verificationprogress * 100;
callback(null, percentSynced);
});
};
Bitcoin.prototype.getAddressBalance = function(addressArg, options, callback) {
2016-03-25 11:17:22 -07:00
var self = this;
var addresses = [addressArg];
if (Array.isArray(addressArg)) {
addresses = addressArg;
}
2016-03-25 11:17:22 -07:00
var cacheKey = addresses.join('');
var balance = self.balanceCache.get(cacheKey);
if (balance) {
return setImmediate(function() {
callback(null, balance);
});
} else {
this.client.getAddressBalance({addresses: addresses}, function(err, response) {
if (err) {
return callback(err);
}
self.balanceCache.set(cacheKey, response.result);
callback(null, response.result);
});
}
};
2016-04-05 07:32:07 -07:00
Bitcoin.prototype.getAddressUnspentOutputs = function(addressArg, options, callback) {
var self = this;
var addresses = [addressArg];
if (Array.isArray(addressArg)) {
addresses = addressArg;
}
var cacheKey = addresses.join('');
var utxos = self.utxosCache.get(cacheKey);
if (utxos) {
return setImmediate(function() {
callback(null, utxos);
});
} else {
self.client.getAddressUtxos({addresses: addresses}, function(err, response) {
if (err) {
return callback(err);
}
self.utxosCache.set(cacheKey, response.result);
callback(null, response.result);
});
}
};
Bitcoin.prototype._getBalanceFromMempool = function(deltas) {
var satoshis = 0;
for (var i = 0; i < deltas.length; i++) {
satoshis += deltas[i].satoshis;
}
return satoshis;
};
Bitcoin.prototype._getTxidsFromMempool = function(deltas) {
var mempoolTxids = [];
var mempoolTxidsKnown = {};
for (var i = 0; i < deltas.length; i++) {
var txid = deltas[i].txid;
if (!mempoolTxidsKnown[txid]) {
mempoolTxids.push(txid);
mempoolTxidsKnown[txid] = true;
}
}
return mempoolTxids;
};
Bitcoin.prototype.getAddressTxids = function(addressArg, options, callback) {
2016-03-25 11:17:22 -07:00
var self = this;
var queryMempool = _.isUndefined(options.queryMempool) ? true : options.queryMempool;
var addresses = [addressArg];
if (Array.isArray(addressArg)) {
addresses = addressArg;
}
2016-03-25 11:17:22 -07:00
var cacheKey = addresses.join('');
var mempoolTxids = [];
2016-03-25 11:17:22 -07:00
var txids = self.txidsCache.get(cacheKey);
function finish() {
if (txids) {
var allTxids = mempoolTxids.reverse().concat(txids);
return setImmediate(function() {
callback(null, allTxids);
});
} else {
self.client.getAddressTxids({addresses: addresses}, function(err, response) {
if (err) {
return callback(err);
}
response.result.reverse();
self.txidsCache.set(cacheKey, response.result);
var allTxids = mempoolTxids.reverse().concat(response.result);
return callback(null, allTxids);
});
}
}
if (queryMempool) {
self.client.getAddressMempool({addresses: addresses}, function(err, response) {
2016-03-25 11:17:22 -07:00
if (err) {
return callback(err);
}
mempoolTxids = self._getTxidsFromMempool(response.result);
finish();
2016-03-25 11:17:22 -07:00
});
} else {
finish();
2016-03-25 11:17:22 -07:00
}
};
Bitcoin.prototype._getConfirmationsDetail = function(transaction) {
var confirmations = 0;
if (transaction.__height >= 0) {
confirmations = this.height - transaction.__height + 1;
}
return confirmations;
};
Bitcoin.prototype._getAddressDetailsForTransaction = function(transaction, addressStrings) {
var result = {
addresses: {},
satoshis: 0
};
for (var inputIndex = 0; inputIndex < transaction.inputs.length; inputIndex++) {
var input = transaction.inputs[inputIndex];
if (!input.script) {
continue;
}
var inputAddress = input.script.toAddress(this.node.network);
if (inputAddress) {
var inputAddressString = inputAddress.toString();
if (addressStrings.indexOf(inputAddressString) >= 0) {
if (!result.addresses[inputAddressString]) {
result.addresses[inputAddressString] = {
inputIndexes: [inputIndex],
outputIndexes: []
};
} else {
result.addresses[inputAddressString].inputIndexes.push(inputIndex);
}
result.satoshis -= input.output.satoshis;
}
}
}
for (var outputIndex = 0; outputIndex < transaction.outputs.length; outputIndex++) {
var output = transaction.outputs[outputIndex];
if (!output.script) {
continue;
}
var outputAddress = output.script.toAddress(this.node.network);
if (outputAddress) {
var outputAddressString = outputAddress.toString();
if (addressStrings.indexOf(outputAddressString) >= 0) {
if (!result.addresses[outputAddressString]) {
result.addresses[outputAddressString] = {
inputIndexes: [],
outputIndexes: [outputIndex]
};
} else {
result.addresses[outputAddressString].outputIndexes.push(outputIndex);
}
result.satoshis += output.satoshis;
}
}
}
return result;
};
/**
* Will expand into a detailed transaction from a txid
* @param {Object} txid - A bitcoin transaction id
* @param {Function} callback
*/
Bitcoin.prototype._getDetailedTransaction = function(txid, options, next) {
var self = this;
var queryMempool = _.isUndefined(options.queryMempool) ? true : options.queryMempool;
self.getTransactionWithBlockInfo(
txid,
queryMempool,
function(err, transaction) {
if (err) {
return next(err);
}
transaction.populateInputs(self, [], function(err) {
if (err) {
return next(err);
}
var addressDetails = self._getAddressDetailsForTransaction(transaction, options.addressStrings);
var details = {
addresses: addressDetails.addresses,
satoshis: addressDetails.satoshis,
height: transaction.__height,
confirmations: self._getConfirmationsDetail(transaction),
timestamp: transaction.__timestamp,
// TODO bitcore-lib should return null instead of throwing error on coinbase
fees: !transaction.isCoinbase() ? transaction.getFee() : null,
tx: transaction
};
next(null, details);
});
}
);
};
Bitcoin.prototype._getAddressStrings = function(addresses) {
var addressStrings = [];
for (var i = 0; i < addresses.length; i++) {
var address = addresses[i];
if (address instanceof bitcore.Address) {
addressStrings.push(address.toString());
} else if (_.isString(address)) {
addressStrings.push(address);
} else {
throw new TypeError('Addresses are expected to be strings');
}
}
return addressStrings;
};
2016-03-25 11:17:22 -07:00
Bitcoin.prototype._paginateTxids = function(fullTxids, from, to) {
var txids;
if (from >= 0 && to >= 0) {
2016-03-25 12:09:44 -07:00
txids = fullTxids.slice(from, to);
2016-03-25 11:17:22 -07:00
} else {
txids = fullTxids;
}
return txids;
};
Bitcoin.prototype.getAddressHistory = function(addressArg, options, callback) {
var self = this;
var addresses = [addressArg];
if (_.isArray(addressArg)) {
addresses = addressArg;
}
if (addresses.length > this.maxAddressesQuery) {
return callback(new TypeError('Maximum number of addresses (' + this.maxAddressesQuery + ') exceeded'));
}
var queryMempool = _.isUndefined(options.queryMempool) ? true : options.queryMempool;
var addressStrings = this._getAddressStrings(addresses);
self.getAddressTxids(addresses, {}, function(err, txids) {
if (err) {
return callback(err);
}
2016-03-25 11:17:22 -07:00
var totalCount = txids.length;
txids = self._paginateTxids(txids, options.from, options.to);
async.mapSeries(
txids,
function(txid, next) {
self._getDetailedTransaction(txid, {
queryMempool: queryMempool,
addressStrings: addressStrings
}, next);
},
function(err, transactions) {
if (err) {
return callback(err);
}
callback(null, {
2016-03-25 11:17:22 -07:00
totalCount: totalCount,
items: transactions
});
}
);
});
};
Bitcoin.prototype.getAddressSummary = function(addressArg, options, callback) {
var self = this;
var summary = {};
var queryMempool = _.isUndefined(options.queryMempool) ? true : options.queryMempool;
2016-03-25 11:17:22 -07:00
var summaryTxids = [];
var mempoolTxids = [];
2016-03-25 11:17:22 -07:00
var addresses = [addressArg];
if (Array.isArray(addressArg)) {
addresses = addressArg;
}
var cacheKey = addresses.join('');
2016-03-25 11:17:22 -07:00
function querySummary() {
async.parallel([
function getTxList(done) {
self.getAddressTxids(addressArg, {queryMempool: false}, function(err, txids) {
2016-03-25 11:17:22 -07:00
if (err) {
return done(err);
}
summaryTxids = txids;
summary.appearances = txids.length;
done();
});
},
function getBalance(done) {
self.getAddressBalance(addressArg, options, function(err, data) {
if (err) {
return done(err);
}
summary.totalReceived = data.received;
summary.totalSpent = data.received - data.balance;
summary.balance = data.balance;
done();
});
},
function getMempool(done) {
if (!queryMempool) {
return done();
}
self.client.getAddressMempool({'addresses': [addressArg]}, function(err, response) {
if (err) {
return done(err);
}
mempoolTxids = self._getTxidsFromMempool(response.result);
summary.unconfirmedAppearances = mempoolTxids.length;
summary.unconfirmedBalance = self._getBalanceFromMempool(response.result);
done();
});
},
2016-03-25 11:17:22 -07:00
], function(err) {
if (err) {
2016-03-25 11:17:22 -07:00
return callback(err);
}
2016-03-25 11:17:22 -07:00
self.summaryCache.set(cacheKey, summary);
if (!options.noTxList) {
var allTxids = mempoolTxids.reverse().concat(summaryTxids);
summary.txids = allTxids;
2016-03-25 11:17:22 -07:00
}
callback(null, summary);
});
}
2016-03-25 11:17:22 -07:00
if (options.noTxList) {
var summaryCache = self.summaryCache.get(cacheKey);
if (summaryCache) {
callback(null, summaryCache);
} else {
querySummary();
}
} else {
querySummary();
}
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will retrieve a block as a Node.js Buffer from disk.
2015-09-22 08:38:14 -07:00
* @param {String|Number} block - A block hash or block height number
*/
2016-03-31 07:15:29 -07:00
Bitcoin.prototype.getBlock = function(blockArg, callback) {
// TODO apply performance patch to the RPC method for raw data
var self = this;
2016-03-25 11:17:22 -07:00
function queryBlock(blockhash) {
self.client.getBlock(blockhash, false, function(err, response) {
if (err) {
return callback(err);
}
2016-03-31 07:15:29 -07:00
var blockObj = bitcore.Block.fromString(response.result);
self.blockCache.set(blockArg, blockObj);
callback(null, blockObj);
});
}
2016-03-31 07:15:29 -07:00
var cachedBlock = self.blockCache.get(blockArg);
2016-03-25 11:17:22 -07:00
if (cachedBlock) {
return setImmediate(function() {
callback(null, cachedBlock);
});
} else {
2016-03-31 07:15:29 -07:00
if (_.isNumber(blockArg)) {
self.client.getBlockHash(blockArg, function(err, response) {
2016-03-25 11:17:22 -07:00
if (err) {
return callback(err);
}
var blockhash = response.result;
queryBlock(blockhash);
});
} else {
2016-03-31 07:15:29 -07:00
queryBlock(blockArg);
2016-03-25 11:17:22 -07:00
}
}
2015-08-31 06:00:00 -07:00
};
Bitcoin.prototype.getBlockHashesByTimestamp = function(high, low, callback) {
var self = this;
self.client.getBlockHashes(high, low, function(err, response) {
if (err) {
return callback(err);
}
callback(null, response.result);
});
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will return the block index information, the output will have the format:
* {
* prevHash: '000000004956cc2edd1a8caa05eacfa3c69f4c490bfc9ace820257834115ab35',
* nextHash: '0000000000629d100db387f37d0f37c51118f250fb0946310a8c37316cbc4028'
* hash: ' 00000000009e2958c15ff9290d571bf9459e93b19765c6801ddeccadbb160a1e',
2015-09-22 08:38:14 -07:00
* chainWork: '0000000000000000000000000000000000000000000000000000000000000016',
* height: 10
* }
* @param {String|Number} block - A block hash or block height
* @returns {Object}
*/
Bitcoin.prototype.getBlockHeader = function(block, callback) {
var self = this;
2015-08-31 06:00:00 -07:00
function queryHeader(blockhash) {
self.client.getBlockHeader(blockhash, function(err, response) {
2016-04-07 15:59:28 -07:00
if (err && response.error.code === -5) {
return callback(null, null);
} else if (err) {
return callback(err);
}
2016-04-07 15:59:28 -07:00
// TODO format response prevHash instead of previousblockhash, etc.
callback(null, response.result);
});
}
if (_.isNumber(block)) {
self.client.getBlockHash(block, function(err, response) {
2016-04-07 15:59:28 -07:00
if (err && response.error.code === -8) {
return callback(null, null);
} else if (err) {
return callback(err);
}
var blockhash = response.result;
queryHeader(blockhash);
});
} else {
queryHeader(block);
}
2015-09-08 11:04:14 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will estimate the fee per kilobyte.
* @param {Number} blocks - The number of blocks for the transaction to be confirmed.
* @returns {Number}
*/
Bitcoin.prototype.estimateFee = function(blocks, callback) {
this.client.estimateFee(blocks, function(err, response) {
if (err) {
return callback(err);
}
callback(null, response.result);
});
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will add a transaction to the mempool and relay to connected peers, the function
* will throw an error if there were validation problems.
* @param {String} transaction - The hex string of the transaction
* @param {Boolean} allowAbsurdFees - Enable large fees
*/
Bitcoin.prototype.sendTransaction = function(tx, allowAbsurdFees, callback) {
var txString;
if (tx instanceof Transaction) {
txString = tx.serialize();
} else {
txString = tx;
}
2016-04-07 15:59:28 -07:00
if (_.isFunction(allowAbsurdFees) && _.isUndefined(callback)) {
callback = allowAbsurdFees;
allowAbsurdFees = false;
}
2016-04-07 15:59:28 -07:00
this.client.sendRawTransaction(txString, allowAbsurdFees, function(err, response) {
if (err) {
return callback(err);
}
callback(null, response.result);
});
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will get a transaction as a Node.js Buffer from disk and the mempool.
* @param {String} txid - The transaction hash
* @param {Boolean} queryMempool - Include the mempool
* @param {Function} callback
*/
2015-08-31 06:00:00 -07:00
Bitcoin.prototype.getTransaction = function(txid, queryMempool, callback) {
2016-03-25 11:17:22 -07:00
var self = this;
var tx = self.transactionCache.get(txid);
if (tx) {
return setImmediate(function() {
callback(null, tx);
});
} else {
self.client.getRawTransaction(txid, function(err, response) {
2016-04-07 15:59:28 -07:00
if (err && response.error.code === -5) {
return callback(null, null);
} else if (err) {
2016-03-25 11:17:22 -07:00
return callback(err);
}
var tx = Transaction();
tx.fromString(response.result);
self.transactionCache.set(txid, tx);
callback(null, tx);
});
}
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will get a transaction with additional information about the block, in the format:
2015-09-22 08:38:14 -07:00
* {
* blockHash: '2725743288feae6bdaa976590af7cb12d7b535b5a242787de6d2789c73682ed1',
* height: 48,
* timestamp: 1442951110, // in seconds
* buffer: <Buffer...> // transaction buffer
* }
* @param {String} txid - The transaction hash
* @param {Boolean} queryMempool - Include the mempool
* @param {Function} callback
*/
2015-08-31 06:00:00 -07:00
Bitcoin.prototype.getTransactionWithBlockInfo = function(txid, queryMempool, callback) {
2016-03-25 11:17:22 -07:00
var self = this;
var tx = self.transactionInfoCache.get(txid);
if (tx) {
return setImmediate(function() {
callback(null, tx);
});
} else {
self.client.getRawTransaction(txid, 1, function(err, response) {
if (err) {
return callback(err);
}
if (!response.result) {
return callback(new errors.Transaction.NotFound());
}
var tx = Transaction();
tx.fromString(response.result.hex);
tx.__blockHash = response.result.blockhash;
tx.__height = response.result.height;
tx.__timestamp = response.result.time;
var confirmations = self._getConfirmationsDetail(tx);
if (confirmations >= self.transactionInfoCacheConfirmations) {
self.transactionInfoCache.set(txid, tx);
}
2016-03-25 11:17:22 -07:00
callback(null, tx);
});
}
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Will get the best block hash for the chain.
* @returns {String}
*/
Bitcoin.prototype.getBestBlockHash = function(callback) {
this.client.getBestBlockHash(function(err, response) {
if (err) {
return callback(err);
}
callback(null, response.result);
});
};
Bitcoin.prototype.getInputForOutput = function(txid, index, options, callback) {
// TODO
setImmediate(callback);
};
2015-09-22 08:38:14 -07:00
/**
* This will return information about the database in the format:
* {
* version: 110000,
* protocolversion: 70002,
* blocks: 151,
* timeoffset: 0,
* connections: 0,
* difficulty: 4.6565423739069247e-10,
* testnet: false,
* relayfee: 1000,
* errors: ''
* }
*/
Bitcoin.prototype.getInfo = function(callback) {
2016-04-07 15:59:28 -07:00
var self = this;
this.client.getInfo(function(err, response) {
if (err) {
return callback(err);
}
2016-04-07 15:59:28 -07:00
var result = response.result;
result.network = self.node.network.name;
if (self.node.network.regtestEnabled) {
result.network = 'regtest';
}
callback(null, result);
});
2015-08-31 06:00:00 -07:00
};
2015-09-22 08:38:14 -07:00
/**
* Called by Node to stop the service.
* @param {Function} callback
*/
2015-08-31 06:00:00 -07:00
Bitcoin.prototype.stop = function(callback) {
if (this.spawn && this.spawn.process) {
this.spawn.process.once('exit', function(err, status) {
if (err) {
return callback(err);
} else {
return callback();
}
});
2016-04-07 11:46:19 -07:00
this.spawn.process.kill('SIGINT');
} else {
callback();
}
2015-08-31 06:00:00 -07:00
};
module.exports = Bitcoin;