@msafe/sui-app-store 0.0.362 → 0.0.363

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.
Files changed (2) hide show
  1. package/README.md +33 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -10,19 +10,47 @@
10
10
  <tr>
11
11
  <td align="center">
12
12
 
13
- ### This repository is not an onboarding surface
13
+ ### Integration is now the same as any Sui wallet
14
14
 
15
- **Writing a helper, forking `src/apps/**`, or opening a PR here will not list your dApp.**
15
+ You **do not write a helper**. You **do not wait for this package to publish**. You build a real `Transaction` in your dApp — the same object you already send to Slush — and submit it with `@msafe/sui-wallet`.
16
16
 
17
- MSafe no longer accepts new App Store adapters. Integrate the same way you integrate Slush: build a real Sui `Transaction` in your dApp and submit it with `@msafe/sui-wallet`.
17
+ Writing a helper, forking `src/apps/**`, or opening a PR here will **not** list your dApp.
18
18
 
19
- **If you already started the old helper work → [How to change your dApp](#how-to-change-your-dapp)**
20
- **If you are new → [Current integration](#current-integration)**
19
+ **New listing → [What you gain](#what-you-gain-in-this-version)** then [Current integration](#current-integration)
20
+ **Already started a helper → [How to change your dApp](#how-to-change-your-dapp)**
21
21
 
22
22
  </td>
23
23
  </tr>
24
24
  </table>
25
25
 
26
+ > [!TIP]
27
+ > **This version’s point:** drop the adapter. If your dApp can sign with a normal wallet, it can sign with MSafe. Listing is a store card (name, icon, URL), usually done in a day — not a week of helper review and an MSafe release.
28
+
29
+ ---
30
+
31
+ ## What you gain in this version
32
+
33
+ The old path existed because a queued multisig tx had to be **rebuilt** later, so every protocol needed an MSafe-owned helper. That is no longer how new apps enter the store. You submit the finished transaction once; MSafe simulates, votes, and executes **that** PTB.
34
+
35
+ | | ~~Before (helper)~~ | **Now (wallet `Transaction`)** |
36
+ | --- | --- | --- |
37
+ | What you write | Intention class + `deserialize` / `build` + tests + PR in **this** repo | The PTB you already build for other wallets |
38
+ | Extra dependency | `@msafe/sui-app-store` + `appContext` | `@msafe/sui-wallet` only |
39
+ | Who ships your adapter | MSafe reviews, merges, and **publishes a new app-store version** | **Nobody.** There is no adapter. |
40
+ | Time to first live tx | Often **weeks** (review + our release train) | **Days** — usually the time to wire the wallet and send a card |
41
+ | Blocked on | Our sprint, this repo’s CI, npm publish | Your own PTB being correct |
42
+ | Mysten / protocol SDK upgrades | Helper in this repo had to follow; you waited on us | You upgrade **your** dApp; we are not in the loop |
43
+ | Three new protocols at once | Three helper PRs, serialized on our side | Three teams in parallel; we only add three cards |
44
+
45
+ **You delete work, you do not add a new integration style.**
46
+
47
+ - No `BaseIntention` / `YourHelper` / `src/apps/<name>`
48
+ - No empty `new Transaction()` + `appContext` so we can rebuild later
49
+ - No “please merge our helper” email
50
+ - No holding a launch for `@msafe/sui-app-store@x.y.z`
51
+
52
+ Users still get the full multisig flow (simulate → approve → execute). New apps use a generic transaction view instead of a custom swap card. That is the trade for **not** being on our release calendar.
53
+
26
54
  > [!CAUTION]
27
55
  > **DEPRECATED:** `BaseIntention`, `IAppHelperInternal`, `src/apps/<your-app>`, `appContext`, and “fork this repo + wait for our release” are retired for **all new listings**.
28
56
  >
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@msafe/sui-app-store",
3
- "version": "0.0.362",
3
+ "version": "0.0.363",
4
4
  "description": "MSafe Sui app store repository",
5
5
  "author": "Momentum Safe",
6
6
  "license": "MIT",