Type Alias NotifiFrontendClientContextType

NotifiFrontendClientContextType: {
    error: Error | null;
    frontendClient: NotifiFrontendClient;
    frontendClientStatus: FrontendClientStatus;
    isLoading: boolean;
    login: (() => Promise<NotifiFrontendClient | undefined>);
    loginViaHardwareWallet: (() => Promise<NotifiFrontendClient | undefined>);
    loginViaTransaction: LoginViaTransaction | null;
    logout: (() => Promise<void>);
    walletWithSignParams: WalletWithSignParams;
}