@layerzerolabs/lz-aptos-sdk-v1 2.1.24 → 2.1.26

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @layerzerolabs/lz-aptos-sdk-v1
2
2
 
3
+ ## 2.1.25
4
+
5
+ ### Patch Changes
6
+
7
+ - 57fe209: wire ulnv2 during snapshot build
8
+ - Updated dependencies [57fe209]
9
+ - @layerzerolabs/lz-definitions@2.1.25
10
+
3
11
  ## 2.1.24
4
12
 
5
13
  ### Patch Changes
package/dist/index.cjs CHANGED
@@ -450,7 +450,7 @@ function stringToUint8Array(str) {
450
450
  return Uint8Array.from(Buffer.from(value.padStart(len, "0"), "hex"));
451
451
  }
452
452
  function makeSignFuncWithMultipleSigners(...signers) {
453
- return function(data) {
453
+ return async function(data) {
454
454
  const retval = signers.map((s, index) => {
455
455
  return {
456
456
  signature: s.signBuffer(data),