bitcore-wallet-service/lib/model/addressmanager.js

64 lines
1.4 KiB
JavaScript

var _ = require('lodash');
var SHARED_INDEX = 0x80000000 - 1;
function AddressManager() {
this.version = '1.0.0';
};
AddressManager.create = function(opts) {
opts = opts || {};
var x = new AddressManager();
x.receiveAddressIndex = 0;
x.changeAddressIndex = 0;
x.copayerIndex = (opts && _.isNumber(opts.copayerIndex)) ? opts.copayerIndex : SHARED_INDEX;
return x;
};
AddressManager.fromObj = function(obj) {
var x = new AddressManager();
x.receiveAddressIndex = obj.receiveAddressIndex;
x.changeAddressIndex = obj.changeAddressIndex;
x.copayerIndex = obj.copayerIndex;
return x;
};
AddressManager.prototype._incrementIndex = function(isChange) {
if (isChange) {
this.changeAddressIndex++;
} else {
this.receiveAddressIndex++;
}
};
AddressManager.prototype.rewindIndex = function(isChange, n) {
n = _.isUndefined(n) ? 1 : n;
if (isChange) {
this.changeAddressIndex = Math.max(0, this.changeAddressIndex - n);
} else {
this.receiveAddressIndex = Math.max(0, this.receiveAddressIndex - n);
}
};
AddressManager.prototype.getCurrentAddressPath = function(isChange) {
return 'm/' +
this.copayerIndex + '/' +
(isChange ? 1 : 0) + '/' +
(isChange ? this.changeAddressIndex : this.receiveAddressIndex);
};
AddressManager.prototype.getNewAddressPath = function(isChange) {
var ret = this.getCurrentAddressPath(isChange);
this._incrementIndex(isChange);
return ret;
};
module.exports = AddressManager;