stellar-plus
Version:
beta version of stellar-plus, an all-in-one sdk for the Stellar blockchain
14 lines (13 loc) • 606 B
TypeScript
import { StellarPlusError } from '../../../../stellar-plus/error';
export declare enum DefaultAccountHandlerErrorCodes {
DAH001 = "DAH001",
DAH002 = "DAH002",
DAH003 = "DAH003",
DAH004 = "DAH004"
}
export declare const DAHError: {
failedToLoadSecretKeyError: (error?: Error) => StellarPlusError;
failedToSignTransactionError: (error?: Error) => StellarPlusError;
failedToSignAuthorizationEntryError: (error: Error, authEntry: string, validUntilLedgerSeq: number, networkPassphrase: string) => StellarPlusError;
failedToSignDataError: (error?: Error) => StellarPlusError;
};