@openfort/react 0.0.4 → 0.0.6
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/build/components/Common/TickList/index.d.ts +7 -0
- package/build/components/Common/TickList/styles.d.ts +3 -0
- package/build/components/Openfort/OpenfortProvider.d.ts +4 -1
- package/build/components/Openfort/context.d.ts +4 -2
- package/build/components/Openfort/types.d.ts +23 -27
- package/build/components/Pages/Recover/index.d.ts +2 -2
- package/build/components/Pages/Recover/styles.d.ts +1 -0
- package/build/components/PasswordStrength/PasswordStrengthIndicator.d.ts +4 -0
- package/build/components/PasswordStrength/password-utility.d.ts +52 -0
- package/build/components/contexts/web3/index.d.ts +1 -2
- package/build/hooks/openfort/auth/useAuthCallback.d.ts +1 -1
- package/build/hooks/openfort/auth/{useCreateWalletPostAuth.d.ts → useConnectToWalletPostAuth.d.ts} +5 -4
- package/build/hooks/openfort/auth/useEmailAuth.d.ts +1 -1
- package/build/hooks/openfort/auth/useGuestAuth.d.ts +1 -1
- package/build/hooks/openfort/auth/useOAuth.d.ts +1 -1
- package/build/hooks/openfort/auth/useSignOut.d.ts +2 -2
- package/build/hooks/openfort/useWallets.d.ts +10 -9
- package/build/index.d.ts +0 -1
- package/build/index.es.js +717 -317
- package/build/index.es.js.map +1 -1
- package/build/openfort/CoreOpenfortProvider.d.ts +1 -1
- package/build/openfort/core/client.d.ts +1 -1
- package/build/openfort/core/index.d.ts +0 -2
- package/build/types.d.ts +3 -1
- package/build/version.d.ts +1 -1
- package/package.json +3 -2
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export declare const TickListContainer: import("styled-components").StyledComponent<"ul", any, {}, never>;
|
|
2
|
+
export declare const TickItem: import("styled-components").StyledComponent<"li", any, {}, never>;
|
|
3
|
+
export declare const TickIconWrapper: import("styled-components").StyledComponent<"span", any, {}, never>;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { SDKOverrides, ThirdPartyAuthConfiguration } from '@openfort/openfort-js';
|
|
2
3
|
import { useConnectCallbackProps } from '../../hooks/useConnectCallback';
|
|
3
4
|
import { ContextValue } from './context';
|
|
4
5
|
import { ConnectUIOptions, OpenfortWalletConfig } from './types';
|
|
@@ -8,6 +9,8 @@ type OpenfortProviderProps = {
|
|
|
8
9
|
publishableKey: string;
|
|
9
10
|
uiConfig?: ConnectUIOptions;
|
|
10
11
|
walletConfig?: OpenfortWalletConfig;
|
|
12
|
+
overrides?: SDKOverrides;
|
|
13
|
+
thirdPartyAuth?: ThirdPartyAuthConfiguration;
|
|
11
14
|
} & useConnectCallbackProps;
|
|
12
15
|
/**
|
|
13
16
|
* OpenfortProvider component provides context and configuration for Openfort.
|
|
@@ -24,5 +27,5 @@ type OpenfortProviderProps = {
|
|
|
24
27
|
* @param {OpenfortOptions} [openfortOptions] - Options for Openfort integration.
|
|
25
28
|
* @throws Will throw an error if used outside of a WagmiProvider or if nested usages are detected.
|
|
26
29
|
*/
|
|
27
|
-
export declare const OpenfortProvider: ({ children, uiConfig, onConnect, onDisconnect, debugMode, publishableKey, walletConfig, }: OpenfortProviderProps) => React.FunctionComponentElement<React.ProviderProps<ContextValue | null>>;
|
|
30
|
+
export declare const OpenfortProvider: ({ children, uiConfig, onConnect, onDisconnect, debugMode, publishableKey, walletConfig, overrides, thirdPartyAuth, }: OpenfortProviderProps) => React.FunctionComponentElement<React.ProviderProps<ContextValue | null>>;
|
|
28
31
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { CustomTheme, Languages, Mode, Theme } from '../../types';
|
|
3
|
-
import { OAuthProvider } from '@openfort/openfort-js';
|
|
3
|
+
import { OAuthProvider, SDKOverrides, ThirdPartyAuthConfiguration } from '@openfort/openfort-js';
|
|
4
4
|
import { ValueOf } from 'viem/_types/types/utils';
|
|
5
5
|
import { useConnectCallbackProps } from '../../hooks/useConnectCallback';
|
|
6
6
|
import { OpenfortUIOptionsExtended, OpenfortWalletConfig, routes } from './types';
|
|
@@ -31,8 +31,10 @@ export type ContextValue = {
|
|
|
31
31
|
displayError: (message: string | React.ReactNode | null, code?: any) => void;
|
|
32
32
|
resize: number;
|
|
33
33
|
triggerResize: () => void;
|
|
34
|
-
uiConfig
|
|
34
|
+
uiConfig: OpenfortUIOptionsExtended;
|
|
35
35
|
walletConfig?: OpenfortWalletConfig;
|
|
36
|
+
overrides?: SDKOverrides;
|
|
37
|
+
thirdPartyAuth?: ThirdPartyAuthConfiguration;
|
|
36
38
|
} & useConnectCallbackProps;
|
|
37
39
|
export declare const Openfortcontext: React.Context<ContextValue | null>;
|
|
38
40
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
2
|
import { CustomAvatarProps, CustomTheme, Languages, Mode, Theme } from '../../types';
|
|
3
|
-
import { RecoveryMethod } from '@openfort/openfort-js';
|
|
3
|
+
import { AccountTypeEnum, RecoveryMethod } from '@openfort/openfort-js';
|
|
4
4
|
import { CoreOpenfortProviderProps } from '../../openfort/CoreOpenfortProvider';
|
|
5
5
|
export declare const routes: {
|
|
6
6
|
readonly PROVIDERS: "providers";
|
|
@@ -30,40 +30,24 @@ export declare enum AuthProvider {
|
|
|
30
30
|
GUEST = "guest"
|
|
31
31
|
}
|
|
32
32
|
export declare const socialProviders: AuthProvider[];
|
|
33
|
+
type PolicyConfig = string | Record<number, string>;
|
|
33
34
|
type CommonWalletConfig = {
|
|
34
35
|
/** Publishable key for the Shield API */
|
|
35
36
|
shieldPublishableKey: string;
|
|
36
37
|
/** Policy ID (pol_...) for the embedded signer */
|
|
37
|
-
ethereumProviderPolicyId?:
|
|
38
|
+
ethereumProviderPolicyId?: PolicyConfig;
|
|
39
|
+
accountType?: AccountTypeEnum;
|
|
38
40
|
debug?: boolean;
|
|
39
41
|
};
|
|
40
42
|
type EncryptionSession = {
|
|
41
43
|
/** Function to retrieve an encryption session using a session ID */
|
|
42
|
-
getEncryptionSession
|
|
44
|
+
getEncryptionSession?: () => Promise<string>;
|
|
43
45
|
createEncryptedSessionEndpoint?: never;
|
|
44
46
|
} | {
|
|
45
47
|
/** API endpoint for creating an encrypted session */
|
|
46
48
|
getEncryptionSession?: never;
|
|
47
|
-
createEncryptedSessionEndpoint
|
|
49
|
+
createEncryptedSessionEndpoint?: string;
|
|
48
50
|
};
|
|
49
|
-
/**
|
|
50
|
-
* Configuration for automatic recovery, which requires an encryption session.
|
|
51
|
-
*/
|
|
52
|
-
type AutomaticRecoveryWalletConfig = {
|
|
53
|
-
/** Specifies that the recovery method is automatic */
|
|
54
|
-
recoveryMethod: RecoveryMethod.AUTOMATIC;
|
|
55
|
-
} & EncryptionSession;
|
|
56
|
-
type PasswordRecoveryWalletConfig = {
|
|
57
|
-
/** Specifies that the recovery method is password-based */
|
|
58
|
-
recoveryMethod: RecoveryMethod.PASSWORD;
|
|
59
|
-
} & ((EncryptionSession & {
|
|
60
|
-
shieldEncryptionKey?: never;
|
|
61
|
-
}) | {
|
|
62
|
-
/** Required shield encryption key when no encryption session is used */
|
|
63
|
-
shieldEncryptionKey: string;
|
|
64
|
-
createEncryptedSessionEndpoint?: never;
|
|
65
|
-
getEncryptionSession?: never;
|
|
66
|
-
});
|
|
67
51
|
/**
|
|
68
52
|
* Configuration for automatic recovery.
|
|
69
53
|
* - An encryption session is required.
|
|
@@ -76,16 +60,22 @@ type PasswordRecoveryWalletConfig = {
|
|
|
76
60
|
* - `createEncryptedSessionEndpoint` as a string, OR
|
|
77
61
|
* - `getEncryptionSession.` as a function that returns a promise.
|
|
78
62
|
*/
|
|
79
|
-
export type OpenfortWalletConfig = CommonWalletConfig &
|
|
80
|
-
export type
|
|
63
|
+
export type OpenfortWalletConfig = CommonWalletConfig & EncryptionSession;
|
|
64
|
+
export type OpenfortUIOptions = {
|
|
81
65
|
linkWalletOnSignUp?: boolean;
|
|
82
|
-
authProviders
|
|
66
|
+
authProviders: AuthProvider[];
|
|
83
67
|
skipEmailVerification?: boolean;
|
|
84
68
|
termsOfServiceUrl?: string;
|
|
85
69
|
privacyPolicyUrl?: string;
|
|
86
70
|
logo?: React.ReactNode;
|
|
71
|
+
};
|
|
72
|
+
export type OpenfortSDKOptions = {
|
|
87
73
|
overrides?: CoreOpenfortProviderProps['overrides'];
|
|
88
74
|
};
|
|
75
|
+
export type WalletRecoveryOptions = {
|
|
76
|
+
allowedMethods?: RecoveryMethod[];
|
|
77
|
+
defaultMethod?: RecoveryMethod;
|
|
78
|
+
};
|
|
89
79
|
export type ConnectUIOptions = {
|
|
90
80
|
theme?: Theme;
|
|
91
81
|
mode?: Mode;
|
|
@@ -106,7 +96,12 @@ export type ConnectUIOptions = {
|
|
|
106
96
|
initialChainId?: number;
|
|
107
97
|
enforceSupportedChains?: boolean;
|
|
108
98
|
overlayBlur?: number;
|
|
109
|
-
|
|
99
|
+
walletRecovery?: WalletRecoveryOptions;
|
|
100
|
+
} & Partial<OpenfortUIOptions>;
|
|
101
|
+
type WalletRecoveryOptionsExtended = {
|
|
102
|
+
allowedMethods: RecoveryMethod[];
|
|
103
|
+
defaultMethod: RecoveryMethod;
|
|
104
|
+
};
|
|
110
105
|
export type OpenfortUIOptionsExtended = {
|
|
111
106
|
theme: Theme;
|
|
112
107
|
mode: Mode;
|
|
@@ -132,5 +127,6 @@ export type OpenfortUIOptionsExtended = {
|
|
|
132
127
|
walletOnboardingUrl?: string;
|
|
133
128
|
disableSiweRedirect?: boolean;
|
|
134
129
|
overlayBlur?: number;
|
|
135
|
-
|
|
130
|
+
walletRecovery: WalletRecoveryOptionsExtended;
|
|
131
|
+
} & OpenfortUIOptions;
|
|
136
132
|
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import React from "react";
|
|
2
|
-
declare const
|
|
3
|
-
export default
|
|
2
|
+
declare const RecoverPage: React.FC;
|
|
3
|
+
export default RecoverPage;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const OtherMethodButton: import("styled-components").StyledComponent<"button", any, {}, never>;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Password Utilities Module
|
|
3
|
+
* Provides functions for password strength calculation, passphrase generation,
|
|
4
|
+
* and password validation.
|
|
5
|
+
*/
|
|
6
|
+
export declare const MEDIUM_SCORE_THRESHOLD = 0.5;
|
|
7
|
+
export declare const STRONG_SCORE_THRESHOLD = 0.75;
|
|
8
|
+
export declare const VERY_STRONG_SCORE_THRESHOLD = 0.9;
|
|
9
|
+
/** Password strength levels */
|
|
10
|
+
export type PasswordStrengthLabel = 'Weak' | 'Medium' | 'Strong' | 'Very Strong';
|
|
11
|
+
/** Password summary information */
|
|
12
|
+
export interface PasswordSummary {
|
|
13
|
+
value: number;
|
|
14
|
+
label: PasswordStrengthLabel;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* Gets a list of invalid characters in the provided text.
|
|
18
|
+
* Replaces spaces with 'SPACE' for visibility.
|
|
19
|
+
*
|
|
20
|
+
* @param text - The text to check for invalid characters
|
|
21
|
+
* @returns Array of unique invalid characters
|
|
22
|
+
*/
|
|
23
|
+
export declare function getInvalidCharacters(text?: string): string[];
|
|
24
|
+
/**
|
|
25
|
+
* Converts a numeric password strength score to a human-readable label.
|
|
26
|
+
*
|
|
27
|
+
* @param score - The strength score (0-1)
|
|
28
|
+
* @returns The corresponding strength label
|
|
29
|
+
*/
|
|
30
|
+
export declare function getPasswordStrengthLabel(score: number): PasswordStrengthLabel;
|
|
31
|
+
/**
|
|
32
|
+
* Calculates the diversity score of a password based on character types used.
|
|
33
|
+
* Considers lowercase, uppercase, digits, and special characters.
|
|
34
|
+
*
|
|
35
|
+
* @param password - The password to analyze
|
|
36
|
+
* @returns A score between 0 and 1 representing character diversity
|
|
37
|
+
*/
|
|
38
|
+
export declare function calculatePasswordDiversityScore(password: string): number;
|
|
39
|
+
/**
|
|
40
|
+
* Calculates the overall password strength combining diversity and entropy.
|
|
41
|
+
*
|
|
42
|
+
* @param password - The password to analyze
|
|
43
|
+
* @returns A strength score between 0 and 1
|
|
44
|
+
*/
|
|
45
|
+
export declare function getPasswordStrength(password?: string): number;
|
|
46
|
+
/**
|
|
47
|
+
* Gets a comprehensive summary of password strength.
|
|
48
|
+
*
|
|
49
|
+
* @param password - The password to analyze
|
|
50
|
+
* @returns An object containing the strength value and label
|
|
51
|
+
*/
|
|
52
|
+
export declare function getPasswordSummary(password?: string): PasswordSummary;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* This provider is responsible for handling reusable web3 logic across the app.
|
|
3
3
|
*/
|
|
4
|
-
import React from 'react';
|
|
5
4
|
import { Address, Chain } from 'viem';
|
|
6
5
|
type Web3Context = {
|
|
7
6
|
connect: {
|
|
@@ -16,7 +15,7 @@ type Web3Context = {
|
|
|
16
15
|
address: Address;
|
|
17
16
|
};
|
|
18
17
|
};
|
|
19
|
-
declare const Web3Context:
|
|
18
|
+
declare const Web3Context: import("react").Context<Web3Context>;
|
|
20
19
|
export declare const Web3ContextProvider: ({ enabled, children, }: {
|
|
21
20
|
enabled?: boolean;
|
|
22
21
|
children: React.ReactNode;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OpenfortHookOptions, OpenfortError } from "../../../types";
|
|
2
2
|
import { AuthProvider } from "../../../components/Openfort/types";
|
|
3
|
-
import { CreateWalletPostAuthOptions } from "./
|
|
3
|
+
import { CreateWalletPostAuthOptions } from "./useConnectToWalletPostAuth";
|
|
4
4
|
import { EmailVerificationResult } from "./useEmailAuth";
|
|
5
5
|
import { StoreCredentialsResult } from "./useOAuth";
|
|
6
6
|
type CallbackResult = (StoreCredentialsResult & {
|
package/build/hooks/openfort/auth/{useCreateWalletPostAuth.d.ts → useConnectToWalletPostAuth.d.ts}
RENAMED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { UserWallet } from "../useWallets";
|
|
1
2
|
export type CreateWalletPostAuthOptions = {
|
|
2
3
|
/**
|
|
3
4
|
* @default true
|
|
@@ -5,13 +6,13 @@ export type CreateWalletPostAuthOptions = {
|
|
|
5
6
|
*/
|
|
6
7
|
logoutOnError?: boolean;
|
|
7
8
|
/**
|
|
8
|
-
*
|
|
9
|
+
* @default true
|
|
10
|
+
* It will automatically try to recover the first wallet with automatic recovery.
|
|
9
11
|
*/
|
|
10
12
|
automaticRecovery?: boolean;
|
|
11
13
|
};
|
|
12
|
-
export declare const
|
|
14
|
+
export declare const useConnectToWalletPostAuth: () => {
|
|
13
15
|
tryUseWallet: ({ logoutOnError: signOutOnError, automaticRecovery }: CreateWalletPostAuthOptions) => Promise<{
|
|
14
|
-
|
|
15
|
-
wallet?: import("../useWallets").UserWallet;
|
|
16
|
+
wallet?: UserWallet;
|
|
16
17
|
}>;
|
|
17
18
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type AuthPlayerResponse as OpenfortUser } from '@openfort/openfort-js';
|
|
2
2
|
import { OpenfortHookOptions, OpenfortError } from "../../../types";
|
|
3
|
-
import { CreateWalletPostAuthOptions } from './
|
|
3
|
+
import { CreateWalletPostAuthOptions } from './useConnectToWalletPostAuth';
|
|
4
4
|
import { UserWallet } from '../useWallets';
|
|
5
5
|
export type EmailAuthResult = {
|
|
6
6
|
error?: OpenfortError;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type AuthPlayerResponse as OpenfortUser } from '@openfort/openfort-js';
|
|
2
2
|
import { OpenfortHookOptions, OpenfortError } from "../../../types";
|
|
3
|
-
import { CreateWalletPostAuthOptions } from "./
|
|
3
|
+
import { CreateWalletPostAuthOptions } from "./useConnectToWalletPostAuth";
|
|
4
4
|
import { UserWallet } from "../useWallets";
|
|
5
5
|
export type GuestHookResult = {
|
|
6
6
|
error?: OpenfortError;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OAuthProvider } from '@openfort/openfort-js';
|
|
2
2
|
import { OpenfortHookOptions, OpenfortError } from '../../../types';
|
|
3
|
-
import { CreateWalletPostAuthOptions } from './
|
|
3
|
+
import { CreateWalletPostAuthOptions } from './useConnectToWalletPostAuth';
|
|
4
4
|
import { UserWallet } from "../useWallets";
|
|
5
5
|
import { type AuthPlayerResponse as OpenfortUser } from '@openfort/openfort-js';
|
|
6
6
|
export type InitializeOAuthOptions = {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { OpenfortError, OpenfortHookOptions } from '../../../types';
|
|
2
2
|
export declare function useSignOut(hookOptions?: OpenfortHookOptions): {
|
|
3
|
-
signOut: (options?: OpenfortHookOptions) => Promise<{}
|
|
3
|
+
signOut: (options?: OpenfortHookOptions) => Promise<{}>;
|
|
4
4
|
isLoading: boolean;
|
|
5
5
|
isError: boolean;
|
|
6
6
|
isSuccess: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { RecoveryMethod } from "@openfort/openfort-js";
|
|
1
|
+
import { AccountTypeEnum, RecoveryMethod, RecoveryParams } from "@openfort/openfort-js";
|
|
2
2
|
import { Hex } from "viem";
|
|
3
3
|
import { Connector } from "wagmi";
|
|
4
4
|
import { embeddedWalletId } from "../../constants/openfort";
|
|
5
5
|
import { OpenfortError, OpenfortHookOptions } from "../../types";
|
|
6
6
|
export type UserWallet = {
|
|
7
|
-
address
|
|
7
|
+
address: Hex;
|
|
8
8
|
connectorType?: string;
|
|
9
9
|
walletClientType?: string;
|
|
10
10
|
connector?: Connector;
|
|
@@ -12,6 +12,7 @@ export type UserWallet = {
|
|
|
12
12
|
isAvailable: boolean;
|
|
13
13
|
isActive?: boolean;
|
|
14
14
|
isConnecting?: boolean;
|
|
15
|
+
recoveryMethod?: RecoveryMethod;
|
|
15
16
|
};
|
|
16
17
|
type SetActiveWalletResult = {
|
|
17
18
|
error?: OpenfortError;
|
|
@@ -31,11 +32,12 @@ type SetActiveWalletOptions = ({
|
|
|
31
32
|
type CreateWalletResult = SetActiveWalletResult;
|
|
32
33
|
type CreateWalletOptions = {
|
|
33
34
|
password?: string;
|
|
35
|
+
accountType?: AccountTypeEnum;
|
|
34
36
|
} & OpenfortHookOptions<CreateWalletResult>;
|
|
35
37
|
type RecoverEmbeddedWalletResult = SetActiveWalletResult;
|
|
36
38
|
type SetRecoveryOptions = {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
+
previousRecovery: RecoveryParams;
|
|
40
|
+
newRecovery: RecoveryParams;
|
|
39
41
|
} & OpenfortHookOptions<CreateWalletResult>;
|
|
40
42
|
type WalletOptions = OpenfortHookOptions<SetActiveWalletResult | CreateWalletResult>;
|
|
41
43
|
export declare function useWallets(hookOptions?: WalletOptions): {
|
|
@@ -45,15 +47,14 @@ export declare function useWallets(hookOptions?: WalletOptions): {
|
|
|
45
47
|
isSuccess: boolean;
|
|
46
48
|
isCreating: boolean;
|
|
47
49
|
isConnecting: boolean;
|
|
50
|
+
hasWallet: boolean;
|
|
51
|
+
isLoadingWallets: boolean;
|
|
48
52
|
wallets: UserWallet[];
|
|
49
53
|
availableWallets: import("../../wallets/useWallets").WalletProps[];
|
|
50
54
|
activeWallet: UserWallet | undefined;
|
|
51
55
|
setRecovery: (params: SetRecoveryOptions) => Promise<RecoverEmbeddedWalletResult>;
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
} | {
|
|
55
|
-
wallet: UserWallet;
|
|
56
|
-
}>;
|
|
56
|
+
reset: () => void;
|
|
57
|
+
createWallet: ({ password, ...options }?: CreateWalletOptions) => Promise<CreateWalletResult>;
|
|
57
58
|
setActiveWallet: (options: SetActiveWalletOptions | string) => Promise<SetActiveWalletResult>;
|
|
58
59
|
};
|
|
59
60
|
export {};
|
package/build/index.d.ts
CHANGED
|
@@ -4,7 +4,6 @@ export { default as getDefaultConfig } from './defaultConfig';
|
|
|
4
4
|
export { default as getDefaultConnectors } from './defaultConnectors';
|
|
5
5
|
export { wallets } from './wallets';
|
|
6
6
|
export { AuthProvider, } from './components/Openfort/types';
|
|
7
|
-
export { Openfortcontext, } from './components/Openfort/context';
|
|
8
7
|
export { OpenfortProvider, } from './components/Openfort/OpenfortProvider';
|
|
9
8
|
export { OpenfortButton } from './components/ConnectButton';
|
|
10
9
|
export { default as Avatar } from './components/Common/Avatar';
|