New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

binance-api-node

Package Overview
Dependencies
Maintainers
1
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binance-api-node - npm Package Compare versions

Comparing version

to
0.4.1

2

dist/websocket.js

@@ -75,2 +75,4 @@ 'use strict';

cb({
symbol: symbol,
level: level,
lastUpdateId: lastUpdateId,

@@ -77,0 +79,0 @@ bids: bids.map(function (b) {

2

package.json
{
"name": "binance-api-node",
"version": "0.4.0",
"version": "0.4.1",
"description": "A node API wrapper for Binance",

@@ -5,0 +5,0 @@ "main": "dist",

@@ -746,2 +746,4 @@ # binance-api-node [![build](https://img.shields.io/travis/HyperCubeProject/binance-api-node.svg?style=flat-square)](https://travis-ci.org/HyperCubeProject/binance-api-node) [![cover](https://img.shields.io/coveralls/HyperCubeProject/binance-api-node.svg?style=flat-square)](https://coveralls.io/github/HyperCubeProject/binance-api-node) [![bnb](https://img.shields.io/badge/binance-winner-yellow.svg?style=flat-square)](https://github.com/binance-exchange/binance-api-node)

{
symbol: 'ETHBTC',
level: 10,
bids: [

@@ -748,0 +750,0 @@ { price: '0.04896500', quantity: '0.00000000' },

@@ -41,2 +41,4 @@ import WebSocket from 'ws'

cb({
symbol,
level,
lastUpdateId,

@@ -43,0 +45,0 @@ bids: bids.map(b => zip(['price', 'quantity'], b)),