Huge News!Announcing our $40M Series B led by Abstract Ventures.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 0.10.19 to 0.10.20

3

dist/http-client.js

@@ -506,2 +506,5 @@ "use strict";

},
marginIsolatedAccount: function marginIsolatedAccount(payload) {
return privCall('/sapi/v1/margin/isolated/account', payload);
},
futuresPing: function futuresPing() {

@@ -508,0 +511,0 @@ return pubCall('/fapi/v1/ping').then(function () {

@@ -298,2 +298,3 @@ // tslint:disable:interface-name

marginLoan(options: { asset: string; amount:number; useServerTime?: boolean }): Promise<{tranId:number}>
marginIsolatedAccount(options?: { symbol?: string; recvWindow?: number }): Promise<IsolatedMarginAccount>
}

@@ -935,2 +936,36 @@

}
export interface IsolatedMarginAccount {
assets: IsolatedAsset[]
totalAssetOfBtc: string
totalLiabilityOfBtc: string
totalNetAssetOfBtc: string
}
export interface IsolatedAsset {
baseAsset: IsolatedAssetSingle
quoteAsset: IsolatedAssetSingle
symbol: string
isolatedCreated: boolean
marginLevel: string
marginLevelStatus: 'EXCESSIVE' | 'NORMAL' | 'MARGIN_CALL' | 'PRE_LIQUIDATION' | 'FORCE_LIQUIDATION'
marginRatio: string
indexPrice: string
liquidatePrice: string
liquidateRate: string
tradeEnabled: boolean
}
export interface IsolatedAssetSingle {
asset: string
borrowEnabled: boolean
borrowed: string
free: string
interest: string
locked: string
netAsset: string
netAssetOfBtc: string
repayEnabled: boolean
totalAsset: string
}
}

2

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

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

Sorry, the diff of this file is too big to display

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