@apibara/evm 2.1.0-beta.40 → 2.1.0-beta.42

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -4071,11 +4071,11 @@ const BlockHeader = codec.MessageCodec({
4071
4071
  blockHash: codec.OptionalCodec(B256$1),
4072
4072
  parentBlockHash: codec.RequiredCodec(B256$1),
4073
4073
  unclesHash: codec.RequiredCodec(B256$1),
4074
- miner: codec.RequiredCodec(Address$1),
4074
+ miner: codec.OptionalCodec(Address$1),
4075
4075
  stateRoot: codec.RequiredCodec(B256$1),
4076
4076
  transactionsRoot: codec.RequiredCodec(B256$1),
4077
4077
  receiptsRoot: codec.RequiredCodec(B256$1),
4078
- logsBloom: codec.RequiredCodec(Bloom),
4078
+ logsBloom: codec.OptionalCodec(Bloom),
4079
4079
  difficulty: codec.RequiredCodec(U256$1),
4080
4080
  gasLimit: codec.RequiredCodec(U128$1),
4081
4081
  gasUsed: codec.RequiredCodec(U128$1),