diff --git a/README.md b/README.md index bffddd79..be0852b6 100644 --- a/README.md +++ b/README.md @@ -28,6 +28,7 @@ Import the module and create a new client. Passing api keys is optional only if you don't plan on doing authenticated calls. You can create an api key [here](https://www.binance.com/userCenter/createApi.html). If you want to create demo/testnet keys click [here](https://demo.binance.com/) + ```js import Binance from 'binance-api-node' @@ -91,6 +92,7 @@ client.ws.ticker('BTCUSDT', ticker => console.log(ticker)) ``` **Notes:** +- `binance-api-node` fully supports the new algo service introduced on the Decemeber 9th of 2025 - Proxy support is only available in Node.js environment - Browsers use system/OS proxy settings automatically - Supports HTTP and HTTPS proxies (use `http://` or `https://` protocol) diff --git a/package.json b/package.json index dd076631..bae3ba75 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "binance-api-node", - "version": "0.13.3", + "version": "0.13.5", "description": "A node API wrapper for Binance", "main": "dist", "browser": { @@ -15,7 +15,8 @@ }, "files": [ "dist", - "index.d.ts" + "index.d.ts", + "types" ], "scripts": { "build": "rm -rf dist && babel src -d dist",