From 3fbf52069b0add7a16afda2cf1cf4b24c95ca773 Mon Sep 17 00:00:00 2001 From: hqjang-pepper Date: Wed, 15 Nov 2023 18:43:41 +0900 Subject: [PATCH] fix Web3AuthOptions --- docs/sdk/pnp/android/initialize.mdx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/sdk/pnp/android/initialize.mdx b/docs/sdk/pnp/android/initialize.mdx index 36a5ef078..d7b199e53 100644 --- a/docs/sdk/pnp/android/initialize.mdx +++ b/docs/sdk/pnp/android/initialize.mdx @@ -46,14 +46,15 @@ The Web3Auth Constructor takes an object with `Web3AuthOptions` as input. | -------------- | ------------------------------------------------------------------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- | | context | android.content.Context | Yes | Android context to launch Web-based authentication, usually is the current activity | | clientId | String | Yes | Your Web3Auth Project ID | -| network | Network | Yes | Network to run Web3Auth, either MAINNET, TESTNET, AQUA or CYAN | +| network | Network | Yes | Network to run Web3Auth, either `MAINNET`, `TESTNET`, `AQUA`, `CYAN`, `SAPPHIRE_MAINNET` or `SAPPHIRE_TESTNET` | +| buildEnv | BuildEnv | No | Option for auth service, `BuildEnv.PRODUCTION`, `BuildEnv.STAGING`, `BuildEnv.TESTING` available | | redirectUrl | android.net.Uri | No | URL that Web3Auth will redirect API responses, default is `null` | | whiteLabel | WhiteLabelData | No | A configuration optional object to customize UI, branding, and translations for your brand. Refer [WhiteLabel](/pnp/features/whitelabel) section for more info. | | loginConfig | LoginConfigItem | No | A configuration optional object to use custom authentication. Refer [Custom Authentication](/pnp/features/custom-authentication) for more info. | | useCoreKitKey | Boolean | No | Use Core Kit Key true to the Core Kit keys. | | chainNamespace | enum com.web3auth.core.Web3Auth.ChainNamespace ["EIP155", "SOLANA"] | No | A configuration optional object to use chain namespace. | -| `mfaSettings` | MfaSettings | No | MFA Settings | -| `sessionTime` | `Int | No | Session Time in seconds, default is `86400` seconds | +| mfaSettings | MfaSettings | No | MFA Settings | +| sessionTime | Int | No | Session Time in seconds, default is `86400` seconds |