@apibara/evm 2.1.0-beta.33 → 2.1.0-beta.34
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.mts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/block.ts +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4068,7 +4068,7 @@ const TransactionStatus = {
|
|
|
4068
4068
|
};
|
|
4069
4069
|
const BlockHeader = codec.MessageCodec({
|
|
4070
4070
|
blockNumber: codec.RequiredCodec(codec.BigIntCodec),
|
|
4071
|
-
blockHash: codec.
|
|
4071
|
+
blockHash: codec.OptionalCodec(B256$1),
|
|
4072
4072
|
parentBlockHash: codec.RequiredCodec(B256$1),
|
|
4073
4073
|
unclesHash: codec.RequiredCodec(B256$1),
|
|
4074
4074
|
miner: codec.RequiredCodec(Address$1),
|