binance-connector-typescript icon indicating copy to clipboard operation
binance-connector-typescript copied to clipboard

Results 11 binance-connector-typescript issues
Sort by recently updated
recently updated
newest added

The permissions changed, the api should reflect the breaking changes https://developers.binance.com/docs/binance-spot-api-docs/CHANGELOG

review

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("/"); ```

review

**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...

review

https://binance-docs.github.io/apidocs/spot/en/#account-information-user_data

When will you support futures api ?

enhancement