Skip to content
Alchemy Logo

getSignerStatus

function getSignerStatus(config): any;

Defined in: account-kit/core/src/actions/getSignerStatus.ts:18

Retrieves the signer status from the client's store in the provided configuration.

import { getSignerStatus } from "@account-kit/core";
// see createConfig for more information on how to create a config
import { config } from "./config";
 
const signerStatus = getSignerStatus(config);

ParameterTypeDescription

config

AlchemyAccountsConfig

The configuration object containing the client store

any

The current signer status from the client store

Was this page helpful?