MyCrypto/common/libs/wallet/privkey.js

70 lines
1.7 KiB
JavaScript
Raw Normal View History

2017-06-29 23:03:11 +00:00
// @flow
import BaseWallet from './base';
2017-07-04 03:21:19 +00:00
import {
privateToPublic,
publicToAddress,
toChecksumAddress
} from 'ethereumjs-util';
import { randomBytes } from 'crypto';
import { pkeyToKeystore } from 'libs/keystore';
import { signRawTxWithPrivKey, signMessageWithPrivKey } from 'libs/signing';
import type { RawTx } from 'libs/validators';
2017-06-29 23:03:11 +00:00
export default class PrivKeyWallet extends BaseWallet {
2017-07-04 03:21:19 +00:00
privKey: Buffer;
pubKey: Buffer;
address: Buffer;
constructor(privkey: Buffer) {
2017-07-04 03:21:19 +00:00
super();
this.privKey = privkey;
2017-07-04 03:21:19 +00:00
this.pubKey = privateToPublic(this.privKey);
this.address = publicToAddress(this.pubKey);
}
2017-06-29 23:03:11 +00:00
getAddress(): Promise<any> {
return Promise.resolve(
toChecksumAddress(`0x${this.address.toString('hex')}`)
);
2017-07-04 03:21:19 +00:00
}
getPrivateKey() {
return this.privKey.toString('hex');
}
static generate() {
return new PrivKeyWallet(randomBytes(32));
}
toKeystore(password: string): Promise<any> {
return new Promise(resolve => {
this.getNakedAddress().then(address => {
resolve(pkeyToKeystore(this.privKey, address, password));
});
});
}
unlock(): Promise<any> {
return Promise.resolve();
}
signRawTransaction(rawTx: RawTx): Promise<any> {
return new Promise((resolve, reject) => {
try {
resolve(signRawTxWithPrivKey(this.privKey, rawTx));
} catch (err) {
reject(err);
}
});
}
signMessage(msg: string, address: string, date: string): Promise<any> {
return new Promise((resolve, reject) => {
try {
resolve(signMessageWithPrivKey(this.privKey, msg, address, date));
} catch (err) {
reject(err);
}
});
}
2017-06-29 23:03:11 +00:00
}