ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
16 lines • 617 B
TypeScript
import { Instructions, Prepare } from './types';
import { Memo } from '../common/types/objects';
import { RippleAPI } from '..';
export declare type EscrowCreation = {
amount: string;
destination: string;
memos?: Array<Memo>;
condition?: string;
allowCancelAfter?: string;
allowExecuteAfter?: string;
sourceTag?: number;
destinationTag?: number;
};
declare function prepareEscrowCreation(this: RippleAPI, address: string, escrowCreation: EscrowCreation, instructions?: Instructions): Promise<Prepare>;
export default prepareEscrowCreation;
//# sourceMappingURL=escrow-creation.d.ts.map