UNPKG

@nextrope/xrpl

Version:

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

12 lines 460 B
import { Amount, XChainBridge } from '../common'; import { Account, BaseTransaction } from './common'; export interface XChainClaim extends BaseTransaction { TransactionType: 'XChainClaim'; XChainBridge: XChainBridge; XChainClaimID: number | string; Destination: Account; DestinationTag?: number; Amount: Amount; } export declare function validateXChainClaim(tx: Record<string, unknown>): void; //# sourceMappingURL=XChainClaim.d.ts.map