@account-kit/react-native-signer 4.64.0 → 4.66.0
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/lib/commonjs/client.js
CHANGED
|
@@ -217,7 +217,7 @@ class RNSignerClient extends _signer.BaseSignerClient {
|
|
|
217
217
|
/**
|
|
218
218
|
* Exports the wallet and returns the decrypted private key or seed phrase.
|
|
219
219
|
*
|
|
220
|
-
* @param {ExportWalletParams} params -
|
|
220
|
+
* @param {ExportWalletParams} params - exportWallet parameters
|
|
221
221
|
* @returns {Promise<string>} The decrypted private key or seed phrase
|
|
222
222
|
* @throws {Error} If the user is not authenticated or export fails
|
|
223
223
|
*/
|
package/lib/module/client.js
CHANGED
|
@@ -211,7 +211,7 @@ export class RNSignerClient extends BaseSignerClient {
|
|
|
211
211
|
/**
|
|
212
212
|
* Exports the wallet and returns the decrypted private key or seed phrase.
|
|
213
213
|
*
|
|
214
|
-
* @param {ExportWalletParams} params -
|
|
214
|
+
* @param {ExportWalletParams} params - exportWallet parameters
|
|
215
215
|
* @returns {Promise<string>} The decrypted private key or seed phrase
|
|
216
216
|
* @throws {Error} If the user is not authenticated or export fails
|
|
217
217
|
*/
|
|
@@ -131,7 +131,7 @@ export declare class RNSignerClient extends BaseSignerClient<ExportWalletParams,
|
|
|
131
131
|
/**
|
|
132
132
|
* Exports the wallet and returns the decrypted private key or seed phrase.
|
|
133
133
|
*
|
|
134
|
-
* @param {ExportWalletParams} params -
|
|
134
|
+
* @param {ExportWalletParams} params - exportWallet parameters
|
|
135
135
|
* @returns {Promise<string>} The decrypted private key or seed phrase
|
|
136
136
|
* @throws {Error} If the user is not authenticated or export fails
|
|
137
137
|
*/
|
|
@@ -131,7 +131,7 @@ export declare class RNSignerClient extends BaseSignerClient<ExportWalletParams,
|
|
|
131
131
|
/**
|
|
132
132
|
* Exports the wallet and returns the decrypted private key or seed phrase.
|
|
133
133
|
*
|
|
134
|
-
* @param {ExportWalletParams} params -
|
|
134
|
+
* @param {ExportWalletParams} params - exportWallet parameters
|
|
135
135
|
* @returns {Promise<string>} The decrypted private key or seed phrase
|
|
136
136
|
* @throws {Error} If the user is not authenticated or export fails
|
|
137
137
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@account-kit/react-native-signer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.66.0",
|
|
4
4
|
"author": "Alchemy",
|
|
5
5
|
"description": "React Native compatible Smart Wallets signer",
|
|
6
6
|
"source": "./src/index.tsx",
|
|
@@ -42,7 +42,6 @@
|
|
|
42
42
|
"typecheck": "tsc",
|
|
43
43
|
"build": "yarn typecheck",
|
|
44
44
|
"clean": "del-cli android/build example/android/build example/android/app/build example/ios/build lib",
|
|
45
|
-
"fern:gen": "node ../../doc-gen/dist/esm/cli.js generate --in ./src/index.tsx --out ../../docs/pages/reference/account-kit/react-native-signer",
|
|
46
45
|
"prepare": "bob build"
|
|
47
46
|
},
|
|
48
47
|
"keywords": [
|
|
@@ -142,13 +141,13 @@
|
|
|
142
141
|
"version": "0.42.2"
|
|
143
142
|
},
|
|
144
143
|
"dependencies": {
|
|
145
|
-
"@aa-sdk/core": "^4.
|
|
146
|
-
"@account-kit/signer": "^4.
|
|
144
|
+
"@aa-sdk/core": "^4.66.0",
|
|
145
|
+
"@account-kit/signer": "^4.66.0",
|
|
147
146
|
"@turnkey/crypto": "^2.5.0",
|
|
148
147
|
"@turnkey/react-native-passkey-stamper": "^1.1.4",
|
|
149
148
|
"uuid": "^11.1.0",
|
|
150
149
|
"viem": "^2.29.2",
|
|
151
150
|
"zod": "^3.22.4"
|
|
152
151
|
},
|
|
153
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "e82c14b7d477a925e7340d614f321affb7cda782"
|
|
154
153
|
}
|
package/src/client.ts
CHANGED
|
@@ -301,7 +301,7 @@ export class RNSignerClient extends BaseSignerClient<
|
|
|
301
301
|
/**
|
|
302
302
|
* Exports the wallet and returns the decrypted private key or seed phrase.
|
|
303
303
|
*
|
|
304
|
-
* @param {ExportWalletParams} params -
|
|
304
|
+
* @param {ExportWalletParams} params - exportWallet parameters
|
|
305
305
|
* @returns {Promise<string>} The decrypted private key or seed phrase
|
|
306
306
|
* @throws {Error} If the user is not authenticated or export fails
|
|
307
307
|
*/
|