@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
10 lines • 347 B
TypeScript
import { Currency } from '../common';
import { BaseTransaction } from './common';
export interface AMMVote extends BaseTransaction {
TransactionType: 'AMMVote';
Asset: Currency;
Asset2: Currency;
TradingFee: number;
}
export declare function validateAMMVote(tx: Record<string, unknown>): void;
//# sourceMappingURL=AMMVote.d.ts.map