@dhedge/trading-widget 4.2.0 → 4.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.cjs +10 -10
- package/index.js +2907 -2895
- package/limit-orders/constants.d.ts +3 -0
- package/package.json +1 -1
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
export declare const LIMIT_ORDER_READ_FUNCTION_NAME = "limitOrders";
|
|
2
2
|
export declare const DEFAULT_MIN_ORDER_AMOUNT = 0;
|
|
3
3
|
export declare const DEFAULT_SELL_PERCENTAGE = "100";
|
|
4
|
+
export declare const PRICE_SMALL_THRESHOLD = 1;
|
|
5
|
+
export declare const PRICE_SMALL_MAX_FRACTION_DIGITS = 5;
|
|
6
|
+
export declare const PRICE_DEFAULT_MAX_FRACTION_DIGITS = 2;
|