You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.4 KiB
94 lines
2.4 KiB
'use strict';
|
|
|
|
var $ = require('preconditions').singleton();
|
|
var _ = require('lodash');
|
|
var util = require('util');
|
|
var Uuid = require('uuid');
|
|
var sjcl = require('sjcl');
|
|
|
|
var Address = require('./address');
|
|
var AddressManager = require('./addressmanager');
|
|
var Bitcore = require('bitcore-lib');
|
|
|
|
var Constants = require('../common/constants');
|
|
|
|
function Copayer() {};
|
|
|
|
Copayer._xPubToCopayerId = function(xpub) {
|
|
var hash = sjcl.hash.sha256.hash(xpub);
|
|
return sjcl.codec.hex.fromBits(hash);
|
|
};
|
|
|
|
Copayer.create = function(opts) {
|
|
opts = opts || {};
|
|
$.checkArgument(opts.xPubKey, 'Missing copayer extended public key')
|
|
.checkArgument(opts.requestPubKey, 'Missing copayer request public key')
|
|
.checkArgument(opts.signature, 'Missing copayer request public key signature');
|
|
|
|
opts.copayerIndex = opts.copayerIndex || 0;
|
|
|
|
var x = new Copayer();
|
|
|
|
x.version = 2;
|
|
x.createdOn = Math.floor(Date.now() / 1000);
|
|
x.xPubKey = opts.xPubKey;
|
|
x.id = Copayer._xPubToCopayerId(x.xPubKey);
|
|
x.name = opts.name;
|
|
x.requestPubKey = opts.requestPubKey;
|
|
x.signature = opts.signature;
|
|
x.requestPubKeys = [{
|
|
key: opts.requestPubKey,
|
|
signature: opts.signature,
|
|
}];
|
|
|
|
var derivationStrategy = opts.derivationStrategy || Constants.DERIVATION_STRATEGIES.BIP45;
|
|
if (AddressManager.supportsCopayerBranches(derivationStrategy)) {
|
|
x.addressManager = AddressManager.create({
|
|
derivationStrategy: derivationStrategy,
|
|
copayerIndex: opts.copayerIndex,
|
|
});
|
|
}
|
|
|
|
x.customData = opts.customData;
|
|
|
|
return x;
|
|
};
|
|
|
|
Copayer.fromObj = function(obj) {
|
|
var x = new Copayer();
|
|
|
|
x.version = obj.version;
|
|
x.createdOn = obj.createdOn;
|
|
x.id = obj.id;
|
|
x.name = obj.name;
|
|
x.xPubKey = obj.xPubKey;
|
|
x.requestPubKey = obj.requestPubKey;
|
|
x.signature = obj.signature;
|
|
|
|
if (parseInt(x.version) == 1) {
|
|
x.requestPubKeys = [{
|
|
key: x.requestPubKey,
|
|
signature: x.signature,
|
|
}];
|
|
x.version = 2;
|
|
} else {
|
|
x.requestPubKeys = obj.requestPubKeys;
|
|
}
|
|
|
|
if (obj.addressManager) {
|
|
x.addressManager = AddressManager.fromObj(obj.addressManager);
|
|
}
|
|
x.customData = obj.customData;
|
|
|
|
return x;
|
|
};
|
|
|
|
Copayer.prototype.createAddress = function(wallet, isChange) {
|
|
$.checkState(wallet.isComplete());
|
|
|
|
var path = this.addressManager.getNewAddressPath(isChange);
|
|
var address = Address.derive(wallet.id, wallet.addressType, wallet.publicKeyRing, path, wallet.m, wallet.network, isChange);
|
|
return address;
|
|
};
|
|
|
|
module.exports = Copayer;
|
|
|