ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
11 lines • 503 B
TypeScript
import { Instructions, Prepare } from './types';
import { Memo } from '../common/types/objects';
import { RippleAPI } from '..';
export declare type EscrowCancellation = {
owner: string;
escrowSequence: number;
memos?: Array<Memo>;
};
declare function prepareEscrowCancellation(this: RippleAPI, address: string, escrowCancellation: EscrowCancellation, instructions?: Instructions): Promise<Prepare>;
export default prepareEscrowCancellation;
//# sourceMappingURL=escrow-cancellation.d.ts.map