@apibara/evm 2.1.0-beta.28 → 2.1.0-beta.29

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
@@ -4429,7 +4429,8 @@ function mergeHeaderFilter(a, b) {
4429
4429
  const EvmStream = new protocol.StreamConfig(
4430
4430
  FilterFromBytes,
4431
4431
  BlockFromBytes,
4432
- mergeFilter
4432
+ mergeFilter,
4433
+ "evm"
4433
4434
  );
4434
4435
 
4435
4436
  exports.AccessListItem = AccessListItem;
package/dist/index.mjs CHANGED
@@ -4422,7 +4422,8 @@ function mergeHeaderFilter(a, b) {
4422
4422
  const EvmStream = new StreamConfig(
4423
4423
  FilterFromBytes,
4424
4424
  BlockFromBytes,
4425
- mergeFilter
4425
+ mergeFilter,
4426
+ "evm"
4426
4427
  );
4427
4428
 
4428
4429
  export { AccessListItem, Address$1 as Address, B256$1 as B256, Block, BlockFromBytes, BlockHeader, Bloom, CallAction, CallOutput, CallType, CreateAction, CreateOutput, CreationMethod, EvmStream, Filter, FilterFromBytes, HeaderFilter, Log, LogFilter, RewardAction, RewardType, SelfDestructAction, Signature, Topic, Trace, Transaction, TransactionFilter, TransactionReceipt, TransactionStatus, TransactionStatusFilter, TransactionTrace, U128$1 as U128, U256$1 as U256, Withdrawal, WithdrawalFilter, mergeFilter, index as proto };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apibara/evm",
3
- "version": "2.1.0-beta.28",
3
+ "version": "2.1.0-beta.29",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -35,7 +35,7 @@
35
35
  "vitest": "^1.6.0"
36
36
  },
37
37
  "dependencies": {
38
- "@apibara/protocol": "2.1.0-beta.28",
38
+ "@apibara/protocol": "2.1.0-beta.29",
39
39
  "long": "^5.2.1",
40
40
  "nice-grpc-common": "^2.0.2",
41
41
  "protobufjs": "^7.1.2",
package/src/index.ts CHANGED
@@ -12,4 +12,5 @@ export const EvmStream = new StreamConfig(
12
12
  FilterFromBytes,
13
13
  BlockFromBytes,
14
14
  mergeFilter,
15
+ "evm",
15
16
  );