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.

checkCreate.d.ts 418B

123456789101112
  1. import { Amount } from '../common';
  2. import { BaseTransaction } from './common';
  3. export interface CheckCreate extends BaseTransaction {
  4. TransactionType: 'CheckCreate';
  5. Destination: string;
  6. SendMax: Amount;
  7. DestinationTag?: number;
  8. Expiration?: number;
  9. InvoiceID?: string;
  10. }
  11. export declare function validateCheckCreate(tx: Record<string, unknown>): void;
  12. //# sourceMappingURL=checkCreate.d.ts.map