import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Deliver XRP from a held payment to the recipient. * Taken from https://xrpl.org/escrowfinish.html. * * @extends BaseTransactionInstructions * * @property Condition - Hex value matching the previously-supplied PREIMAGE-SHA-256 crypto-condition of the held payment. * @property Fulfillment - Hex value of the PREIMAGE-SHA-256 crypto-condition fulfillment matching the held payment's Condition. * @property OfferSequence - Transaction sequence of EscrowCreate transaction that created the held payment to finish. * @property Owner - Address of the source account that funded the held payment. */ export default interface EscrowFinishInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.EscrowFinish; readonly Condition?: string; readonly Fulfillment?: string; readonly OfferSequence: number; readonly Owner: string; } //# sourceMappingURL=EscrowFinishInstructions.d.ts.map