@bithomp/xrpl-api
Version:
A Bithomp JavaScript/TypeScript library for interacting with the XRP Ledger
17 lines (16 loc) • 629 B
TypeScript
import { FormattedSourceAddress, FormattedDestinationAddress } from "../../types/account";
interface FormattedEscrowSummaryInterface {
status?: "created" | "cancelled" | "executed" | "deleted";
escrowIndex?: string;
escrowSequence?: number;
amount?: string;
condition?: string;
source?: FormattedSourceAddress;
destination?: FormattedDestinationAddress;
allowCancelAfter?: string;
allowExecuteAfter?: string;
previousTxnID?: string;
previousTxnLgrSeq?: number;
}
declare function parseEscrowChanges(tx: any): FormattedEscrowSummaryInterface | undefined;
export { parseEscrowChanges };