import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * An OfferCancel transaction removes an Offer object from the XRP Ledger. * Taken from https://xrpl.org/offercancel.html. * * @extends BaseTransactionInstructions * * @property OfferSequence - The sequence number of a previous OfferCreate transaction. If specified, * cancel any offer object in the ledger that was created by that transaction. */ export default interface OfferCancelInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.OfferCancel; readonly OfferSequence: number; } //# sourceMappingURL=OfferCancelInstructions.d.ts.map