@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
12 lines • 452 B
TypeScript
import { Account, BaseTransaction } from './common';
export interface PaymentChannelCreate extends BaseTransaction {
TransactionType: 'PaymentChannelCreate';
Amount: string;
Destination: Account;
SettleDelay: number;
PublicKey: string;
CancelAfter?: number;
DestinationTag?: number;
}
export declare function validatePaymentChannelCreate(tx: Record<string, unknown>): void;
//# sourceMappingURL=paymentChannelCreate.d.ts.map