@msafe/sui-app-store 0.0.16 → 0.0.17
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 +7 -7
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -538,8 +538,9 @@ function isSameTarget(target1, target2) {
|
|
|
538
538
|
var GAS_OBJECT_SPEC = "txn.gas";
|
|
539
539
|
|
|
540
540
|
// src/apps/mpay/utils/random.ts
|
|
541
|
+
import { nanoid } from "nanoid";
|
|
541
542
|
function generateGroupId() {
|
|
542
|
-
return
|
|
543
|
+
return nanoid();
|
|
543
544
|
}
|
|
544
545
|
|
|
545
546
|
// src/apps/mpay/builder/CreateStreamHelper.ts
|