@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
16 lines (15 loc) • 347 B
TypeScript
export interface ErrorResponse {
id?: number | string;
account?: string;
transaction?: string;
public_key?: string;
nft_id?: string;
status: "error";
error: string;
error_code?: string;
error_message?: string;
error_exception?: string;
api_version?: number;
marker?: any;
validated?: boolean;
}