From e2a10aec508ed4ca6a30fcdea9376bf7adbdfdda Mon Sep 17 00:00:00 2001 From: AyushBherwani1998 Date: Thu, 9 Jan 2025 16:23:17 +0530 Subject: [PATCH] fix typo --- .../mpc-core-kit/mpc-core-kit-js/authentication/login-jwt.mdx | 4 ++-- .../mpc-core-kit-js/authentication/login-oauth.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-jwt.mdx b/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-jwt.mdx index eef80006c..2ea4ec12e 100644 --- a/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-jwt.mdx +++ b/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-jwt.mdx @@ -37,7 +37,7 @@ login function. | `additionalParams?` | Any additional parameter (key-value pair) you'd like to pass to the login function. | | `importTssKey?` | Key to import key into TSS during first time login. For secp256k1 curve, you need to pass the private key, and for ed25519 curve you need to pass the seed. The ed25519 seed is hashed to generate 64 bytes, where first 32 bytes are used to generate the public key, and last 32 bytes are used as private key. | | `prefetchTssPublicKeys?` | Defines the number of TSS public keys to prefetch.The SDK by default starts with 2/2 flow, and this parameter should be used in the flow where you want to generate the recovery factor during first time login. The parameters helps you to reduce the operation time by pre-fetching the TSS public key and use it during generating new shares. For existing user you can set it to `0`. Default is `1`, maximum is `3` | -| `registerExistingSFAKey?` | Allows to import the [Single Factor Auth(SFA) SDK](/docs/sdk/sfa/sfa-js/) into the MPC Core Kit SDK. Default value is `false`. Please note, once SFA Key is imported, users won't be able to access their account using the SFA SDK. | +| `registerExistingSFAKey?` | Allows to import the [Single Factor Auth(SFA) SDK](/docs/sdk/sfa/sfa-js/) key into the MPC Core Kit SDK. Default value is `false`. Please note, once SFA Key is imported, users won't be able to access their account using the SFA SDK. | @@ -167,7 +167,7 @@ await coreKitInstance.loginWithJWT(jwtLoginParams); ## Importing an existing Single Factor Auth(SFA) Key. -When logging in for the first time, you can import an existing [SFA SDK](/docs/sdk/sfa/sfa-js/) +When logging in for the first time, you can import an existing [SFA SDK](/docs/sdk/sfa/sfa-js/) key using the `registerExistingSFAKey` parameter. By default, the value of this parameter is `false`. Additionally, this parameter allows you to leverage the diff --git a/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-oauth.mdx b/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-oauth.mdx index 6f59eaa32..7f6d6b6cf 100644 --- a/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-oauth.mdx +++ b/docs/sdk/mpc-core-kit/mpc-core-kit-js/authentication/login-oauth.mdx @@ -39,7 +39,7 @@ Please check the table below for more details. | Parameter | Description | | ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `importTssKey?` | The TSS key to import an existing account. | -| `registerExistingSFAKey?` | Allows to import the [Single Factor Auth(SFA) SDK](/docs/sdk/sfa/sfa-js/) Key into the MPC Core Kit SDK. Default value is `false`. Please note, once SFA Key is imported, users won't be able to access their account using the SFA SDK. | +| `registerExistingSFAKey?` | Allows to import the [Single Factor Auth(SFA) SDK](/docs/sdk/sfa/sfa-js/) key into the MPC Core Kit SDK. Default value is `false`. Please note, once SFA Key is imported, users won't be able to access their account using the SFA SDK. | ### SubVerifierDetailsParams @@ -220,7 +220,7 @@ await coreKitInstance.loginWithOAuth(verifierConfig); ## Importing an existing Single Factor Auth(SFA) Key. -When logging in for the first time, you can import an existing [SFA SDK](/docs/sdk/sfa/sfa-js/) +When logging in for the first time, you can import an existing [SFA SDK](/docs/sdk/sfa/sfa-js/) key using the `registerExistingSFAKey` parameter. By default, the value of this parameter is `false`. Additionally, this parameter allows you to leverage the