@apibara/beaconchain 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
@@ -2870,7 +2870,8 @@ function mergeHeaderFilter(a, b) {
2870
2870
  const BeaconChainStream = new protocol.StreamConfig(
2871
2871
  FilterFromBytes,
2872
2872
  BlockFromBytes,
2873
- mergeFilter
2873
+ mergeFilter,
2874
+ "beaconchain"
2874
2875
  );
2875
2876
 
2876
2877
  exports.AccessListItem = AccessListItem;
package/dist/index.mjs CHANGED
@@ -2863,7 +2863,8 @@ function mergeHeaderFilter(a, b) {
2863
2863
  const BeaconChainStream = new StreamConfig(
2864
2864
  FilterFromBytes,
2865
2865
  BlockFromBytes,
2866
- mergeFilter
2866
+ mergeFilter,
2867
+ "beaconchain"
2867
2868
  );
2868
2869
 
2869
2870
  export { AccessListItem, Address, B256, B384, BeaconChainStream, Blob, BlobFilter, Block, BlockFromBytes, BlockHeader, ExecutionPayload, Filter, FilterFromBytes, HeaderFilter, Signature, Transaction, TransactionFilter, U128, U256, Validator, ValidatorFilter, ValidatorStatus, mergeFilter, index as proto };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apibara/beaconchain",
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
  "@effect/schema": "^0.67.15",
40
40
  "effect": "^3.2.6",
41
41
  "long": "^5.2.1",
package/src/index.ts CHANGED
@@ -12,4 +12,5 @@ export const BeaconChainStream = new StreamConfig(
12
12
  FilterFromBytes,
13
13
  BlockFromBytes,
14
14
  mergeFilter,
15
+ "beaconchain",
15
16
  );