Merge pull request #285 from isocolsky/fee_levels

Dynamic fee levels
This commit is contained in:
Matias Alejo Garcia 2015-07-17 16:21:05 -03:00
commit 4c74515f67
6 changed files with 187 additions and 8 deletions

View File

@ -105,6 +105,23 @@ Insight.prototype.getAddressActivity = function(addresses, cb) {
});
};
Insight.prototype.estimateFee = function(nbBlocks, cb) {
var url = this.url + '/api/utils/estimatefee';
if (nbBlocks) {
url += '?nbBlocks=' + nbBlocks;
}
var args = {
method: 'GET',
url: url,
json: true,
};
request(args, function(err, res, body) {
if (err || res.statusCode !== 200) return cb(err || res);
return cb(null, body);
});
};
Insight.prototype.initSocket = function() {
var socket = io.connect(this.url, {
'reconnection': true,

View File

@ -266,6 +266,16 @@ ExpressApp.prototype.start = function(opts, cb) {
});
});
router.get('/v1/feelevels/', function(req, res) {
var opts = {};
if (req.query.network) opts.network = req.query.network;
var server = getServer(req, res);
server.getFeeLevels(opts, function(err, feeLevels) {
if (err) return returnError(err, res, req);
res.json(feeLevels);
});
});
router.post('/v1/txproposals/:id/signatures/', function(req, res) {
getServerWithAuth(req, res, function(server) {
req.body.txProposalId = req.params['id'];

View File

@ -605,13 +605,14 @@ WalletService.prototype.verifyMessageSignature = function(opts, cb) {
};
WalletService.prototype._getBlockchainExplorer = function(provider, network) {
WalletService.prototype._getBlockchainExplorer = function(network) {
if (!this.blockchainExplorer) {
var opts = {};
if (this.blockchainExplorerOpts && this.blockchainExplorerOpts[network]) {
opts = this.blockchainExplorerOpts[network];
}
opts.provider = provider;
// TODO: provider should be configurable
opts.provider = 'insight';
opts.network = network;
this.blockchainExplorer = new BlockchainExplorer(opts);
}
@ -636,7 +637,7 @@ WalletService.prototype._getUtxos = function(cb) {
var addressToPath = _.indexBy(addresses, 'address'); // TODO : check performance
var networkName = Bitcore.Address(addressStrs[0]).toObject().network;
var bc = self._getBlockchainExplorer('insight', networkName);
var bc = self._getBlockchainExplorer(networkName);
bc.getUnspentUtxos(addressStrs, function(err, inutxos) {
if (err) {
log.error('Could not fetch unspent outputs', err);
@ -765,6 +766,86 @@ WalletService.prototype.getBalance = function(opts, cb) {
});
};
WalletService.prototype._sampleFeeLevels = function(network, points, cb) {
var self = this;
// TODO: cache blockexplorer data
var bc = self._getBlockchainExplorer(network);
async.map(points, function(p, next) {
bc.estimateFee(p, function(err, result) {
if (err) {
log.error('Error estimating fee', err);
return next(err);
}
var feePerKB = _.isObject(result) ? +(result.feePerKB) : -1;
if (feePerKB < 0) {
log.warn('Could not compute fee estimation (nbBlocks=' + p + ')');
}
return next(null, [p, feePerKB * 1e8]);
});
}, function(err, results) {
if (err) return cb(err);
return cb(null, _.zipObject(results));
});
};
/**
* Returns fee levels for the current state of the network.
* @param {Object} opts
* @param {string} [opts.network = 'livenet'] - The Bitcoin network to estimate fee levels from.
* @returns {Object} feeLevels - A list of fee levels & associated amount per kB in satoshi.
*/
WalletService.prototype.getFeeLevels = function(opts, cb) {
var self = this;
opts = opts || {};
var network = opts.network || 'livenet';
if (network != 'livenet' && network != 'testnet')
return cb(new ClientError('Invalid network'));
var levels = [{
name: 'emergency',
nbBlocks: 1,
modifier: 1.5,
defaultValue: 50000
}, {
name: 'priority',
nbBlocks: 1,
modifier: 1,
defaultValue: 20000
}, {
name: 'normal',
nbBlocks: 3,
modifier: 1,
defaultValue: 10000
}, {
name: 'economy',
nbBlocks: 10,
modifier: 1,
defaultValue: 5000
}, ];
var samplePoints = _.uniq(_.pluck(levels, 'nbBlocks'));
self._sampleFeeLevels(network, samplePoints, function(err, feeSamples) {
var values = _.map(levels, function(level) {
var feePerKB;
if (err) {
feePerKB = level.defaultValue;
} else {
var sample = feeSamples[level.nbBlocks];
feePerKB = (sample < 0) ? level.defaultValue : sample * level.modifier;
}
return {
level: level.name,
feePerKB: feePerKB,
};
});
return cb(null, values);
});
};
WalletService.prototype._selectTxInputs = function(txp, cb) {
var self = this;
@ -1107,7 +1188,7 @@ WalletService.prototype._broadcastTx = function(txp, cb) {
} catch (ex) {
return cb(ex);
}
var bc = this._getBlockchainExplorer('insight', txp.getNetworkName());
var bc = this._getBlockchainExplorer(txp.getNetworkName());
bc.broadcast(raw, function(err, txid) {
if (err) {
log.error('Could not broadcast transaction', err);
@ -1119,7 +1200,7 @@ WalletService.prototype._broadcastTx = function(txp, cb) {
WalletService.prototype._checkTxInBlockchain = function(txp, cb) {
var tx = txp.getBitcoreTx();
var bc = this._getBlockchainExplorer('insight', txp.getNetworkName());
var bc = this._getBlockchainExplorer(txp.getNetworkName());
bc.getTransaction(tx.id, function(err, tx) {
if (err) {
log.error('Could not get transaction info', err);
@ -1507,7 +1588,7 @@ WalletService.prototype.getTxHistory = function(opts, cb) {
var addressStrs = _.pluck(addresses, 'address');
var networkName = Bitcore.Address(addressStrs[0]).toObject().network;
var bc = self._getBlockchainExplorer('insight', networkName);
var bc = self._getBlockchainExplorer(networkName);
async.parallel([
function(next) {
@ -1561,7 +1642,7 @@ WalletService.prototype.scan = function(opts, cb) {
};
function checkActivity(addresses, networkName, cb) {
var bc = self._getBlockchainExplorer('insight', networkName);
var bc = self._getBlockchainExplorer(networkName);
bc.getAddressActivity(addresses, cb);
};

View File

@ -20,7 +20,7 @@
"dependencies": {
"async": "^0.9.0",
"bitcore": "^0.12.9",
"bitcore-wallet-utils": "^0.0.20",
"bitcore-wallet-utils": "^0.0.21",
"body-parser": "^1.11.0",
"coveralls": "^2.11.2",
"email-validator": "^1.0.1",

View File

@ -19,6 +19,7 @@ describe('Blockchain explorer', function() {
exp.should.respondTo('getTransactions');
exp.should.respondTo('getAddressActivity');
exp.should.respondTo('getUnspentUtxos');
exp.should.respondTo('estimateFee');
exp.should.respondTo('initSocket');
var exp = new BlockchainExplorer({
provider: 'insight',

View File

@ -198,6 +198,14 @@ helpers.stubHistory = function(txs) {
};
};
helpers.stubFeeLevels = function(levels) {
blockchainExplorer.estimateFee = function(nbBlocks, cb) {
return cb(null, {
feePerKB: levels[nbBlocks] / 1e8
});
};
};
helpers.stubAddressActivity = function(activeAddresses) {
blockchainExplorer.getAddressActivity = function(addresses, cb) {
return cb(null, _.intersection(activeAddresses, addresses).length > 0);
@ -1443,6 +1451,68 @@ describe('Wallet service', function() {
});
});
describe('#getFeeLevels', function() {
var server, wallet;
beforeEach(function(done) {
helpers.createAndJoinWallet(1, 1, function(s, w) {
server = s;
wallet = w;
done();
});
});
it('should get current fee levels', function(done) {
helpers.stubFeeLevels({
1: 40000,
3: 20000,
10: 18000,
});
server.getFeeLevels({}, function(err, fees) {
should.not.exist(err);
fees = _.zipObject(_.map(fees, function(item) {
return [item.level, item.feePerKB];
}));
fees.emergency.should.equal(60000);
fees.priority.should.equal(40000);
fees.normal.should.equal(20000);
fees.economy.should.equal(18000);
done();
});
});
it('should get default fees if network cannot be accessed', function(done) {
blockchainExplorer.estimateFee = sinon.stub().yields('dummy error');
server.getFeeLevels({}, function(err, fees) {
should.not.exist(err);
fees = _.zipObject(_.map(fees, function(item) {
return [item.level, item.feePerKB];
}));
fees.emergency.should.equal(50000);
fees.priority.should.equal(20000);
fees.normal.should.equal(10000);
fees.economy.should.equal(5000);
done();
});
});
it('should get default fees if network cannot estimate (returns -1)', function(done) {
helpers.stubFeeLevels({
1: -1,
3: 18000,
10: 0,
});
server.getFeeLevels({}, function(err, fees) {
should.not.exist(err);
fees = _.zipObject(_.map(fees, function(item) {
return [item.level, item.feePerKB];
}));
fees.emergency.should.equal(50000);
fees.priority.should.equal(20000);
fees.normal.should.equal(18000);
fees.economy.should.equal(0);
done();
});
});
});
describe('Wallet not complete tests', function() {
it('should fail to create address when wallet is not complete', function(done) {
var server = new WalletService();