@layerzerolabs/oft-adapter-starknet 0.2.103 → 0.2.105

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.
Files changed (1) hide show
  1. package/package.json +10 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/oft-adapter-starknet",
3
- "version": "0.2.103",
3
+ "version": "0.2.105",
4
4
  "private": false,
5
5
  "description": "Starknet OFT Adapter contracts for LayerZero v2",
6
6
  "license": "MIT",
@@ -25,11 +25,11 @@
25
25
  ],
26
26
  "devDependencies": {
27
27
  "tsup": "^8.4.0",
28
- "@layerzerolabs/build-utils-starknet": "0.2.103",
29
- "@layerzerolabs/tsup-configuration": "0.2.103",
30
- "@layerzerolabs/typescript-configuration": "0.2.103",
31
- "@layerzerolabs/vm-tooling-starknet": "0.2.103",
32
- "@layerzerolabs/protocol-starknet-v2": "0.2.103"
28
+ "@layerzerolabs/build-utils-starknet": "0.2.105",
29
+ "@layerzerolabs/tsup-configuration": "0.2.105",
30
+ "@layerzerolabs/protocol-starknet-v2": "0.2.105",
31
+ "@layerzerolabs/vm-tooling-starknet": "0.2.105",
32
+ "@layerzerolabs/typescript-configuration": "0.2.105"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "@layerzerolabs/protocol-starknet-v2": "^0.0.0"
@@ -48,11 +48,13 @@
48
48
  "build": "lz-tool scarb --release build && pnpm build:abi && pnpm build:verification && tsup",
49
49
  "build:abi": "lz-tool extra starknet build-typescript-sdk oft_adapter target src/generated",
50
50
  "build:verification": "generate-starknet-verification --package oft_adapter --path src/generated/verification",
51
- "clean": "rm -rf ./node_modules .turbo ./dist && pnpm generated:clean",
51
+ "clean": "rm -rf .turbo ./dist ./target ./node_modules && pnpm generated:clean",
52
52
  "format": "lz-tool scarb fmt",
53
53
  "format:check": "node --run format --check",
54
54
  "generated:clean": "rm -rf ./target ./src/generated",
55
55
  "lint": "pnpm format:check && lz-tool scarb lint --test",
56
- "test": "lz-tool scarb test"
56
+ "test": "lz-tool scarb test",
57
+ "test:snapshot:check": "pnpm exec turbo-snapshot check",
58
+ "test:snapshot:update": "pnpm exec turbo-snapshot update"
57
59
  }
58
60
  }