binance-api-node
binance-api-node copied to clipboard
exchangeInfo for SPOT missing filter 'NOTIONAL' and 'MIN_NOTIONAL' is incorrect
-
missing NOTIONAL filter on SPOT (exchangeInfo) The structure of NOTIONAL refer to https://developers.binance.com/docs/binance-spot-api-docs/filters#notional Look like this
{ "filterType": "NOTIONAL", "minNotional": "10.00000000", "applyMinToMarket": false, "maxNotional": "10000.00000000", "applyMaxToMarket": false, "avgPriceMins": 5 } -
'MIN_NOTIONAL' have incorrect data type index.d.ts
export interface SymbolMinNotionalFilter { filterType: SymbolFilterType.MIN_NOTIONAL notional: string }But refer to https://developers.binance.com/docs/binance-spot-api-docs/filters#min_notional It should have{ "filterType": "MIN_NOTIONAL", "minNotional": "0.00100000", "applyToMarket": true, "avgPriceMins": 5 }
Thank you.