UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

21 lines 731 B
import { BaseTransaction, GlobalFlagsInterface } from './common'; export declare enum PaymentChannelClaimFlags { tfRenew = 65536, tfClose = 131072 } export interface PaymentChannelClaimFlagsInterface extends GlobalFlagsInterface { tfRenew?: boolean; tfClose?: boolean; } export interface PaymentChannelClaim extends BaseTransaction { TransactionType: 'PaymentChannelClaim'; Flags?: number | PaymentChannelClaimFlagsInterface; Channel: string; Balance?: string; Amount?: string; Signature?: string; PublicKey?: string; CredentialIDs?: string[]; } export declare function validatePaymentChannelClaim(tx: Record<string, unknown>): void; //# sourceMappingURL=paymentChannelClaim.d.ts.map