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.

escrowFinish.d.ts 358B

12345678910
  1. import { BaseTransaction } from './common';
  2. export interface EscrowFinish extends BaseTransaction {
  3. TransactionType: 'EscrowFinish';
  4. Owner: string;
  5. OfferSequence: number;
  6. Condition?: string;
  7. Fulfillment?: string;
  8. }
  9. export declare function validateEscrowFinish(tx: Record<string, unknown>): void;
  10. //# sourceMappingURL=escrowFinish.d.ts.map