You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to the adapter difference of each wallet, we present a function comparison table among wallet adapters.
25
27
26
-
> ⚠️ Remember to handle exceptional cases if some wallet adapters do not support certain features.
28
+
:::info
29
+
Due to the presense of new [@mysten/wallet-standard (v0.5.0)](https://github.com/MystenLabs/sui/tree/main/sdk/wallet-adapter/wallet-standard),
30
+
we are working on updating the statistics. Please stay tuned 🥳
31
+
:::
32
+
33
+
:::tip
34
+
Remember to handle exceptional cases if some wallet adapters do not support certain features.
Please make sure your wallet supports the [@mysten/wallet-standard](https://github.com/MystenLabs/sui/tree/main/sdk/wallet-adapter/wallet-standard) v0.5.0 and above.
56
+
57
+
Specifically, in order to be auto-detected and recognized as a standard wallet on Sui by our kit,
58
+
you need to implement the following features in your wallet adapter:
59
+
60
+
```js
61
+
// a valid wallet adapter should have the following features
62
+
{
63
+
// ...
64
+
features: {
65
+
"standard:connect": () => {},
66
+
"standard:events": () => {},
67
+
"sui:signAndExecuteTransactionBlock": () => {},
68
+
}
69
+
}
70
+
```
71
+
72
+
### How to list my wallet on Suiet Kit?
73
+
74
+
You can contact our team via [Twitter@suiet_wallet](https://twitter.com/suiet_wallet) to list your wallet on Suiet Kit.
75
+
76
+
Or submit a PR to our [repo](https://github.com/suiet/wallet-kit/pulls), modify the following files:
0 commit comments