git ssb

0+

wanderer🌟 / js-primea-hypervisor



Tree: 88d61c8591d4cdf5ba2022f4eeaa1af8e06891a5

Files: 88d61c8591d4cdf5ba2022f4eeaa1af8e06891a5 / deps / block.js

585 bytesRaw
1const Address = require('./address.js')
2const ethUtil = require('ethereumjs-util')
3const OldBlock = require('ethereumjs-block')
4const U256 = require('./u256.js')
5
6module.exports = class Block extends OldBlock {
7 get number () {
8 return ethUtil.bufferToInt(this.header.number)
9 }
10
11 get gasLimit () {
12 return ethUtil.bufferToInt(this.header.gasLimit)
13 }
14
15 get difficulty () {
16 return new U256(this.header.difficulty)
17 }
18
19 get timestamp () {
20 return ethUtil.bufferToInt(this.header.timestamp)
21 }
22
23 get coinbase () {
24 return new Address(this.header.coinbase)
25 }
26}
27

Built with git-ssb-web