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.

escrowCancel.d.ts 308B

12345678
  1. import { BaseTransaction } from './common';
  2. export interface EscrowCancel extends BaseTransaction {
  3. TransactionType: 'EscrowCancel';
  4. Owner: string;
  5. OfferSequence: number;
  6. }
  7. export declare function validateEscrowCancel(tx: Record<string, unknown>): void;
  8. //# sourceMappingURL=escrowCancel.d.ts.map