BlockHeaderRaw constructor

BlockHeaderRaw({
  1. required BigInt timestamp,
  2. List<int>? txTrieRoot,
  3. List<int>? parentHash,
  4. required BigInt number,
  5. BigInt? witnessId,
  6. List<int>? witnessAddress,
  7. required int version,
  8. List<int>? accountStateRoot,
})

Implementation

BlockHeaderRaw({
  required this.timestamp,
  this.txTrieRoot,
  this.parentHash,
  required this.number,
  this.witnessId,
  this.witnessAddress,
  required this.version,
  this.accountStateRoot,
});