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-cancellation.d.ts 503B

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