'use strict'; import { defaultPath, entropyToMnemonic, fromMnemonic, HDNode } from './hdnode'; import * as secretStorage from './secret-storage'; import { ProgressCallback } from './secret-storage'; import { recoverAddress, SigningKey } from './signing-key'; import { BlockTag, Provider, TransactionRequest, TransactionResponse } from '../providers/provider'; import { Wordlist } from '../wordlists/wordlist'; import { BigNumber } from '../utils/bignumber'; import { arrayify, Arrayish, concat, hexlify, joinSignature } from '../utils/bytes'; import { hashMessage } from '../utils/hash'; import { keccak256 } from '../utils/keccak256'; import { defineReadOnly, resolveProperties, shallowCopy } from '../utils/properties'; import { randomBytes } from '../utils/random-bytes'; import { serialize as serializeTransaction } from '../utils/transaction'; import * as errors from '../utils/errors'; export abstract class Signer { provider?: Provider; abstract getAddress(): Promise abstract signMessage(transaction: Arrayish | string): Promise; abstract sendTransaction(transaction: TransactionRequest): Promise; } export class Wallet extends Signer { readonly provider: Provider; private readonly signingKey: SigningKey; constructor(privateKey: SigningKey | HDNode | Arrayish, provider?: Provider) { super(); errors.checkNew(this, Wallet); // Make sure we have a valid signing key if (privateKey instanceof SigningKey) { defineReadOnly(this, 'signingKey', privateKey); } else { defineReadOnly(this, 'signingKey', new SigningKey(privateKey)); } defineReadOnly(this, 'provider', provider); } get address(): string { return this.signingKey.address; } get mnemonic(): string { return this.signingKey.mnemonic; } get path(): string { return this.signingKey.mnemonic; } get privateKey(): string { return this.signingKey.privateKey; } /** * Create a new instance of this Wallet connected to provider. */ connect(provider: Provider): Wallet { return new Wallet(this.signingKey, provider); } getAddress(): Promise { return Promise.resolve(this.address); } sign(transaction: TransactionRequest): Promise { return resolveProperties(transaction).then((tx) => { return serializeTransaction(tx, this.signingKey.signDigest.bind(this.signingKey)); }); } signMessage(message: Arrayish | string): Promise { return Promise.resolve(joinSignature(this.signingKey.signDigest(hashMessage(message)))); } getBalance(blockTag?: BlockTag): Promise { if (!this.provider) { throw new Error('missing provider'); } return this.provider.getBalance(this.address, blockTag); } getTransactionCount(blockTag?: BlockTag): Promise { if (!this.provider) { throw new Error('missing provider'); } return this.provider.getTransactionCount(this.address, blockTag); } sendTransaction(transaction: TransactionRequest): Promise { if (!this.provider) { throw new Error('missing provider'); } if (!transaction || typeof(transaction) !== 'object') { throw new Error('invalid transaction object'); } var tx = shallowCopy(transaction); if (tx.to != null) { tx.to = this.provider.resolveName(tx.to); } if (tx.gasLimit == null) { tx.from = this.getAddress(); tx.gasLimit = this.provider.estimateGas(tx); } if (tx.gasPrice == null) { tx.gasPrice = this.provider.getGasPrice(); } if (tx.nonce == null) { tx.nonce = this.getTransactionCount(); } if (tx.chainId == null) { tx.chainId = this.provider.getNetwork().then((network) => network.chainId); } return this.provider.sendTransaction(this.sign(tx)); } encrypt(password: Arrayish | string, options: any, progressCallback: ProgressCallback): Promise { 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 var safeOptions: any = {}; for (var key in options) { safeOptions[key] = options[key]; } options = safeOptions; // Set the mnemonic and path options.mnemonic = this.mnemonic; options.path = this.path } return secretStorage.encrypt(this.privateKey, password, options, progressCallback); } /** * Static methods to create Wallet instances. */ static createRandom(options: any): Wallet { var entropy: Uint8Array = randomBytes(16); if (!options) { options = { }; } if (options.extraEntropy) { entropy = arrayify(keccak256(concat([entropy, options.extraEntropy])).substring(0, 34)); } var mnemonic = entropyToMnemonic(entropy, options.locale); return Wallet.fromMnemonic(mnemonic, options.path, options.locale); } static fromEncryptedJson(json: string, password: Arrayish, progressCallback: ProgressCallback): Promise { if (progressCallback && typeof(progressCallback) !== 'function') { throw new Error('invalid callback'); } return new Promise(function(resolve, reject) { if (secretStorage.isCrowdsaleWallet(json)) { try { var privateKey = secretStorage.decryptCrowdsale(json, password); resolve(new Wallet(privateKey)); } catch (error) { reject(error); } } else if (secretStorage.isValidWallet(json)) { secretStorage.decrypt(json, password, progressCallback).then(function(signingKey) { var wallet = new Wallet(signingKey); /* if (signingKey.mnemonic && signingKey.path) { wallet.mnemonic = signingKey.mnemonic; wallet.path = signingKey.path; } */ resolve(wallet); }, function(error) { reject(error); }); } else { reject('invalid wallet JSON'); } }); } static fromMnemonic(mnemonic: string, path?: string, wordlist?: Wordlist): Wallet { if (!path) { path = defaultPath; } return new Wallet(fromMnemonic(mnemonic, wordlist).derivePath(path)); } /** * Determine if this is an encryped JSON wallet. */ static isEncryptedWallet(json: string): boolean { return (secretStorage.isValidWallet(json) || secretStorage.isCrowdsaleWallet(json)); } /** * Verify a signed message, returning the address of the signer. */ static verifyMessage(message: Arrayish | string, signature: string): string { signature = hexlify(signature); if (signature.length != 132) { throw new Error('invalid signature'); } var digest = hashMessage(message); var recoveryParam = parseInt(signature.substring(130), 16); if (recoveryParam >= 27) { recoveryParam -= 27; } if (recoveryParam < 0) { throw new Error('invalid signature'); } return recoverAddress( digest, { r: signature.substring(0, 66), s: '0x' + signature.substring(66, 130), recoveryParam: recoveryParam } ); } }