binance 2.0.30 → 2.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -33,9 +33,17 @@ Refer to the [examples](./examples) folder for implementation demos.
33
33
  - Issues? Check the [issues tab](https://github.com/tiagosiebler/binance/issues).
34
34
  - Discuss & collaborate with other node devs? Join our [Node.js Algo Traders](https://t.me/nodetraders) engineering community on telegram.
35
35
  - Questions about Binance APIs & WebSockets? Ask in the official [Binance API](https://t.me/binance_api_english) group on telegram.
36
- - Try my other connectors:
36
+
37
+ ## Related projects
38
+ Check out my related projects:
39
+ - Try my connectors:
37
40
  - [ftx-api](https://www.npmjs.com/package/ftx-api)
38
41
  - [bybit-api](https://www.npmjs.com/package/bybit-api)
42
+ - [binance](https://www.npmjs.com/package/binance)
43
+ - Try my misc utilities:
44
+ - [orderbooks](https://www.npmjs.com/package/orderbooks)
45
+ - Check out my examples:
46
+ - [awesome-crypto-examples](https://github.com/tiagosiebler/awesome-crypto-examples)
39
47
 
40
48
  ## Documentation
41
49
  Most methods accept JS objects. These can be populated using parameters specified by Binance's API documentation.
@@ -254,3 +262,7 @@ Or buy me a coffee using any of these:
254
262
 
255
263
  ### Contributions & Pull Requests
256
264
  Contributions are encouraged, I will review any incoming pull requests. See the issues tab for todo items.
265
+
266
+ ## Stargazers
267
+
268
+ [![Star History Chart](https://api.star-history.com/svg?repos=tiagosiebler/ftx-api,tiagosiebler/bybit-api,tiagosiebler/binance,tiagosiebler/orderbooks&type=Date)](https://star-history.com/#tiagosiebler/ftx-api&tiagosiebler/bybit-api&tiagosiebler/binance&tiagosiebler/orderbooks&Date)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "binance",
3
- "version": "2.0.30",
3
+ "version": "2.0.31",
4
4
  "description": "Node.js connector for Binance's REST APIs and WebSockets, with TypeScript & integration tests.",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",
@@ -11,7 +11,7 @@
11
11
  "scripts": {
12
12
  "test": "jest",
13
13
  "test:watch": "jest --watch",
14
- "clean": "rm -rf lib dist",
14
+ "clean": "rimraf lib dist",
15
15
  "build": "tsc",
16
16
  "build:clean": "npm run clean && npm run build",
17
17
  "build:watch": "npm run clean && tsc --watch",