interface WalletChallengeResponse {
    expiresAt: string;
    message: string;
    nonce: string;
}

Properties

expiresAt: string

Expiration timestamp for this challenge

Format

date-time

Example

"2023-07-28T12:00:00.000Z"
message: string

Message to be signed by the wallet

Example

"Please sign this message to verify wallet ownership. Nonce: abc123def456"
nonce: string

Unique nonce for this challenge

Example

"abc123def456"

Generated using TypeDoc