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.

escrowCreate.d.ts 412B

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