@nextrope/xrpl
Version:
A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser
12 lines • 458 B
TypeScript
import { AuthAccount, Currency, IssuedCurrencyAmount } from '../common';
import { BaseTransaction } from './common';
export interface AMMBid extends BaseTransaction {
TransactionType: 'AMMBid';
Asset: Currency;
Asset2: Currency;
BidMin?: IssuedCurrencyAmount;
BidMax?: IssuedCurrencyAmount;
AuthAccounts?: AuthAccount[];
}
export declare function validateAMMBid(tx: Record<string, unknown>): void;
//# sourceMappingURL=AMMBid.d.ts.map