import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Claim XRP from a payment channel, adjust the payment channel's expiration, or both. * Taken from https://xrpl.org/paymentchannelclaim.html. * * @extends BaseTransactionInstructions * * @property Amount - The amount of XRP, in drops, authorized by the Signature. * @property Balance - Total amount of XRP, in drops, delivered by this channel after processing this claim. * @property Channel - The unique ID of the channel, as a 64-character hexadecimal string. * @property PublicKey - The public key used for the signature, as hexadecimal. * @property Signature - The signature of this claim, as hexadecimal. */ export default interface PaymentChannelClaimInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.PaymentChannelClaim; readonly Amount?: string; readonly Balance?: string; readonly Channel: string; readonly PublicKey?: string; readonly Signature?: string; } //# sourceMappingURL=PaymentChannelClaimInstructions.d.ts.map