binance-connector-typescript
binance-connector-typescript copied to clipboard
The permissions changed, the api should reflect the breaking changes https://developers.binance.com/docs/binance-spot-api-docs/CHANGELOG
https://github.com/binance/binance-connector-typescript/blob/8d3267389f9cff96863dac09bbee77514ea153ed/src/websocketStream.ts#L23 string.replace replaces only the first occurence of a symbol, so `sub1,sub2,sub3,sub4` will incorrectly be changed to `sub1/sub2,sub3,sub4` Better alternative is ``` if (Array.isArray(stream)) stream = stream.join("/"); ```
**I'm encountering an error with the Binance Websocket Stream library** I'm working with code that utilizes the @binance/connector-typescript library to establish a Websocket connection to the Binance exchange and subscribe...
Fix stream URL in subscribe method with combinedStreams.
**Problem Description:** I am encountering an `ERR_OSSL_UNSUPPORTED` error when calling the `Spot.newOrder` and `Spot.testNewOrder` methods from the `@binance/connector-typescript` library. The error occurs both when starting the application with the command...
I think there is a mistake with the url for 'createMarginListenKey'. The url is now set to '/api/v1/userDataStream', when it should be '/sapi/v1/userDataStream' Assuming this method is for creating listenKey...
Renamed `projectId` to `productId` in getLockedProductPositionRows to match with actual API response
https://binance-docs.github.io/apidocs/spot/en/#account-information-user_data