You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 }