@solana-mobile/mobile-wallet-adapter-walletlib 1.0.0 → 1.0.1

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 +8 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # `@solana-mobile/mobile-wallet-adapter-walletlib`
2
2
 
3
- This is a package that provides React Native bridge for the native `mobile-wallet-adapter-walletlib` library and it is designed for *Wallet apps* built in React Native. It provides an API to implement the wallet endpoint of the [mobile wallet adapter protocol](https://github.com/solana-mobile/mobile-wallet-adapter/blob/main/spec/spec.md)
3
+ This is a package that provides React Native bridge for the native `mobile-wallet-adapter-walletlib` library and it is designed for *Wallet apps* built in React Native. It provides an API to implement the wallet endpoint of the [mobile wallet adapter protocol](https://github.com/solana-mobile/mobile-wallet-adapter/blob/main/spec/spec.md).
4
+
5
+ Deep dive and read the full Mobile Wallet Adapter protocol [specification](https://solana-mobile.github.io/mobile-wallet-adapter/spec/spec.html#mobile-wallet-adapter-specification).
6
+
7
+ ## TODO
8
+ - Implement dApp identity verification/reauthorization
9
+ - Separate bottom sheet signing experience or make optional
4
10
 
5
11
  ## Note
6
12
  This package is still in alpha and is not production ready. However, the API is stable and will not change drastically, so you can begin integration with your wallet.
7
13
 
14
+
8
15
  ## Quickstart
9
16
 
10
17
  ### 1. Define your MWA entrypoint
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@solana-mobile/mobile-wallet-adapter-walletlib",
3
3
  "description": "A React Native wrapper of the Solana Mobile, Mobile Wallet Adapter Wallet Library. Wallet apps can use this to handle dapp requests for signing and sending.",
4
- "version": "1.0.0",
4
+ "version": "1.0.1",
5
5
  "author": "Michael Sulistio <mike.sulistio@solanamobile.com>",
6
6
  "repository": "https://github.com/solana-mobile/mobile-wallet-adapter",
7
7
  "license": "Apache-2.0",
8
8
  "type": "module",
9
9
  "sideEffects": false,
10
- "react-native": "src/index",
10
+ "react-native": "lib/commonjs/index",
11
11
  "main": "lib/commonjs/index",
12
12
  "module": "lib/module/index",
13
13
  "types": "lib/typescript/index.d.ts",