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-creation.d.ts 617B

12345678910111213141516
  1. import { Instructions, Prepare } from './types';
  2. import { Memo } from '../common/types/objects';
  3. import { RippleAPI } from '..';
  4. export declare type EscrowCreation = {
  5. amount: string;
  6. destination: string;
  7. memos?: Array<Memo>;
  8. condition?: string;
  9. allowCancelAfter?: string;
  10. allowExecuteAfter?: string;
  11. sourceTag?: number;
  12. destinationTag?: number;
  13. };
  14. declare function prepareEscrowCreation(this: RippleAPI, address: string, escrowCreation: EscrowCreation, instructions?: Instructions): Promise<Prepare>;
  15. export default prepareEscrowCreation;
  16. //# sourceMappingURL=escrow-creation.d.ts.map