useSignerStatus

1const useSignerStatus: (override?) => UseSignerStatusResult;

Defined in: account-kit/react/dist/types/hooks/useSignerStatus.d.ts:17

Hook to get the signer status, optionally using an override configuration, useful if you’re building your own login.

Example

import { 
const useSignerStatus: (override?: AlchemyAccountContextProps) => UseSignerStatusResult

Hook to get the signer status, optionally using an override configuration, useful if you’re building your own login.

useSignerStatus
} from "@account-kit/react";
const
const signerStatus: SignerStatus
signerStatus
=
function useSignerStatus(override?: AlchemyAccountContextProps): UseSignerStatusResult

Hook to get the signer status, optionally using an override configuration, useful if you’re building your own login.

useSignerStatus
();

Parameters

ParameterTypeDescription

override?

AlchemyAccountContextProps

optional configuration to override the default context. ref

Returns

UseSignerStatusResult

the current state of the signer. ref