@layerzerolabs/protocol-stellar-v2 0.2.78 → 0.2.79

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/LICENSE CHANGED
@@ -1,5 +1,5 @@
1
- LayerZero Business License 1.2
2
- LZBL-1.2
1
+ LayerZero Business License 1.3
2
+ LZBL-1.3
3
3
 
4
4
  Notes
5
5
 
@@ -7,9 +7,9 @@ The LayerZero Business License (this "Agreement", or the "License") is not an op
7
7
 
8
8
  Terms
9
9
 
10
- Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make non-production use of the Licensed Work.
10
+ Licensor hereby grants you the right to copy, modify, create derivative works, redistribute, and make Non-Production Use of the Licensed Work.
11
11
 
12
- On the Change Date (as defined below), this License shall covert into the Change License (as defined below), and the rights granted in the paragraph above terminate. You may not modify this License in any other way.
12
+ On the Change Date (as defined below), this License shall convert into the Change License (as defined below), and the rights granted in the paragraph above terminate. You may not modify this License in any other way.
13
13
 
14
14
  If your use of the Licensed Work does not comply with the requirements currently in effect as described in this License, you must purchase a commercial license from the Licensor, its affiliated entities, or authorized resellers, or you must refrain from using the Licensed Work.
15
15
 
@@ -23,20 +23,21 @@ This License does not grant you any right in any trademark or logo of Licensor o
23
23
 
24
24
  THE LICENSED WORK IS PROVIDED ON AN "AS IS" AND "AS AVAILABLE" BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND TITLE.
25
25
 
26
-
27
26
  Definitions
28
- Change Date means 4 years from December 14, 2023 with respect to Permissionless Applications. Permissioned Applications shall not have a Change Date and may not use the Licensed Work.
27
+ Change Date means, with respect to Permissionless Applications, the fourth (4th) anniversary of the first publicly available distribution of a specific version of the Licensed Work. Permissioned Applications shall not have a Change Date and may not use the Licensed Work.
29
28
 
30
29
  Change License means the GPL Version 2.0 or any later version, or a license that is compatible with GPL Version 2.0 or a later version, where "compatible" means that software provided under the Change License can be included in a program with software provided under GPL Version 2.0 or a later version.
31
30
 
32
31
  Licensor means LayerZero Labs Ltd.
33
32
 
34
33
  License Text means:
35
- LayerZero Business License 1.2
36
- License text copyright © 2023 LayerZero Labs Ltd., All Rights Reserved.
34
+ LayerZero Business License 1.3
35
+ License text copyright © 2026 LayerZero Labs Ltd., All Rights Reserved.
36
+
37
+ Licensed Work means the software (including source code and object code) accompanying this Agreement, or the software specifically identified in the License Notice attached to such software, as well as any specific source code file, library, or script that contains a header or notice explicitly stating it is subject to this License, excluding any files or components that contain a notice expressly stating they are subject to a different license.
37
38
 
38
- Licensed Work means LayerZero as described in Whitepaper "LayerZero" published on December 14, 2023.
39
+ Non-Production Use means testing, development, and auditing, explicitly excluding any deployment on a live mainnet or any environment where the software processes, secures, or manages digital assets with real economic value.
39
40
 
40
- Permissionless Applications means blockchain networks or applications that users can freely join, interact with, or participate in without first obtaining permission, approval, or authorization and excludes Permissionless Applications.
41
+ Permissionless Applications means blockchain networks or applications that users can freely join, interact with, or participate in without first obtaining permission, approval, or authorization and excludes Permissioned Applications.
41
42
 
42
- Permissioned Applications means blockchain networks or applications that are limited only to designated participants or that limit who is allows allowed to participate in financial (or other) activities, and excludes Permissionless Applications.
43
+ Permissioned Applications means blockchain networks or applications that are limited only to designated participants or that limit who is allowed to participate in financial (or other) activities, and excludes Permissionless Applications.
@@ -91,7 +91,7 @@ pub fn extract_type_3_options(env: &Env, options_reader: &mut BufferReader) -> (
91
91
  ///
92
92
  /// Legacy Format Details:
93
93
  /// - **Type 1**: `[execution_gas: u256]` (32 bytes total)
94
- /// - **Type 2**: `[execution_gas: u256][amount: u256][receiver: bytes(0-32)]` (64-96 bytes total)
94
+ /// - **Type 2**: `[execution_gas: u256][amount: u256][receiver: bytes(1-32)]` (65-96 bytes total)
95
95
  ///
96
96
  /// Note: Legacy formats use u256 for gas/amounts, but Type 3 uses u128.
97
97
  /// The conversion will panic if values exceed u128 range.
package/package.json CHANGED
@@ -1,24 +1,25 @@
1
1
  {
2
2
  "name": "@layerzerolabs/protocol-stellar-v2",
3
- "version": "0.2.78",
3
+ "version": "0.2.79",
4
4
  "private": false,
5
- "license": "LZBL-1.2",
5
+ "license": "LZBL-1.3",
6
6
  "devDependencies": {
7
7
  "@types/node": "^22.18.6",
8
8
  "tsx": "^4.19.3",
9
9
  "typescript": "^5.8.2",
10
- "@layerzerolabs/stellar-ts-bindings-gen": "0.2.78",
11
- "@layerzerolabs/vm-tooling-stellar": "0.2.78",
12
- "@layerzerolabs/common-node-utils": "0.2.78"
10
+ "@layerzerolabs/vm-tooling-stellar": "0.2.79",
11
+ "@layerzerolabs/stellar-ts-bindings-gen": "0.2.79",
12
+ "@layerzerolabs/common-node-utils": "0.2.79"
13
13
  },
14
14
  "publishConfig": {
15
- "access": "restricted",
15
+ "access": "public",
16
16
  "registry": "https://registry.npmjs.org/"
17
17
  },
18
18
  "externalRepoConfig": {
19
19
  "targets": [
20
20
  "audit-external",
21
- "onesig-client"
21
+ "onesig-client",
22
+ "monorepo-external"
22
23
  ]
23
24
  },
24
25
  "scripts": {