copay/js/models/wallet.js

214 lines
5.0 KiB
JavaScript
Raw Normal View History

2014-03-26 11:26:31 -07:00
'use strict';
var imports = require('soop').imports();
var bitcore = require('bitcore');
var BIP32 = bitcore.BIP32;
2014-03-26 18:00:42 -07:00
var Address = bitcore.Address;
var Script = bitcore.Script;
2014-03-26 13:55:02 -07:00
var coinUtil= bitcore.util;
2014-03-26 11:26:31 -07:00
var Storage = imports.Storage || require('./Storage');
2014-03-26 13:55:02 -07:00
var log = imports.log || console.log;
var storage = Storage.default();
2014-03-26 11:26:31 -07:00
/*
* This follow Electrum convetion, as described on
* https://bitcointalk.org/index.php?topic=274182.0
*/
var PUBLIC_BRANCH = 'm/0/';
var CHANGE_BRANCH = 'm/1/';
2014-03-26 13:55:02 -07:00
2014-03-26 11:26:31 -07:00
function Wallet(opts) {
opts = opts || {};
this.network = opts.network === 'livenet' ?
bitcore.networks.livenet : bitcore.networks.testnet;
2014-03-26 18:00:42 -07:00
this.requiredCosigners = opts.neededCosigners || 3;
2014-03-26 11:26:31 -07:00
this.totalCosigners = opts.totalCosigners || 5;
2014-03-26 13:55:02 -07:00
this.id = opts.id || Wallet.getRandomId();
2014-03-26 11:26:31 -07:00
this.dirty = 1;
2014-03-26 13:55:02 -07:00
this.cosignersWallets = [];
2014-03-26 11:26:31 -07:00
this.bip32 = new BIP32(opts.bytes || this.network.name);
2014-03-26 18:00:42 -07:00
this.changeAddress
2014-03-26 11:26:31 -07:00
}
2014-03-26 13:55:02 -07:00
Wallet.getRandomId = function () {
return coinUtil.generateNonce().toString('hex');
};
2014-03-26 11:26:31 -07:00
2014-03-26 13:55:02 -07:00
Wallet.decrypt = function (passphrase, encPayload) {
log('[wallet.js.35] TODO READ: passphrase IGNORED');
return encPayload;
};
Wallet.encrypt = function (passphrase, payload) {
log('[wallet.js.92] TODO: passphrase IGNORED');
return payload;
};
Wallet.read = function (id, passphrase) {
var encPayload = storage.read(id);
if (!encPayload)
throw new Error('Could not find wallet data');
var data;
try {
data = JSON.parse( Wallet.decrypt( passphrase, encPayload ));
} catch (e) {
throw new Error('error in storage: '+ e.toString());
return;
};
if (data.id !== id)
throw new Error('Wrong id in data');
var config = { network: data.network === 'livenet' ?
bitcore.networks.livenet : bitcore.networks.testnet
};
var w = new Wallet(config);
2014-03-26 18:00:42 -07:00
w.requiredCosigners = data.neededCosigners;
2014-03-26 13:55:02 -07:00
w.totalCosigners = data.totalCosigners;
w.cosignersWallets = data.cosignersExtPubKeys.map( function (pk) {
return new Wallet({bytes:pk, network: w.network.name});
});
w.dirty = 0;
return w;
};
Wallet.prototype.serialize = function () {
return JSON.stringify({
id: this.id,
network: this.network.name,
2014-03-26 18:00:42 -07:00
requiredCosigners: this.neededCosigners,
2014-03-26 13:55:02 -07:00
totalCosigners: this.totalCosigners,
cosignersExtPubKeys: this.cosignersWallets.map( function (b) {
return b.getExtendedPubKey();
}),
priv: this.getExtendedPrivKey(),
});
};
Wallet.prototype.store = function (passphrase) {
if (!this.id)
throw new Error('wallet has no id');
storage.save(this.id, Wallet.encrypt(passphrase,this.serialize()));
this.dirty = 0;
return true;
2014-03-26 11:26:31 -07:00
};
Wallet.prototype.registeredCosigners = function () {
2014-03-26 13:55:02 -07:00
if (! this.cosignersWallets) return 1;
2014-03-26 11:26:31 -07:00
// 1 is self.
2014-03-26 13:55:02 -07:00
return 1 + this.cosignersWallets.length;
2014-03-26 11:26:31 -07:00
};
2014-03-26 13:55:02 -07:00
Wallet.prototype.getExtendedPrivKey = function () {
2014-03-26 11:26:31 -07:00
if (!this.bip32)
throw new Error('no priv key defined on the wallet');
return this.bip32.extended_private_key_string();
};
Wallet.prototype.getExtendedPubKey = function () {
return this.bip32.extended_public_key_string();
};
2014-03-26 18:00:42 -07:00
Wallet.prototype.haveAllRequiredPubKeys = function () {
return this.registeredCosigners() === this.totalCosigners;
};
Wallet.prototype._checkKeys = function() {
if (!this.haveAllRequiredPubKeys())
throw new Error('dont have required keys yet');
};
2014-03-26 11:26:31 -07:00
// should receive an array also?
Wallet.prototype.addCosignerExtendedPubKey = function (newEpk) {
2014-03-26 18:00:42 -07:00
if (this.haveAllRequiredPubKeys())
throw new Error('already have all required key:' + this.totalCosigners);
2014-03-26 11:26:31 -07:00
if (this.getExtendedPubKey() === newEpk)
throw new Error('already have that key (self kehy)');
2014-03-26 13:55:02 -07:00
this.cosignersWallets.forEach(function(b){
2014-03-26 11:26:31 -07:00
if (b.getExtendedPubKey() === newEpk)
throw new Error('already have that key');
});
2014-03-26 13:55:02 -07:00
this.cosignersWallets.push(new Wallet({bytes:newEpk, network: this.network.name } ));
this.dirty = 1;
2014-03-26 11:26:31 -07:00
};
2014-03-26 18:00:42 -07:00
Wallet.prototype.getPubKey = function (index,isChange) {
var path = (isChange ? CHANGE_BRANCH : PUBLIC_BRANCH) + index;
var bip32 = this.bip32.derive(path);
var pub = bip32.eckey.public;
return pub;
2014-03-26 11:26:31 -07:00
};
2014-03-26 18:00:42 -07:00
Wallet.prototype.getAddress = function (index, isChange) {
this._checkKeys();
2014-03-26 11:26:31 -07:00
2014-03-26 18:00:42 -07:00
var pubkey = [];
var l = this.cosignersWallets.length;
for(var i=0; i<l; i++) {
pubkey[i] = this.cosignersWallets[i].getPubKey(index, isChange);
}
var version = this.network.addressScript;
var script = Script.createMultisig(this.requiredCosigners, pubkey);
var buf = script.buffer;
var hash = coinUtil.sha256ripe160(buf);
var addr = new Address(version, hash);
var addrStr = addr.as('base58');
return addrStr;
2014-03-26 11:26:31 -07:00
};
2014-03-26 18:00:42 -07:00
Wallet.prototype.createAddress = function(isChange) {
var ret =
this.getAddress(isChange ? this.changeAddressIndex : this.addressIndex, isChange);
if (isChange)
this.addressIndex++;
else
this.changeAddressIndex++;
return ret;
};
2014-03-26 11:26:31 -07:00
// Input: Bitcore's Transaction, sign with ownPK
// return partially signed or fully signed tx
2014-03-26 13:55:02 -07:00
Wallet.prototype.signTx = function (tx) {
2014-03-26 11:26:31 -07:00
};
module.exports = require('soop')(Wallet);