@owstack/wallet-service
Version:
A service for multisignature HD wallets
147 lines (122 loc) • 3.57 kB
JavaScript
;
var owsCommon = require('@owstack/ows-common');
var BufferReader = owsCommon.encoding.BufferReader;
var Hash = owsCommon.Hash;
var secp256k1 = require('secp256k1');
var lodash = owsCommon.deps.lodash;
var $ = require('preconditions').singleton();
class Utils {
constructor(context) {
// Context defines the coin network and is set by the implementing service in
// order to instance this base service; e.g., btc-service.
context.inject(this);
// Set some frequently used contant values based on context.
this.atomicsName = this.ctx.Unit().atomicsName();
}
};
Utils.prototype.formatAmount = function(atomic, code, opts) {
$.shouldBeNumber(atomic);
return this.ctx.Unit(atomic, 'atomic').toString(code, opts);
};
Utils.prototype.formatAmountInStandard = function(atomic) {
$.shouldBeNumber(atomic);
return this.ctx.Unit(atomic, 'atomic').toString('standard');
};
Utils.prototype.formatUtxos = function(utxos) {
var self = this;
if (lodash.isEmpty(utxos)) return 'none';
return lodash.map([].concat(utxos), function(i) {
var amount = self.formatAmountInStandard(i[self.atomicsName]);
var confirmations = i.confirmations ? i.confirmations + 'c' : 'u';
return amount + '/' + confirmations;
}).join(', ');
};
Utils.getMissingFields = function(obj, args) {
args = [].concat(args);
if (!lodash.isObject(obj)) return args;
var missing = lodash.filter(args, function(arg) {
return !obj.hasOwnProperty(arg);
});
return missing;
};
/**
* @desc rounds a Javascript number
* @param number
* @return {number}
*/
Utils.strip = function(number) {
return parseFloat(number.toPrecision(12));
};
Utils.hashMessage = function(text, noReverse) {
$.checkArgument(text);
var buf = new Buffer(text);
var ret = Hash.sha256sha256(buf);
if (!noReverse) {
ret = new BufferReader(ret).readReverse();
}
return ret;
};
Utils.verifyMessage = function(text, signature, publicKey) {
$.checkArgument(text);
var hash = Utils.hashMessage(text, true);
var sig = this._tryImportSignature(signature);
if (!sig) {
return false;
}
var publicKeyBuffer = this._tryImportPublicKey(publicKey);
if (!publicKeyBuffer) {
return false;
}
return this._tryVerifyMessage(hash, sig, publicKeyBuffer);
};
Utils._tryImportPublicKey = function(publicKey) {
var publicKeyBuffer = publicKey;
try {
if (!Buffer.isBuffer(publicKey)) {
publicKeyBuffer = new Buffer(publicKey, 'hex');
}
return publicKeyBuffer;
} catch(e) {
return false;
}
};
Utils._tryImportSignature = function(signature) {
try {
var signatureBuffer = signature;
if (!Buffer.isBuffer(signature)) {
signatureBuffer = new Buffer(signature, 'hex');
}
return secp256k1.signatureImport(signatureBuffer);
} catch(e) {
return false;
}
};
Utils._tryVerifyMessage = function(hash, sig, publicKeyBuffer) {
try {
return secp256k1.verify(hash, sig, publicKeyBuffer);
} catch(e) {
return false;
}
};
Utils.formatRatio = function(ratio) {
return (ratio * 100.).toFixed(4) + '%';
};
Utils.formatSize = function(size) {
return (size / 1000.).toFixed(4) + 'kB';
};
Utils.parseVersion = function(version) {
var v = {};
if (!version) return null;
var x = version.split('-');
if (x.length != 2) {
v.agent = version;
return v;
}
v.agent = lodash.includes(['wc', 'ws'], x[0]) ? 'wc' : x[0];
x = x[1].split('.');
v.major = parseInt(x[0]);
v.minor = parseInt(x[1]);
v.patch = parseInt(x[2]);
return v;
};
module.exports = Utils;