Skip to content

Commit a341a48

Browse files
committed
feat(types/spot): add 'baseCommissionPrecision' and 'quoteCommissionPrecision' to SymbolExchangeInfo
1 parent 3b39b28 commit a341a48

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binance",
3-
"version": "2.13.13",
3+
"version": "2.13.14",
44
"description": "Node.js & JavaScript SDK for Binance REST APIs & WebSockets, with TypeScript & end-to-end tests.",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

src/types/spot.ts

+2
Original file line numberDiff line numberDiff line change
@@ -534,6 +534,8 @@ export interface SymbolExchangeInfo {
534534
quoteAsset: string;
535535
quotePrecision: number;
536536
quoteAssetPrecision: number;
537+
baseCommissionPrecision: number;
538+
quoteCommissionPrecision: number;
537539
orderTypes: OrderType[];
538540
icebergAllowed: boolean;
539541
ocoAllowed: boolean;

0 commit comments

Comments
 (0)