@layerzerolabs/lz-v2-stellar-sdk 1.2.43 → 1.2.45

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.
@@ -1,8 +1,11 @@
1
- # TODO: figure out how to use relative path to the current folder. node_modules based method can lead to large package
2
1
  # Reads the verifiable wasm built by the sibling contract package
3
2
  # (@layerzerolabs/protocol-stellar-v2 → .artifacts/) and writes the generated
4
3
  # TypeScript bindings into this SDK package.
5
- wasm_dir = "../contracts/.artifacts"
4
+ #
5
+ # Resolved through the declared workspace dependency instead of a relative path that escapes this
6
+ # package. pnpm links the contract package into this package's node_modules, so the lookup stays
7
+ # inside the package tree and the dependency edge stays explicit in package.json.
8
+ wasm_dir = "node_modules/@layerzerolabs/protocol-stellar-v2/.artifacts"
6
9
  output_dir = "src/generated"
7
10
 
8
11
  # Protocol contracts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/lz-v2-stellar-sdk",
3
- "version": "1.2.43",
3
+ "version": "1.2.45",
4
4
  "private": false,
5
5
  "description": "TypeScript SDK bindings for LayerZero V2 Stellar protocol contracts (EndpointV2, ULN302, workers, views, …)",
6
6
  "repository": {
@@ -19,12 +19,12 @@
19
19
  "devDependencies": {
20
20
  "typescript": "^6.0.3",
21
21
  "vitest": "^4.1.10",
22
- "@layerzerolabs/protocol-stellar-v2": "1.2.43",
23
- "@layerzerolabs/common-node-utils": "1.2.43",
24
- "@layerzerolabs/stellar-ts-bindings-gen": "1.2.43",
25
- "@layerzerolabs/test-utils-stellar": "1.2.43",
26
- "@layerzerolabs/typescript-configuration": "1.2.43",
27
- "@layerzerolabs/vitest-configuration": "1.2.43"
22
+ "@layerzerolabs/common-node-utils": "1.2.45",
23
+ "@layerzerolabs/protocol-stellar-v2": "1.2.45",
24
+ "@layerzerolabs/stellar-ts-bindings-gen": "1.2.45",
25
+ "@layerzerolabs/typescript-configuration": "1.2.45",
26
+ "@layerzerolabs/test-utils-stellar": "1.2.45",
27
+ "@layerzerolabs/vitest-configuration": "1.2.45"
28
28
  },
29
29
  "publishConfig": {
30
30
  "access": "public",
@@ -47,7 +47,7 @@
47
47
  "scripts": {
48
48
  "build": "pnpm gen:bindings && tsc",
49
49
  "clean": "rm -rf ./dist ./src/generated ./node_modules",
50
- "gen:bindings": "stellar-ts-bindings-gen --config ts-bindings-gen.toml",
50
+ "gen:bindings": "stellar-ts-bindings-gen --config bindings.toml",
51
51
  "lint": "eslint . --max-warnings 0 || (eslint . --fix --max-warnings 0 && false)",
52
52
  "test": "vitest --run --pass-with-no-tests --typecheck"
53
53
  }