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.

payment.d.ts 789B

12345678910111213141516171819202122232425
  1. import { Amount, Path } from '../common';
  2. import { BaseTransaction, GlobalFlags } from './common';
  3. export declare enum PaymentFlags {
  4. tfNoDirectRipple = 65536,
  5. tfPartialPayment = 131072,
  6. tfLimitQuality = 262144
  7. }
  8. export interface PaymentFlagsInterface extends GlobalFlags {
  9. tfNoDirectRipple?: boolean;
  10. tfPartialPayment?: boolean;
  11. tfLimitQuality?: boolean;
  12. }
  13. export interface Payment extends BaseTransaction {
  14. TransactionType: 'Payment';
  15. Amount: Amount;
  16. Destination: string;
  17. DestinationTag?: number;
  18. InvoiceID?: string;
  19. Paths?: Path[];
  20. SendMax?: Amount;
  21. DeliverMin?: Amount;
  22. Flags?: number | PaymentFlagsInterface;
  23. }
  24. export declare function validatePayment(tx: Record<string, unknown>): void;
  25. //# sourceMappingURL=payment.d.ts.map