import TransactionType from '../TransactionType'; import BaseTransactionInstructions from './BaseInstructions'; /** * Add additional XRP to an open payment channel, update the expiration time of the channel, or both. * Taken from https://xrpl.org/paymentchannelfund.html. * * @extends BaseTransactionInstructions * * @property Amount - Amount of XRP, in drops to add to the channel. * @property Channel - The unique ID of the channel to fund, as a 64-character hexadecimal string. * @property Expiration - New Expiration time to set for the channel, in seconds since the Ripple Epoch. */ export default interface PaymentChannelFundInstructions extends BaseTransactionInstructions { readonly TransactionType: TransactionType.PaymentChannelFund; readonly Amount: string; readonly Channel: string; readonly Expiration?: number; } //# sourceMappingURL=PaymentChannelFundInstructions.d.ts.map