You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

escrow-execution.d.ts 535B

12345678910111213
  1. import { Instructions, Prepare } from './types';
  2. import { Memo } from '../common/types/objects';
  3. import { RippleAPI } from '..';
  4. export declare type EscrowExecution = {
  5. owner: string;
  6. escrowSequence: number;
  7. memos?: Array<Memo>;
  8. condition?: string;
  9. fulfillment?: string;
  10. };
  11. declare function prepareEscrowExecution(this: RippleAPI, address: string, escrowExecution: EscrowExecution, instructions?: Instructions): Promise<Prepare>;
  12. export default prepareEscrowExecution;
  13. //# sourceMappingURL=escrow-execution.d.ts.map