-
Notifications
You must be signed in to change notification settings - Fork 846
Expand file tree
/
Copy pathheader-from-rpc.ts
More file actions
52 lines (49 loc) · 1.05 KB
/
header-from-rpc.ts
File metadata and controls
52 lines (49 loc) · 1.05 KB
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
import { BlockHeader } from './header'
import { BlockOptions } from './types'
/**
* Creates a new block header object from Ethereum JSON RPC.
*
* @param blockParams - Ethereum JSON RPC of block (eth_getBlockByNumber)
* @param chainOptions - An object describing the blockchain
*/
export default function blockHeaderFromRpc(blockParams: any, options?: BlockOptions) {
const {
parentHash,
sha3Uncles,
miner,
stateRoot,
transactionsRoot,
receiptRoot,
receiptsRoot,
logsBloom,
difficulty,
number,
gasLimit,
gasUsed,
timestamp,
extraData,
mixHash,
nonce,
} = blockParams
const blockHeader = BlockHeader.fromHeaderData(
{
parentHash,
uncleHash: sha3Uncles,
coinbase: miner,
stateRoot,
transactionsTrie: transactionsRoot,
receiptTrie: receiptRoot || receiptsRoot,
bloom: logsBloom,
difficulty,
number,
gasLimit,
gasUsed,
timestamp,
extraData,
mixHash,
nonce,
},
options,
)
return blockHeader
}