@layerzerolabs/lz-ton-sdk-v2 3.0.34 → 3.0.35

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 (35) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/artifacts/AllStorages.compiled.json +1 -1
  3. package/artifacts/Channel.compiled.json +1 -1
  4. package/artifacts/Controller.compiled.json +1 -1
  5. package/artifacts/Counter.compiled.json +1 -1
  6. package/artifacts/Dvn.compiled.json +1 -1
  7. package/artifacts/DvnFeeLib.compiled.json +1 -1
  8. package/artifacts/Endpoint.compiled.json +1 -1
  9. package/artifacts/Executor.compiled.json +1 -1
  10. package/artifacts/ExecutorFeeLib.compiled.json +1 -1
  11. package/artifacts/PriceFeedCache.compiled.json +1 -1
  12. package/artifacts/Proxy.compiled.json +1 -1
  13. package/artifacts/SmlConnection.compiled.json +1 -1
  14. package/artifacts/SmlManager.compiled.json +1 -1
  15. package/artifacts/Uln.compiled.json +1 -1
  16. package/artifacts/UlnConnection.compiled.json +1 -1
  17. package/artifacts/UlnManager.compiled.json +1 -1
  18. package/deployments/ton-sandbox-local/AllStorages.json +1 -1
  19. package/deployments/ton-sandbox-local/Controller.json +1 -1
  20. package/deployments/ton-sandbox-local/Counter.json +1 -1
  21. package/deployments/ton-sandbox-local/Dvn.json +1 -1
  22. package/deployments/ton-sandbox-local/DvnProxy.json +1 -1
  23. package/deployments/ton-sandbox-local/Executor.json +1 -1
  24. package/deployments/ton-sandbox-local/ExecutorProxy.json +1 -1
  25. package/deployments/ton-sandbox-local/PriceFeedCache.json +1 -1
  26. package/deployments/ton-sandbox-local/PriceFeedCacheProxy.json +1 -1
  27. package/deployments/ton-sandbox-local/SmlManager.json +1 -1
  28. package/deployments/ton-sandbox-local/UlnManager.json +1 -1
  29. package/dist/index.cjs +88 -4
  30. package/dist/index.cjs.map +1 -1
  31. package/dist/index.d.mts +263 -29
  32. package/dist/index.d.ts +263 -29
  33. package/dist/index.mjs +88 -4
  34. package/dist/index.mjs.map +1 -1
  35. package/package.json +7 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@layerzerolabs/lz-ton-sdk-v2",
3
- "version": "3.0.34",
3
+ "version": "3.0.35",
4
4
  "license": "BUSL-1.1",
5
5
  "exports": {
6
6
  ".": {
@@ -28,7 +28,8 @@
28
28
  "compile-offchain": "ts-node scripts/offchain-generator.ts && $npm_execpath eslint src/offchain-helpers --ext .ts --no-error-on-unmatched-pattern --fix",
29
29
  "compile-sdk": "ts-node scripts/sdk-generator.ts && $npm_execpath eslint src/constants src/wrappers --ext .ts --no-error-on-unmatched-pattern --fix",
30
30
  "compile-test": "ts-node scripts/test-utils-generator.ts && $npm_execpath eslint 'tests/utils/auto-utils-*.ts' --no-error-on-unmatched-pattern --fix",
31
- "test": "jest --ci && $npm_execpath eslint src/offchain-helpers/allResolvedEvents.ts src/offchain-helpers/allResolvedObjects.ts --no-error-on-unmatched-pattern --fix"
31
+ "test": "jest --ci",
32
+ "test-decode": "jest --ci -t \"uln\" && $npm_execpath eslint src/offchain-helpers/allResolvedEvents.ts src/offchain-helpers/allResolvedObjects.ts --no-error-on-unmatched-pattern --fix"
32
33
  },
33
34
  "dependencies": {
34
35
  "@ton/core": "^0.59.0",
@@ -41,10 +42,10 @@
41
42
  "devDependencies": {
42
43
  "@aws-crypto/sha256-js": "^5.2.0",
43
44
  "@jest/globals": "^29.7.0",
44
- "@layerzerolabs/layerzero-v2-ton": "^3.0.34",
45
- "@layerzerolabs/ton-sdk-tools": "^3.0.34",
46
- "@layerzerolabs/tsup-config-next": "^3.0.34",
47
- "@layerzerolabs/typescript-config-next": "^3.0.34",
45
+ "@layerzerolabs/layerzero-v2-ton": "^3.0.35",
46
+ "@layerzerolabs/ton-sdk-tools": "^3.0.35",
47
+ "@layerzerolabs/tsup-config-next": "^3.0.35",
48
+ "@layerzerolabs/typescript-config-next": "^3.0.35",
48
49
  "@ston-fi/funcbox": "^0.1.1",
49
50
  "@ton/sandbox": "^0.22.0",
50
51
  "@ton/test-utils": "^0.4.2",