Interface iGetSignInChallengeSuccessResponse<T>

interface iGetSignInChallengeSuccessResponse<T> {
    message: string;
    nonce: string;
    params: ChallengeParams<T>;
}

Type Parameters

Implemented by

Properties

Properties

message: string

The challenge message to sign.

nonce: string

The nonce for the challenge.

params: ChallengeParams<T>

The challenge parameters.