@msafe/sui-app-store 0.0.11 → 0.0.12
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.d.mts +7 -17
- package/dist/index.d.ts +7 -17
- package/dist/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -3
package/dist/index.mjs
CHANGED
|
@@ -2445,7 +2445,7 @@ var DecodeHelper = class {
|
|
|
2445
2445
|
// src/apps/mpay/helper.ts
|
|
2446
2446
|
var MPayAppHelper = class {
|
|
2447
2447
|
application = "mpay";
|
|
2448
|
-
deserialize(input) {
|
|
2448
|
+
async deserialize(input) {
|
|
2449
2449
|
const { chain, transactionBlock } = input;
|
|
2450
2450
|
const globals = Globals.new(chain === "sui:mainnet" ? "prod" /* prod */ : "dev" /* dev */);
|
|
2451
2451
|
const decoder = new DecodeHelper(globals, transactionBlock);
|
|
@@ -2578,12 +2578,6 @@ var MSafeApps = class {
|
|
|
2578
2578
|
}
|
|
2579
2579
|
return app;
|
|
2580
2580
|
}
|
|
2581
|
-
deserialize(appName, input) {
|
|
2582
|
-
return this.getAppHelper(appName).deserialize(input);
|
|
2583
|
-
}
|
|
2584
|
-
build(appName, input) {
|
|
2585
|
-
return this.getAppHelper(appName).build(input);
|
|
2586
|
-
}
|
|
2587
2581
|
};
|
|
2588
2582
|
|
|
2589
2583
|
// src/index.ts
|