@msafe/sui-app-store 0.0.19 → 0.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/dist/index.global.js +9 -9
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -3
package/dist/index.mjs
CHANGED
|
@@ -503,9 +503,9 @@ function isSameTarget(target1, target2) {
|
|
|
503
503
|
var GAS_OBJECT_SPEC = "txn.gas";
|
|
504
504
|
|
|
505
505
|
// src/apps/mpay/utils/random.ts
|
|
506
|
-
import {
|
|
506
|
+
import { v4 as uuidv4 } from "uuid";
|
|
507
507
|
function generateGroupId() {
|
|
508
|
-
return
|
|
508
|
+
return uuidv4();
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
// src/apps/mpay/builder/CreateStreamHelper.ts
|