ethers.js/lib/wallet.js

154 lines
4.6 KiB
JavaScript
Raw Normal View History

2016-07-25 10:55:16 +03:00
'use strict';
2016-07-22 00:03:32 +03:00
var rlp = require('rlp');
var Contract = require('./contract.js');
2016-07-27 00:57:11 +03:00
var Provider = require('./provider.js');
2016-07-22 00:03:32 +03:00
var SigningKey = require('./signing-key.js');
var utils = require('./utils.js');
var transactionFields = [
{name: 'nonce', maxLength: 32, },
{name: 'gasPrice', maxLength: 32, },
{name: 'gasLimit', maxLength: 32, },
{name: 'to', length: 20, },
{name: 'value', maxLength: 32, },
{name: 'data'},
];
2016-07-27 00:57:11 +03:00
function Wallet(privateKey, provider) {
2016-07-22 00:03:32 +03:00
if (!(this instanceof Wallet)) { throw new Error('missing new'); }
// Make sure we have a valid signing key
var signingKey = privateKey;
if (!(privateKey instanceof SigningKey)) {
signingKey = new SigningKey(privateKey);
}
utils.defineProperty(this, 'privateKey', signingKey.privateKey);
2016-07-22 00:03:32 +03:00
2016-07-27 00:57:11 +03:00
if (provider) {
utils.defineProperty(this, 'provider', new Provider(provider));
}
2016-07-22 00:03:32 +03:00
utils.defineProperty(this, 'address', signingKey.address);
utils.defineProperty(this, 'sign', function(transaction) {
var raw = [];
transactionFields.forEach(function(fieldInfo) {
var value = transaction[fieldInfo.name] || (new Buffer(0));
value = utils.hexOrBuffer(utils.hexlify(value), fieldInfo.name);
// Fixed-width field
if (fieldInfo.length && value.length !== fieldInfo.length) {
var error = new Error('invalid ' + fieldInfo.name);
error.reason = 'wrong length';
error.value = value;
throw error;
}
// Variable-width (with a maximum)
if (fieldInfo.maxLength) {
value = utils.stripZeros(value);
if (value.length > fieldInfo.maxLength) {
var error = new Error('invalid ' + fieldInfo.name);
error.reason = 'too long';
error.value = value;
throw error;
}
}
raw.push(value);
});
var digest = utils.sha3(rlp.encode(raw));
var signature = signingKey.signDigest(digest);
var s = signature.s;
var v = signature.recoveryParam;
raw.push(new Buffer([27 + v]));
raw.push(utils.bnToBuffer(signature.r));
raw.push(utils.bnToBuffer(s));
return ('0x' + rlp.encode(raw).toString('hex'));
});
}
2016-07-27 00:57:11 +03:00
utils.defineProperty(Wallet.prototype, 'getContract', function(address, abi) {
return new Contract(this.provider, this, address, new Contract.Interface(abi));
});
2016-07-22 00:03:32 +03:00
utils.defineProperty(Wallet, 'getAddress', SigningKey.getAddress);
utils.defineProperty(Wallet, 'getIcapAddress', SigningKey.getIcapAddress);
utils.defineProperty(Wallet, '_Contract', Contract);
var zero = new utils.BN(0);
var negative1 = new utils.BN(-1);
var tenPower18 = new utils.BN('1000000000000000000');
utils.defineProperty(Wallet, 'formatEther', function(wei, options) {
if (typeof(wei) === 'number') { wei = new utils.BN(wei); }
if (!options) { options = {}; }
if (!(wei instanceof utils.BN)) { throw new Error('invalid wei'); }
var negative = wei.lt(zero);
if (negative) { wei = wei.mul(negative1); }
var fraction = wei.mod(tenPower18).toString(10);
while (fraction.length < 18) { fraction = '0' + fraction; }
if (!options.pad) {
fraction = fraction.match(/^([0-9]*[1-9]|0)(0*)/)[1];
}
var whole = wei.div(tenPower18).toString(10);
if (options.commify) {
whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, ",")
}
var value = whole + '.' + fraction;
if (negative) { value = '-' + value; }
return value;
});
utils.defineProperty(Wallet, 'parseEther', function(ether) {
if (typeof(ether) !== 'string' || !ether.match(/^-?[0-9.]+$/)) {
throw new Error('invalid value');
}
// Is it negative?
var negative = (ether.substring(0, 1) === '-');
if (negative) { ether = ether.substring(1); }
if (ether === '.') { throw new Error('invalid value'); }
// Split it into a whole and fractional part
var comps = ether.split('.');
if (comps.length > 2) { throw new Error('too many decimal points'); }
var whole = comps[0], fraction = comps[1];
if (!whole) { whole = '0'; }
if (!fraction) { fraction = '0'; }
if (fraction.length > 18) { throw new Error('too many decimal places'); }
while (fraction.length < 18) { fraction += '0'; }
whole = new utils.BN(whole);
fraction = new utils.BN(fraction);
var wei = (whole.mul(tenPower18)).add(fraction);
if (negative) { wei = wei.mul(negative1); }
return wei;
});
2016-07-22 00:03:32 +03:00
module.exports = Wallet;