@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.js
CHANGED
|
@@ -2475,7 +2475,7 @@ var DecodeHelper = class {
|
|
|
2475
2475
|
// src/apps/mpay/helper.ts
|
|
2476
2476
|
var MPayAppHelper = class {
|
|
2477
2477
|
application = "mpay";
|
|
2478
|
-
deserialize(input) {
|
|
2478
|
+
async deserialize(input) {
|
|
2479
2479
|
const { chain, transactionBlock } = input;
|
|
2480
2480
|
const globals = Globals.new(chain === "sui:mainnet" ? "prod" /* prod */ : "dev" /* dev */);
|
|
2481
2481
|
const decoder = new DecodeHelper(globals, transactionBlock);
|
|
@@ -2608,12 +2608,6 @@ var MSafeApps = class {
|
|
|
2608
2608
|
}
|
|
2609
2609
|
return app;
|
|
2610
2610
|
}
|
|
2611
|
-
deserialize(appName, input) {
|
|
2612
|
-
return this.getAppHelper(appName).deserialize(input);
|
|
2613
|
-
}
|
|
2614
|
-
build(appName, input) {
|
|
2615
|
-
return this.getAppHelper(appName).build(input);
|
|
2616
|
-
}
|
|
2617
2611
|
};
|
|
2618
2612
|
|
|
2619
2613
|
// src/index.ts
|