UNPKG

@nextrope/xrpl

Version:

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

11 lines 400 B
import { Amount } from '../common'; import { BaseTransaction } from './common'; export declare const AMM_MAX_TRADING_FEE = 1000; export interface AMMCreate extends BaseTransaction { TransactionType: 'AMMCreate'; Amount: Amount; Amount2: Amount; TradingFee: number; } export declare function validateAMMCreate(tx: Record<string, unknown>): void; //# sourceMappingURL=AMMCreate.d.ts.map