@stellar/stellar-sdk
Version:
A library for working with the Stellar network, including communication with the Horizon and Soroban RPC servers.
14 lines (13 loc) • 428 B
TypeScript
/**
* InvalidChallengeError is raised when a challenge transaction does not meet
* the requirements for a SEP-10 challenge transaction (for example, a non-zero
* sequence number).
* @memberof module:WebAuth
* @category Errors
*
* @param {string} message Human-readable error message.
*/
export declare class InvalidChallengeError extends Error {
__proto__: InvalidChallengeError;
constructor(message: string);
}