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-create.d.ts 535B

12345678910111213
  1. import { Instructions, Prepare } from './types';
  2. import { Amount } from '../common/types/objects';
  3. import { RippleAPI } from '..';
  4. export declare type CheckCreateParameters = {
  5. destination: string;
  6. sendMax: Amount;
  7. destinationTag?: number;
  8. expiration?: string;
  9. invoiceID?: string;
  10. };
  11. declare function prepareCheckCreate(this: RippleAPI, address: string, checkCreate: CheckCreateParameters, instructions?: Instructions): Promise<Prepare>;
  12. export default prepareCheckCreate;
  13. //# sourceMappingURL=check-create.d.ts.map