Interface VerifySignInPayload

interface VerifySignInPayload {
    altSigner?: string;
    message: string;
    password?: string;
    publicKey?: string;
    signature: string;
    socialSignIn?: string;
}

Hierarchy (view full)

Properties

altSigner?: string

The address that signed the message on behalf of another address.

message: string

The original message that was signed.

password?: string

The password to sign in with.

publicKey?: string

Required for some chains (Cosmos) to verify signature. The public key of the signer.

signature: string

The signature of the message

socialSignIn?: string

Selected social to attempt to sign in with.