forked from ethereumjs/ethereumjs-tx
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfake.js
72 lines (64 loc) · 2.49 KB
/
fake.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
'use strict'
const Transaction = require('./index.js')
const ethUtil = require('ethereumjs-util')
/**
* Creates a new transaction object that doesn't need to be signed
* @constructor
* @class {Buffer|Array} data a transaction can be initiailized with either a buffer containing the RLP serialized transaction or an array of buffers relating to each of the tx Properties, listed in order below in the exmple. Or lastly an Object containing the Properties of the transaction like in the Usage example
*
* For Object and Arrays each of the elements can either be a Buffer, a hex-prefixed (0x) String , Number, or an object with a toBuffer method such as Bignum
* @example
* var rawTx = {
* nonce: '00',
* gasPrice: '09184e72a000',
* gasLimit: '2710',
* to: '0000000000000000000000000000000000000000',
* value: '00',
* data: '7f7465737432000000000000000000000000000000000000000000000000000000600057',
* v: '1c',
* r: '5e1d3a76fbf824220eafc8c79ad578ad2b67d01b0c2425eb1f1347e8f50882ab',
* s '5bd428537f05f9830e93792f90ea6a3e2d1ee84952dd96edbae9f658f831ab13'
* };
* var tx = new Transaction(rawTx);
* @prop {Buffer} raw The raw rlp decoded transaction
* @prop {Buffer} nonce
* @prop {Buffer} to the to address
* @prop {Buffer} value the amount of ether sent
* @prop {Buffer} data this will contain the data of the message or the init of a contract
* @prop {Buffer} v EC recovery ID
* @prop {Buffer} r EC signature parameter
* @prop {Buffer} s EC signature parameter
*/
module.exports = class FakeTransaction extends Transaction {
constructor (data) {
super(data)
var self = this
/**
* @prop {Buffer} from (read/write) Set from address to bypass transaction signing.
*/
Object.defineProperty(this, 'from', {
enumerable: true,
configurable: true,
get: this.getSenderAddress.bind(self),
set: function (val) {
self._from = ethUtil.toBuffer(val)
}
})
if (data && data.from) {
this.from = data.from
}
}
/**
* Computes a sha3-256 hash of the serialized tx, using the sender address to generate a fake signature.
* @param {Boolean} [includeSignature=true] whether or not to inculde the signature
* @return {Buffer}
*/
hash (includeSignature) {
if (includeSignature && this._from) {
// include a fake signature using the from address as a private key
let fakeKey = Buffer.concat([this._from, this._from.slice(0, 12)])
this.sign(fakeKey)
}
return super.hash(includeSignature)
}
}