您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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