@msafe/sui-app-store 0.0.183 → 0.0.185
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/README.md +13 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -10,10 +10,21 @@ Due to Sui blockchain version limitations, multisig account can't propose multip
|
|
|
10
10
|
|
|
11
11
|
## Demos
|
|
12
12
|
|
|
13
|
-
https://msafe-sui-web-v3.vercel.app/
|
|
14
|
-
|
|
15
13
|
We provide a demo dApp for MSafe app store integration. please refer below GitHub repository: https://github.com/Momentum-Safe/msafe-sui-app-arbitrary-transaction
|
|
16
14
|
|
|
15
|
+
In this demo, we implement a dApp that allows users to execute arbitrary transaction on Sui.
|
|
16
|
+
|
|
17
|
+
You can see how to implement with `@msafe/sui-app-store` in this demo.
|
|
18
|
+
|
|
19
|
+
Including:
|
|
20
|
+
- Initiate MSafe Wallet
|
|
21
|
+
- Connect to MSafe Wallet using `@mysten/dapp-kit`
|
|
22
|
+
- Sign transaction with MSafe Wallet (also using `@msafe/dapp-kit`)
|
|
23
|
+
|
|
24
|
+
The main logic is implemented in `src/App.tsx`
|
|
25
|
+
|
|
26
|
+
Demo dApp: https://sui-ptx.m-safe.io/
|
|
27
|
+
|
|
17
28
|
## How to contribute
|
|
18
29
|
|
|
19
30
|
- Fork the repository
|