forked from kumavis/eth-tx-summary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaterialize-blocks.js
70 lines (64 loc) · 2.6 KB
/
materialize-blocks.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
'use strict'
const Block = require('ethereumjs-block')
const Transaction = require('ethereumjs-tx')
const ethUtil = require('ethereumjs-util')
module.exports = blockFromRpc
/**
* Creates a new block object from Ethereum JSON RPC.
* @param {Object} blockParams - Ethereum JSON RPC of block (eth_getBlockByNumber)
* @param {Array.<Object>} Optional list of Ethereum JSON RPC of uncles (eth_getUncleByBlockHashAndIndex)
*/
function blockFromRpc (blockParams, uncles) {
uncles = uncles || []
let block = new Block({
transactions: [],
uncleHeaders: []
})
let blockHeader = block.header
blockHeader.parentHash = blockParams.parentHash
blockHeader.uncleHash = blockParams.sha3Uncles
blockHeader.coinbase = blockParams.miner
blockHeader.stateRoot = blockParams.stateRoot
blockHeader.transactionsTrie = blockParams.transactionsRoot
blockHeader.receiptTrie = blockParams.receiptRoot || blockParams.receiptsRoot || ethUtil.SHA3_NULL
blockHeader.bloom = blockParams.logsBloom
blockHeader.difficulty = blockParams.difficulty
blockHeader.number = blockParams.number
blockHeader.gasLimit = blockParams.gasLimit
blockHeader.gasUsed = blockParams.gasUsed
blockHeader.timestamp = blockParams.timestamp
blockHeader.extraData = blockParams.extraData
blockHeader.mixHash = blockParams.mixHash
blockHeader.nonce = blockParams.nonce
// override hash incase something was missing
blockHeader.hash = function () {
return ethUtil.toBuffer(blockParams.hash)
}
block.transactions = (blockParams.transactions || []).map(function (_txParams) {
let txParams = Object.assign({}, _txParams)
normalizeTxParams(txParams)
// override from address
let fromAddress = ethUtil.toBuffer(txParams.from)
delete txParams.from
let tx = new Transaction(txParams)
tx._from = fromAddress
tx.getSenderAddress = function () { return fromAddress }
// override hash
let txHash = ethUtil.toBuffer(txParams.hash)
tx.hash = function () { return txHash }
return tx
})
block.uncleHeaders = uncles.map(function (uncleParams) {
return blockFromRpc(uncleParams).header
})
return block
}
function normalizeTxParams (txParams) {
// hot fix for https://github.com/ethereumjs/ethereumjs-util/issues/40
txParams.gasLimit = (txParams.gasLimit === undefined) ? txParams.gas : txParams.gasLimit
txParams.data = (txParams.data === undefined) ? txParams.input : txParams.data
// strict byte length checking
txParams.to = txParams.to ? ethUtil.setLengthLeft(ethUtil.toBuffer(txParams.to), 20) : null
// v as raw signature value {0,1}
txParams.v = txParams.v < 27 ? txParams.v + 27 : txParams.v
}