• Returns {
        appName: string | undefined;
        isLoading: boolean;
        isAuthenticated: boolean;
        isReady: boolean;
        user: User | undefined;
        error: string | null;
        configureEmbeddedWallet: (({ password }?: {
            password?: string;
        }) => Promise<UserProfile | null>);
    }

    • appName: string | undefined
    • isLoading: boolean
    • isAuthenticated: boolean
    • isReady: boolean
    • user: User | undefined
    • error: string | null
    • configureEmbeddedWallet: (({ password }?: {
          password?: string;
      }) => Promise<UserProfile | null>)
        • ({ password }?): Promise<UserProfile | null>
        • Parameters

          • Optional{ password }: {
                password?: string;
            }
            • Optionalpassword?: string

          Returns Promise<UserProfile | null>