@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
10 lines • 441 B
TypeScript
import { Amount, XChainBridge } from '../common';
import { Account, BaseTransaction } from './common';
export interface XChainCreateClaimID extends BaseTransaction {
TransactionType: 'XChainCreateClaimID';
XChainBridge: XChainBridge;
SignatureReward: Amount;
OtherChainSource: Account;
}
export declare function validateXChainCreateClaimID(tx: Record<string, unknown>): void;
//# sourceMappingURL=XChainCreateClaimID.d.ts.map