copay/js/models/core/Wallet.js

80 lines
2.5 KiB
JavaScript
Raw Normal View History

2014-04-10 13:57:41 -07:00
'use strict';
var imports = require('soop').imports();
2014-04-14 13:17:56 -07:00
2014-04-10 13:57:41 -07:00
var bitcore = require('bitcore');
var http = require('http');
2014-04-14 13:17:56 -07:00
var Storage = imports.Storage || require('FakeStorage');
var Network = imports.Network || require('FakeNetwork');
var Blockchain = imports.Blockchain || require('FakeBlockchain');
var copay = copay || require('../../../copay');
function Wallet(opts, config) {
2014-04-10 13:57:41 -07:00
opts = opts || {};
2014-04-14 13:17:56 -07:00
console.log('### CREATING WALLET.'
+ (opts.walletId ? ' USING ID: ' +opts.walletId : ' NEW ID') );
//
this.storage = new Storage(config.storage);
this.network = new Network(config.network);
this.blockchain = new Blockchain(config.blockchain);
this.privateKey = new copay.PrivateKey({networkName: config.networkName});
console.log('\t### PrivateKey Initialized');
2014-04-10 13:57:41 -07:00
2014-04-14 13:17:56 -07:00
this.publicKeyRing = opts.publicKeyRing || new copay.PublicKeyRing({
id: opts.walletId,
requiredCopayers: opts.requiredCopayers || config.wallet.requiredCopayers,
totalCopayers: opts.totalCopayers || config.wallet.totalCopayers,
networkName: config.networkName,
2014-04-10 13:57:41 -07:00
});
2014-04-14 13:17:56 -07:00
this.publicKeyRing.addCopayer(this.privateKey.getBIP32().extendedPublicKeyString());
console.log('\t### PublicKeyRing Initialized WalletID: ' + this.publicKeyRing.id);
this.txProposals = new copay.TxProposals({
walletId: this.publicKeyRing.id,
publicKeyRing: this.publicKeyRing,
networkName: config.networkName,
2014-04-10 13:57:41 -07:00
});
2014-04-14 13:17:56 -07:00
console.log('\t### TxProposals Initialized');
2014-04-10 13:57:41 -07:00
}
2014-04-14 13:17:56 -07:00
//
// var Read = function(walletId) {
// this.storage.read(walletId);
// $rootScope.w = new copay.PublicKeyRing.fromObj(pkr);
// $rootScope.txProposals = new copay.TxProposals.fromObj(txp);
// $rootScope.PrivateKey = new copay.PrivateKey.fromObj(priv); //TODO secure
//
//
// HERE or in Storage?
// $rootScope.walletId = walletId;
// $rootScope.w = new copay.PublicKeyRing.fromObj(pkr);
// $rootScope.txProposals = new copay.TxProposals.fromObj(txp);
// $rootScope.PrivateKey = new copay.PrivateKey.fromObj(priv); //TODO secure
// // JIC: Add our key
// try {
// $rootScope.publicKeyRing.addCopayer(
// $rootScope.PrivateKey.getBIP32().extendedPublicKeyString()
// );
// } catch (e) {
// console.log('NOT NECCESARY AN ERROR:', e); //TODO
// };
// ret = true;
// }
// return ret;
// };
// };
2014-04-10 13:57:41 -07:00
module.exports = require('soop')(Wallet);