@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
9 lines • 352 B
TypeScript
import { BaseTransaction } from './common';
export interface PaymentChannelFund extends BaseTransaction {
TransactionType: 'PaymentChannelFund';
Channel: string;
Amount: string;
Expiration?: number;
}
export declare function validatePaymentChannelFund(tx: Record<string, unknown>): void;
//# sourceMappingURL=paymentChannelFund.d.ts.map