binance-api-node
binance-api-node copied to clipboard
:chart: A complete and heavily tested wrapper with typings for the Binance API.
Hello! The `allBookTickers()` doesn't accept a `symbols` parameter, it would be great to create a new `bookTickers()` method that accepts the symbols parameter, like it is supported by Binance API:...
Whats the official workaround to get this package work with **React/Preact** which already uses this "crypto"? `Uncaught Error: Module "crypto" has been externalized for browser compatibility and cannot be accessed...
Great project btw! In the index.d.ts , futuresPartialDepth takes in a depth: PartialDepth in the callback, but then it returns something different. I changed it and it seemed to work...
Added the following endpoints: * margin trading order history * transfer * borrow (loan) * max borrow * repay * repay history * margin order history * margin assets *...
Add bulkDepth functionality that creates only one websocket connection, that will prevent people to overpopulate the server. Created this functionality based on their documentation: https://github.com/binance-exchange/binance-official-api-docs/blob/master/web-socket-streams.md
Recently my application stopped working because the Binance API was under stress and failed to respond in time. Because of this "binance-api-node" failed with the following error: > FetchError: request...
Add HTTP and WebSocket stuff for [delivery API](https://binance-docs.github.io/apidocs/delivery/en) Note : I'm writing this for my own needs, and am currently still werking on it. Unit tests aren't there yet, and...
Hello, In your library, it will be very awesome to add **timeout** **option** that will be passed to the request and control it. Because sometimes when we using some proxies,...
https://github.com/ViewBlock/binance-api-node/blob/8e2450791e6afc0aa2b6797f097ffccd0c5ab8b3/index.d.ts#L477 can we here edit `symbol` to `symbols` and define it as string[]
Is there a way to keep TCP connection alive for REST requests? As you know when completing REST request TCP connections are defaultly closing and on next REST requests all...