@layerzerolabs/test-utils-stellar 0.2.126 → 0.2.128

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 (2) hide show
  1. package/README.md +2 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -58,10 +58,8 @@ export default createProtocolStackGlobalSetup(env, {
58
58
  },
59
59
  wasmDir: async () => {
60
60
  const repoRoot = await getFullyQualifiedRepoRootPath();
61
- return path.join(
62
- repoRoot,
63
- 'contracts/protocol/stellar/contracts/target/wasm32v1-none/release',
64
- );
61
+ // Protocol verifiable build publishes WASMs to .artifacts/ (not cargo target/).
62
+ return path.join(repoRoot, 'contracts', 'protocol', 'stellar', 'contracts', '.artifacts');
65
63
  },
66
64
  });
67
65
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/test-utils-stellar",
3
- "version": "0.2.126",
3
+ "version": "0.2.128",
4
4
  "private": false,
5
5
  "description": "Shared Stellar/Soroban test harness (localnet, funding, deploy helpers) for LayerZero V2 protocol SDK and custom OApp/OFT tests",
6
6
  "license": "MIT",
@@ -27,8 +27,8 @@
27
27
  "tsup": "^8.4.0",
28
28
  "typescript": "^5.8.2",
29
29
  "vitest": "^3.2.6",
30
- "@layerzerolabs/tsup-configuration": "0.2.126",
31
- "@layerzerolabs/typescript-configuration": "0.2.126"
30
+ "@layerzerolabs/tsup-configuration": "0.2.128",
31
+ "@layerzerolabs/typescript-configuration": "0.2.128"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public",