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.

check-cash.d.ts 466B

1234567891011
  1. import { Instructions, Prepare } from './types';
  2. import { Amount } from '../common/types/objects';
  3. import { RippleAPI } from '..';
  4. export declare type CheckCashParameters = {
  5. checkID: string;
  6. amount?: Amount;
  7. deliverMin?: Amount;
  8. };
  9. declare function prepareCheckCash(this: RippleAPI, address: string, checkCash: CheckCashParameters, instructions?: Instructions): Promise<Prepare>;
  10. export default prepareCheckCash;
  11. //# sourceMappingURL=check-cash.d.ts.map