zumokit
Version:
ZumoKit is a Wallet as a Service SDK
12 lines (11 loc) • 350 B
TypeScript
import { Decimal } from 'decimal.js';
import { TradingPairLimitJSON } from '../interfaces';
/** Trading pair limit */
export declare class TradingPairLimit {
/** Trading limit in base currency */
base: Decimal;
/** Trading limit in quote currency */
quote: Decimal;
/** @internal */
constructor(json: TradingPairLimitJSON);
}