@apibara/starknet 2.0.0-beta.31 → 2.0.0-beta.32

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
@@ -1,7 +1,6 @@
1
1
  'use strict';
2
2
 
3
3
  const protocol = require('@apibara/protocol');
4
- const abiWanKanabi = require('abi-wan-kanabi');
5
4
  const schema = require('@effect/schema');
6
5
  const Long = require('long');
7
6
  const _m0 = require('protobufjs/minimal.js');
@@ -7597,7 +7596,6 @@ const StarknetStream = new protocol.StreamConfig(
7597
7596
  mergeFilter
7598
7597
  );
7599
7598
 
7600
- exports.Abi = abiWanKanabi.Abi;
7601
7599
  exports.Block = Block;
7602
7600
  exports.BlockFromBytes = BlockFromBytes;
7603
7601
  exports.BlockHeader = BlockHeader;
package/dist/index.mjs CHANGED
@@ -1,5 +1,4 @@
1
1
  import { StreamConfig } from '@apibara/protocol';
2
- export { Abi } from 'abi-wan-kanabi';
3
2
  import { Schema } from '@effect/schema';
4
3
  import Long from 'long';
5
4
  import _m0 from 'protobufjs/minimal.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apibara/starknet",
3
- "version": "2.0.0-beta.31",
3
+ "version": "2.0.0-beta.32",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist",
@@ -42,7 +42,7 @@
42
42
  "vitest": "^1.6.0"
43
43
  },
44
44
  "dependencies": {
45
- "@apibara/protocol": "2.0.0-beta.31",
45
+ "@apibara/protocol": "2.0.0-beta.32",
46
46
  "@effect/schema": "^0.67.15",
47
47
  "@scure/starknet": "^1.1.0",
48
48
  "abi-wan-kanabi": "^2.2.4",
package/src/index.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { StreamConfig } from "@apibara/protocol";
2
- export { Abi } from "abi-wan-kanabi";
2
+ export type { Abi } from "abi-wan-kanabi";
3
3
  import { BlockFromBytes } from "./block";
4
4
  import { FilterFromBytes, mergeFilter } from "./filter";
5
5