@layerzerolabs/protocol-stellar-v2 0.2.107 → 0.2.109

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/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "@layerzerolabs/protocol-stellar-v2",
3
- "version": "0.2.107",
3
+ "version": "0.2.109",
4
4
  "private": false,
5
5
  "license": "LZBL-1.3",
6
6
  "devDependencies": {
7
7
  "@types/node": "^22.18.6",
8
- "tsx": "^4.19.3",
8
+ "tsx": "^4.21.0",
9
9
  "typescript": "^5.8.2",
10
- "@layerzerolabs/common-node-utils": "0.2.107",
11
- "@layerzerolabs/stellar-ts-bindings-gen": "0.2.107",
12
- "@layerzerolabs/vm-tooling-stellar": "0.2.107"
10
+ "@layerzerolabs/common-node-utils": "0.2.109",
11
+ "@layerzerolabs/stellar-ts-bindings-gen": "0.2.109",
12
+ "@layerzerolabs/vm-tooling-stellar": "0.2.109"
13
13
  },
14
14
  "publishConfig": {
15
15
  "access": "public",
@@ -26,10 +26,14 @@
26
26
  "scripts": {
27
27
  "build": "pnpm build:contracts && pnpm generate:sdk",
28
28
  "build:contracts": "pnpm exec lz-tool stellar contract build",
29
+ "build:contracts:native": "pnpm exec lz-tool --docker-platform native stellar contract build",
30
+ "build:native": "pnpm build:contracts:native && pnpm generate:sdk",
29
31
  "format": "pnpm exec lz-tool --script \"cargo fmt\" stellar",
30
32
  "generate:sdk": "stellar-ts-bindings-gen --config ts-bindings-gen.toml",
31
33
  "lint": "pnpm exec lz-tool --script \"cargo clippy -- -D warnings\" stellar",
32
34
  "lint:fix": "pnpm exec lz-tool --script \"cargo clippy --fix --allow-dirty --allow-staged && cargo fmt\" stellar",
33
- "test": "pnpm exec lz-tool --script \"cargo nextest run\" stellar"
35
+ "test": "pnpm exec lz-tool --script \"cargo nextest run\" stellar",
36
+ "test:snapshot:check": "pnpm exec turbo-snapshot check",
37
+ "test:snapshot:update": "pnpm exec turbo-snapshot update"
34
38
  }
35
39
  }