@layerzerolabs/lz-movevm-sdk-v2 3.0.19 → 3.0.20
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/CHANGELOG.md +12 -0
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @layerzerolabs/lz-movevm-sdk-v2
|
|
2
2
|
|
|
3
|
+
## 3.0.20
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b1b6506: endpoints
|
|
8
|
+
- Updated dependencies [b1b6506]
|
|
9
|
+
- @layerzerolabs/lz-definitions@3.0.20
|
|
10
|
+
- @layerzerolabs/lz-serdes@3.0.20
|
|
11
|
+
- @layerzerolabs/lz-utilities@3.0.20
|
|
12
|
+
- @layerzerolabs/lz-v2-utilities@3.0.20
|
|
13
|
+
- @layerzerolabs/move-definitions@3.0.20
|
|
14
|
+
|
|
3
15
|
## 3.0.19
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.cjs
CHANGED
|
@@ -1241,10 +1241,10 @@ var Executor = class {
|
|
|
1241
1241
|
);
|
|
1242
1242
|
functionArgumentTypes = ["address", "address", "address", "vector<u8>", "vector<u8>", "address"];
|
|
1243
1243
|
const adminsU8Array = new Uint8Array(
|
|
1244
|
-
admins.flatMap((admin) => Array.from(Buffer.from(lzV2Utilities.trim0x(admin), "hex")))
|
|
1244
|
+
admins.flatMap((admin) => Array.from(Buffer.from(lzV2Utilities.trim0x(lzUtilities.padify(admin)), "hex")))
|
|
1245
1245
|
);
|
|
1246
1246
|
const msgLibsU8Array = new Uint8Array(
|
|
1247
|
-
msgLibs.flatMap((msgLib) => Array.from(Buffer.from(lzV2Utilities.trim0x(msgLib), "hex")))
|
|
1247
|
+
msgLibs.flatMap((msgLib) => Array.from(Buffer.from(lzV2Utilities.trim0x(lzUtilities.padify(msgLib)), "hex")))
|
|
1248
1248
|
);
|
|
1249
1249
|
functionArguments = [
|
|
1250
1250
|
this.module[0],
|