1) 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 }` 2) '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.