2018-06-17 23:32:57 +03:00
|
|
|
|
|
|
|
import { getAddress } from './address';
|
2018-07-16 10:27:49 +03:00
|
|
|
import { bigNumberify, ConstantZero } from './bignumber';
|
|
|
|
import { arrayify, hexlify, hexZeroPad, splitSignature, stripZeros, } from './bytes';
|
2018-06-17 23:32:57 +03:00
|
|
|
import { keccak256 } from './keccak256';
|
2018-07-13 03:11:32 +03:00
|
|
|
|
2018-06-17 23:32:57 +03:00
|
|
|
import * as RLP from './rlp';
|
|
|
|
|
2018-07-16 10:27:49 +03:00
|
|
|
import { Arrayish, BigNumber, Signature, Transaction, UnsignedTransaction } from './types';
|
2018-07-15 00:19:08 +03:00
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
import * as errors from './errors';
|
|
|
|
|
2018-07-13 03:11:32 +03:00
|
|
|
/* !!!!!!!!!!!!!!!!!!!!!!!! IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
*
|
|
|
|
* Due to a weird ordering-issue with browserify, there is an
|
|
|
|
* import for secp256k1 at the bottom of the file; it must be
|
|
|
|
* required AFTER the parse and serialize exports have been
|
|
|
|
* defined.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-06-17 23:32:57 +03:00
|
|
|
function handleAddress(value: string): string {
|
|
|
|
if (value === '0x') { return null; }
|
|
|
|
return getAddress(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleNumber(value: string): BigNumber {
|
|
|
|
if (value === '0x') { return ConstantZero; }
|
|
|
|
return bigNumberify(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
var transactionFields = [
|
2018-06-23 03:30:50 +03:00
|
|
|
{ name: 'nonce', maxLength: 32 },
|
|
|
|
{ name: 'gasPrice', maxLength: 32 },
|
|
|
|
{ name: 'gasLimit', maxLength: 32 },
|
|
|
|
{ name: 'to', length: 20 },
|
|
|
|
{ name: 'value', maxLength: 32 },
|
|
|
|
{ name: 'data' },
|
2018-06-17 23:32:57 +03:00
|
|
|
];
|
|
|
|
|
2018-07-12 09:42:46 +03:00
|
|
|
export function serialize(transaction: UnsignedTransaction, signature?: Arrayish | Signature): string {
|
2018-06-23 03:30:50 +03:00
|
|
|
var raw: Array<string | Uint8Array> = [];
|
2018-06-17 23:32:57 +03:00
|
|
|
|
|
|
|
transactionFields.forEach(function(fieldInfo) {
|
2018-06-23 03:30:50 +03:00
|
|
|
let value = (<any>transaction)[fieldInfo.name] || ([]);
|
2018-06-17 23:32:57 +03:00
|
|
|
value = arrayify(hexlify(value));
|
|
|
|
|
|
|
|
// Fixed-width field
|
|
|
|
if (fieldInfo.length && value.length !== fieldInfo.length && value.length > 0) {
|
2018-06-26 04:02:20 +03:00
|
|
|
errors.throwError('invalid length for ' + fieldInfo.name, errors.INVALID_ARGUMENT, { arg: ('transaction' + fieldInfo.name), value: value });
|
2018-06-17 23:32:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Variable-width (with a maximum)
|
|
|
|
if (fieldInfo.maxLength) {
|
|
|
|
value = stripZeros(value);
|
|
|
|
if (value.length > fieldInfo.maxLength) {
|
2018-06-26 04:02:20 +03:00
|
|
|
errors.throwError('invalid length for ' + fieldInfo.name, errors.INVALID_ARGUMENT, { arg: ('transaction' + fieldInfo.name), value: value });
|
2018-06-17 23:32:57 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
raw.push(hexlify(value));
|
|
|
|
});
|
|
|
|
|
2018-07-12 09:42:46 +03:00
|
|
|
if (transaction.chainId != null && transaction.chainId !== 0) {
|
2018-06-26 04:02:20 +03:00
|
|
|
raw.push(hexlify(transaction.chainId));
|
2018-06-21 03:29:54 +03:00
|
|
|
raw.push('0x');
|
|
|
|
raw.push('0x');
|
|
|
|
}
|
|
|
|
|
2018-07-12 09:42:46 +03:00
|
|
|
let unsignedTransaction = RLP.encode(raw);
|
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
// Requesting an unsigned transation
|
2018-07-12 09:42:46 +03:00
|
|
|
if (!signature) {
|
|
|
|
return unsignedTransaction;
|
2018-06-17 23:32:57 +03:00
|
|
|
}
|
|
|
|
|
2018-07-12 09:42:46 +03:00
|
|
|
// The splitSignature will ensure the transaction has a recoveryParam in the
|
|
|
|
// case that the signTransaction function only adds a v.
|
|
|
|
signature = splitSignature(signature);
|
2018-06-17 23:32:57 +03:00
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
// We pushed a chainId and null r, s on for hashing only; remove those
|
2018-06-17 23:32:57 +03:00
|
|
|
var v = 27 + signature.recoveryParam
|
2018-06-26 04:02:20 +03:00
|
|
|
if (raw.length === 9) {
|
2018-06-17 23:32:57 +03:00
|
|
|
raw.pop();
|
|
|
|
raw.pop();
|
|
|
|
raw.pop();
|
|
|
|
v += transaction.chainId * 2 + 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
raw.push(hexlify(v));
|
2018-06-18 12:42:41 +03:00
|
|
|
raw.push(stripZeros(arrayify(signature.r)));
|
|
|
|
raw.push(stripZeros(arrayify(signature.s)));
|
2018-06-17 23:32:57 +03:00
|
|
|
|
|
|
|
return RLP.encode(raw);
|
|
|
|
}
|
|
|
|
|
|
|
|
export function parse(rawTransaction: Arrayish): Transaction {
|
2018-06-26 04:02:20 +03:00
|
|
|
let transaction = RLP.decode(rawTransaction);
|
|
|
|
if (transaction.length !== 9 && transaction.length !== 6) {
|
|
|
|
errors.throwError('invalid raw transaction', errors.INVALID_ARGUMENT, { arg: 'rawTransactin', value: rawTransaction });
|
|
|
|
}
|
2018-06-17 23:32:57 +03:00
|
|
|
|
|
|
|
let tx: Transaction = {
|
2018-06-26 04:02:20 +03:00
|
|
|
nonce: handleNumber(transaction[0]).toNumber(),
|
|
|
|
gasPrice: handleNumber(transaction[1]),
|
|
|
|
gasLimit: handleNumber(transaction[2]),
|
|
|
|
to: handleAddress(transaction[3]),
|
|
|
|
value: handleNumber(transaction[4]),
|
|
|
|
data: transaction[5],
|
2018-06-17 23:32:57 +03:00
|
|
|
chainId: 0
|
|
|
|
};
|
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
// Legacy unsigned transaction
|
|
|
|
if (transaction.length === 6) { return tx; }
|
|
|
|
|
|
|
|
try {
|
|
|
|
tx.v = bigNumberify(transaction[6]).toNumber();
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
console.log(error);
|
|
|
|
return tx;
|
|
|
|
}
|
|
|
|
|
|
|
|
tx.r = hexZeroPad(transaction[7], 32);
|
|
|
|
tx.s = hexZeroPad(transaction[8], 32);
|
2018-06-17 23:32:57 +03:00
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
if (bigNumberify(tx.r).isZero() && bigNumberify(tx.s).isZero()) {
|
|
|
|
// EIP-155 unsigned transaction
|
|
|
|
tx.chainId = tx.v;
|
|
|
|
tx.v = 0;
|
2018-06-17 23:32:57 +03:00
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
} else {
|
|
|
|
// Signed Tranasaction
|
2018-06-17 23:32:57 +03:00
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
tx.chainId = Math.floor((tx.v - 35) / 2);
|
|
|
|
if (tx.chainId < 0) { tx.chainId = 0; }
|
2018-06-17 23:32:57 +03:00
|
|
|
|
|
|
|
var recoveryParam = tx.v - 27;
|
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
let raw = transaction.slice(0, 6);
|
2018-06-17 23:32:57 +03:00
|
|
|
|
2018-06-26 04:02:20 +03:00
|
|
|
if (tx.chainId !== 0) {
|
|
|
|
raw.push(hexlify(tx.chainId));
|
2018-06-17 23:32:57 +03:00
|
|
|
raw.push('0x');
|
|
|
|
raw.push('0x');
|
2018-06-26 04:02:20 +03:00
|
|
|
recoveryParam -= tx.chainId * 2 + 8;
|
2018-06-17 23:32:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var digest = keccak256(RLP.encode(raw));
|
|
|
|
try {
|
2018-06-26 04:02:20 +03:00
|
|
|
tx.from = recoverAddress(digest, { r: hexlify(tx.r), s: hexlify(tx.s), recoveryParam: recoveryParam });
|
2018-06-17 23:32:57 +03:00
|
|
|
} catch (error) {
|
|
|
|
console.log(error);
|
|
|
|
}
|
|
|
|
|
|
|
|
tx.hash = keccak256(rawTransaction);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tx;
|
|
|
|
}
|
2018-07-13 03:11:32 +03:00
|
|
|
|
|
|
|
import { recoverAddress } from './secp256k1';
|