@vlayer/sdk 0.1.0-nightly-20241129-cd04cc7 → 0.1.0-nightly-20241202-164f0bc

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.
@@ -3,7 +3,8 @@ import { v_call } from "./v_call.js";
3
3
  import { foundry } from "viem/chains";
4
4
  import { v_versions } from "./v_versions.js";
5
5
  import { checkVersionCompatibility } from "./utils/versions.js";
6
- import { version as sdkVersion } from "../../package.json";
6
+ import meta from "../../package.json" assert { type: "json" };
7
+ const sdkVersion = meta.version;
7
8
  async function preverifyVersions(url, shouldPreverify) {
8
9
  if (shouldPreverify) {
9
10
  const proverVersions = await v_versions(url);
package/package.json CHANGED
@@ -15,7 +15,7 @@
15
15
  "types": "./dist/config/index.d.ts"
16
16
  }
17
17
  },
18
- "version": "0.1.0-nightly-20241129-cd04cc7",
18
+ "version": "0.1.0-nightly-20241202-164f0bc",
19
19
  "scripts": {
20
20
  "build": "bun tsc && bun tsc-alias",
21
21
  "test:unit": "vitest --run",