@account-kit/react-native-signer 4.87.0 → 4.87.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.
- package/README.md +6 -8
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
# @account-kit/react-native-signer
|
|
1
|
+
# @account-kit/react-native-signer
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **Deprecation Notice:** This package is being deprecated in SDK v5.x.x and is no longer supported for new integrations.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
This is an alpha release of the library. Only the **Android** platform is supported at this time.
|
|
5
|
+
React Native compatible signer implementation
|
|
8
6
|
|
|
9
7
|
## Installation
|
|
10
8
|
|
|
@@ -26,10 +24,10 @@ If using passkeys, there are iOS- and Android-specific steps to link your app to
|
|
|
26
24
|
|
|
27
25
|
#### Deep Linking
|
|
28
26
|
|
|
29
|
-
|
|
27
|
+
Use emails containing OTP codes (the default setting) to avoid the need for this step.
|
|
30
28
|
|
|
31
|
-
If using emails with magic links, your app
|
|
32
|
-
You will also need a way to trigger the deep link via
|
|
29
|
+
If using emails with magic links, your app needs to be configured to handle deep linking. Check out the React Native [docs](https://reactnative.dev/docs/linking#enabling-deep-links) for more information.
|
|
30
|
+
You will also need a way to trigger the deep link via an HTTP or HTTPS URL. This can be done in a variety of ways ranging from universal links to setting up a custom redirect server.
|
|
33
31
|
|
|
34
32
|
See the [example app](./example) for usage information.
|
|
35
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@account-kit/react-native-signer",
|
|
3
|
-
"version": "4.87.
|
|
3
|
+
"version": "4.87.1",
|
|
4
4
|
"author": "Alchemy",
|
|
5
5
|
"description": "React Native compatible Smart Wallets signer",
|
|
6
6
|
"source": "./src/index.tsx",
|
|
@@ -141,13 +141,13 @@
|
|
|
141
141
|
"version": "0.42.2"
|
|
142
142
|
},
|
|
143
143
|
"dependencies": {
|
|
144
|
-
"@aa-sdk/core": "^4.87.
|
|
145
|
-
"@account-kit/signer": "^4.87.
|
|
144
|
+
"@aa-sdk/core": "^4.87.1",
|
|
145
|
+
"@account-kit/signer": "^4.87.1",
|
|
146
146
|
"@turnkey/crypto": "^2.5.0",
|
|
147
147
|
"@turnkey/react-native-passkey-stamper": "^1.1.4",
|
|
148
148
|
"uuid": "^11.1.0",
|
|
149
149
|
"viem": "^2.45.0",
|
|
150
150
|
"zod": "^3.22.4"
|
|
151
151
|
},
|
|
152
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "eb770f279ecee6baf7b285277748105ac1b701f2"
|
|
153
153
|
}
|