2018-06-13 22:39:39 +03:00
|
|
|
'use strict';
|
2018-06-18 12:42:41 +03:00
|
|
|
var __extends = (this && this.__extends) || (function () {
|
|
|
|
var extendStatics = Object.setPrototypeOf ||
|
|
|
|
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
|
|
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
|
|
return function (d, b) {
|
|
|
|
extendStatics(d, b);
|
|
|
|
function __() { this.constructor = d; }
|
|
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
|
|
};
|
|
|
|
})();
|
2018-06-13 22:39:39 +03:00
|
|
|
var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
|
if (mod && mod.__esModule) return mod;
|
|
|
|
var result = {};
|
|
|
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
|
|
|
result["default"] = mod;
|
|
|
|
return result;
|
|
|
|
};
|
|
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
2018-09-24 23:07:14 +03:00
|
|
|
var bytes_1 = require("./utils/bytes");
|
|
|
|
var hash_1 = require("./utils/hash");
|
|
|
|
var hdnode_1 = require("./utils/hdnode");
|
|
|
|
var json_wallet_1 = require("./utils/json-wallet");
|
|
|
|
var keccak256_1 = require("./utils/keccak256");
|
|
|
|
var properties_1 = require("./utils/properties");
|
|
|
|
var random_bytes_1 = require("./utils/random-bytes");
|
|
|
|
var secretStorage = __importStar(require("./utils/secret-storage"));
|
|
|
|
var signing_key_1 = require("./utils/signing-key");
|
|
|
|
var transaction_1 = require("./utils/transaction");
|
2018-07-31 01:59:52 +03:00
|
|
|
// Imported Abstracts
|
|
|
|
var abstract_signer_1 = require("./abstract-signer");
|
2018-09-24 23:07:14 +03:00
|
|
|
var abstract_provider_1 = require("./providers/abstract-provider");
|
|
|
|
var errors = __importStar(require("./errors"));
|
2018-06-18 12:42:41 +03:00
|
|
|
var Wallet = /** @class */ (function (_super) {
|
|
|
|
__extends(Wallet, _super);
|
2018-06-13 22:39:39 +03:00
|
|
|
function Wallet(privateKey, provider) {
|
2018-06-18 12:42:41 +03:00
|
|
|
var _this = _super.call(this) || this;
|
|
|
|
errors.checkNew(_this, Wallet);
|
2018-06-13 22:39:39 +03:00
|
|
|
// Make sure we have a valid signing key
|
2018-07-26 04:20:21 +03:00
|
|
|
if (signing_key_1.SigningKey.isSigningKey(privateKey)) {
|
2018-06-18 12:42:41 +03:00
|
|
|
properties_1.defineReadOnly(_this, 'signingKey', privateKey);
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
|
|
|
else {
|
2018-06-18 12:42:41 +03:00
|
|
|
properties_1.defineReadOnly(_this, 'signingKey', new signing_key_1.SigningKey(privateKey));
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-06-18 12:42:41 +03:00
|
|
|
properties_1.defineReadOnly(_this, 'provider', provider);
|
|
|
|
return _this;
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-06-19 09:12:57 +03:00
|
|
|
Object.defineProperty(Wallet.prototype, "address", {
|
|
|
|
get: function () { return this.signingKey.address; },
|
|
|
|
enumerable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
Object.defineProperty(Wallet.prototype, "mnemonic", {
|
|
|
|
get: function () { return this.signingKey.mnemonic; },
|
|
|
|
enumerable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
Object.defineProperty(Wallet.prototype, "path", {
|
2019-01-18 00:34:17 +03:00
|
|
|
get: function () { return this.signingKey.path; },
|
2018-06-19 09:12:57 +03:00
|
|
|
enumerable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
Object.defineProperty(Wallet.prototype, "privateKey", {
|
|
|
|
get: function () { return this.signingKey.privateKey; },
|
|
|
|
enumerable: true,
|
|
|
|
configurable: true
|
|
|
|
});
|
|
|
|
/**
|
|
|
|
* Create a new instance of this Wallet connected to provider.
|
|
|
|
*/
|
2018-06-18 12:42:41 +03:00
|
|
|
Wallet.prototype.connect = function (provider) {
|
2018-07-31 01:59:52 +03:00
|
|
|
if (!(abstract_provider_1.Provider.isProvider(provider))) {
|
2018-07-16 10:59:25 +03:00
|
|
|
errors.throwError('invalid provider', errors.INVALID_ARGUMENT, { argument: 'provider', value: provider });
|
|
|
|
}
|
2018-06-18 12:42:41 +03:00
|
|
|
return new Wallet(this.signingKey, provider);
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
|
|
|
Wallet.prototype.getAddress = function () {
|
|
|
|
return Promise.resolve(this.address);
|
|
|
|
};
|
2018-06-18 12:42:41 +03:00
|
|
|
Wallet.prototype.sign = function (transaction) {
|
|
|
|
var _this = this;
|
|
|
|
return properties_1.resolveProperties(transaction).then(function (tx) {
|
2018-07-12 09:42:46 +03:00
|
|
|
var rawTx = transaction_1.serialize(tx);
|
|
|
|
var signature = _this.signingKey.signDigest(keccak256_1.keccak256(rawTx));
|
2018-10-15 02:05:38 +03:00
|
|
|
return transaction_1.serialize(tx, signature);
|
2018-06-18 12:42:41 +03:00
|
|
|
});
|
|
|
|
};
|
|
|
|
Wallet.prototype.signMessage = function (message) {
|
|
|
|
return Promise.resolve(bytes_1.joinSignature(this.signingKey.signDigest(hash_1.hashMessage(message))));
|
|
|
|
};
|
2018-06-13 22:39:39 +03:00
|
|
|
Wallet.prototype.getBalance = function (blockTag) {
|
|
|
|
if (!this.provider) {
|
|
|
|
throw new Error('missing provider');
|
|
|
|
}
|
|
|
|
return this.provider.getBalance(this.address, blockTag);
|
|
|
|
};
|
|
|
|
Wallet.prototype.getTransactionCount = function (blockTag) {
|
|
|
|
if (!this.provider) {
|
|
|
|
throw new Error('missing provider');
|
|
|
|
}
|
|
|
|
return this.provider.getTransactionCount(this.address, blockTag);
|
|
|
|
};
|
|
|
|
Wallet.prototype.sendTransaction = function (transaction) {
|
2018-10-15 02:05:38 +03:00
|
|
|
var _this = this;
|
2018-12-15 02:39:46 +03:00
|
|
|
if (!this.provider) {
|
|
|
|
throw new Error('missing provider');
|
|
|
|
}
|
|
|
|
if (transaction.nonce == null) {
|
|
|
|
transaction = properties_1.shallowCopy(transaction);
|
|
|
|
transaction.nonce = this.getTransactionCount("pending");
|
|
|
|
}
|
2018-10-15 02:05:38 +03:00
|
|
|
return transaction_1.populateTransaction(transaction, this.provider, this.address).then(function (tx) {
|
|
|
|
return _this.sign(tx).then(function (signedTransaction) {
|
|
|
|
return _this.provider.sendTransaction(signedTransaction);
|
|
|
|
});
|
|
|
|
});
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
|
|
|
Wallet.prototype.encrypt = function (password, options, progressCallback) {
|
|
|
|
if (typeof (options) === 'function' && !progressCallback) {
|
|
|
|
progressCallback = options;
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
if (progressCallback && typeof (progressCallback) !== 'function') {
|
|
|
|
throw new Error('invalid callback');
|
|
|
|
}
|
|
|
|
if (!options) {
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
if (this.mnemonic) {
|
|
|
|
// Make sure we don't accidentally bubble the mnemonic up the call-stack
|
2018-08-13 19:01:44 +03:00
|
|
|
options = properties_1.shallowCopy(options);
|
2018-06-13 22:39:39 +03:00
|
|
|
// Set the mnemonic and path
|
|
|
|
options.mnemonic = this.mnemonic;
|
|
|
|
options.path = this.path;
|
|
|
|
}
|
|
|
|
return secretStorage.encrypt(this.privateKey, password, options, progressCallback);
|
|
|
|
};
|
2018-06-19 09:12:57 +03:00
|
|
|
/**
|
|
|
|
* Static methods to create Wallet instances.
|
|
|
|
*/
|
2018-06-13 22:39:39 +03:00
|
|
|
Wallet.createRandom = function (options) {
|
|
|
|
var entropy = random_bytes_1.randomBytes(16);
|
|
|
|
if (!options) {
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
if (options.extraEntropy) {
|
2018-06-17 23:47:28 +03:00
|
|
|
entropy = bytes_1.arrayify(keccak256_1.keccak256(bytes_1.concat([entropy, options.extraEntropy])).substring(0, 34));
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-06-21 03:29:54 +03:00
|
|
|
var mnemonic = hdnode_1.entropyToMnemonic(entropy, options.locale);
|
|
|
|
return Wallet.fromMnemonic(mnemonic, options.path, options.locale);
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
2018-06-22 09:18:19 +03:00
|
|
|
Wallet.fromEncryptedJson = function (json, password, progressCallback) {
|
2018-07-17 08:46:27 +03:00
|
|
|
if (json_wallet_1.isCrowdsaleWallet(json)) {
|
2018-07-03 23:44:05 +03:00
|
|
|
try {
|
2018-07-15 00:21:32 +03:00
|
|
|
if (progressCallback) {
|
|
|
|
progressCallback(0);
|
|
|
|
}
|
2018-07-03 23:44:05 +03:00
|
|
|
var privateKey = secretStorage.decryptCrowdsale(json, password);
|
2018-07-15 00:21:32 +03:00
|
|
|
if (progressCallback) {
|
|
|
|
progressCallback(1);
|
|
|
|
}
|
2018-07-03 23:44:05 +03:00
|
|
|
return Promise.resolve(new Wallet(privateKey));
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-07-03 23:44:05 +03:00
|
|
|
catch (error) {
|
|
|
|
return Promise.reject(error);
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-07-03 23:44:05 +03:00
|
|
|
}
|
2018-07-17 08:46:27 +03:00
|
|
|
else if (json_wallet_1.isSecretStorageWallet(json)) {
|
2018-07-03 23:44:05 +03:00
|
|
|
return secretStorage.decrypt(json, password, progressCallback).then(function (signingKey) {
|
|
|
|
return new Wallet(signingKey);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return Promise.reject('invalid wallet JSON');
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
2018-06-21 03:29:54 +03:00
|
|
|
Wallet.fromMnemonic = function (mnemonic, path, wordlist) {
|
2018-06-13 22:39:39 +03:00
|
|
|
if (!path) {
|
2018-06-18 12:42:41 +03:00
|
|
|
path = hdnode_1.defaultPath;
|
2018-06-13 22:39:39 +03:00
|
|
|
}
|
2018-06-21 03:29:54 +03:00
|
|
|
return new Wallet(hdnode_1.fromMnemonic(mnemonic, wordlist).derivePath(path));
|
2018-06-13 22:39:39 +03:00
|
|
|
};
|
|
|
|
return Wallet;
|
2018-07-31 01:59:52 +03:00
|
|
|
}(abstract_signer_1.Signer));
|
2018-06-13 22:39:39 +03:00
|
|
|
exports.Wallet = Wallet;
|