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

@binance/connector

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@binance/connector - npm Package Compare versions

Comparing version 3.0.0-rc.2 to 3.0.0

2

package.json
{
"name": "@binance/connector",
"version": "3.0.0-rc.2",
"version": "3.0.0",
"description": "This is a lightweight library that works as a connector to the Binance public API.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -73,3 +73,3 @@ # Binance connector in Nodejs

privateKey,
privateKeyPassphrase // only used for encrypted key
privateKeyPassphrase, // only used for encrypted key
privateKeyAlgo

@@ -76,0 +76,0 @@ })

@@ -15,4 +15,3 @@ 'use strict'

isConnected () {
if (!this.wsConnection.ws || this.wsConnection.ws.readyState !== WebSocketClient.OPEN) return false
return true
return !(!this.wsConnection.ws || this.wsConnection.ws.readyState !== WebSocketClient.OPEN)
}

@@ -73,3 +72,2 @@

*
* @param {WebSocketClient} wsConnection - websocket client instance created by ws package
*/

@@ -76,0 +74,0 @@ disconnect () {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc