UNPKG

@transia/xrpl

Version:

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

11 lines 480 B
import { Amount, XChainBridge } from '../common'; import { BaseTransaction, Account } from './common'; export interface XChainAccountCreateCommit extends BaseTransaction { TransactionType: 'XChainAccountCreateCommit'; XChainBridge: XChainBridge; SignatureReward: Amount; Destination: Account; Amount: Amount; } export declare function validateXChainAccountCreateCommit(tx: Record<string, unknown>): void; //# sourceMappingURL=XChainAccountCreateCommit.d.ts.map