feat: add minBaseAmount and minQuoteAmount to ExchangePrecision and LighterGateway for improved trading logic

This commit is contained in:
discountry
2025-12-07 21:52:35 +08:00
parent 180f47b6e0
commit 2cb6c4fef1
3 changed files with 102 additions and 21 deletions
+2
View File
@@ -33,6 +33,8 @@ export interface ExchangePrecision {
priceDecimals?: number;
sizeDecimals?: number;
marketId?: number;
minBaseAmount?: number;
minQuoteAmount?: number;
}
export interface ExchangeAdapter {