binance 2.8.9 → 2.8.10
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/lib/types/futures.d.ts +3 -2
- package/package.json +1 -1
package/lib/types/futures.d.ts
CHANGED
|
@@ -508,10 +508,11 @@ export interface FuturesPosition {
|
|
|
508
508
|
}
|
|
509
509
|
export interface FuturesPositionTrade {
|
|
510
510
|
buyer: boolean;
|
|
511
|
-
|
|
512
|
-
|
|
511
|
+
commission: numberInString;
|
|
512
|
+
commissionAsset: string;
|
|
513
513
|
id: number;
|
|
514
514
|
maker: boolean;
|
|
515
|
+
marginAsset: string;
|
|
515
516
|
orderId: number;
|
|
516
517
|
price: numberInString;
|
|
517
518
|
qty: numberInString;
|
package/package.json
CHANGED