import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Returns escrowed XRP to sender. * Taken from https://xrpl.org/escrowcancel.html. * * @extends BaseTransactionInstructions * * @property OfferSequence - Transaction sequence of EscrowCreate transaction that created the escrow to cancel. * @property Owner - Address of the source account that funded the escrow payment. */ export default interface EscrowCancelInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.EscrowCancel; readonly OfferSequence: number; readonly Owner: string; } //# sourceMappingURL=EscrowCancelInstructions.d.ts.map