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

binance

Package Overview
Dependencies
Maintainers
1
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

binance - npm Package Compare versions

Comparing version 2.2.9 to 2.2.10

lib/util/usdm/exchangeInfo.d.ts

1

lib/index.d.ts

@@ -14,2 +14,3 @@ export * from './';

export * from './util/WsStore';
export * from './util/usdm';
export * from './websocket-client';

@@ -26,3 +26,4 @@ "use strict";

__exportStar(require("./util/WsStore"), exports);
__exportStar(require("./util/usdm"), exports);
__exportStar(require("./websocket-client"), exports);
//# sourceMappingURL=index.js.map

@@ -1,2 +0,2 @@

import { BooleanString, BooleanStringCapitalised, ExchangeFilter, KlineInterval, numberInString, OrderBookRow, OrderResponseType, OrderSide, OrderStatus, OrderTimeInForce, OrderType, RateLimiter, SymbolFilter } from './shared';
import { BooleanString, BooleanStringCapitalised, ExchangeFilter, KlineInterval, numberInString, OrderBookRow, OrderResponseType, OrderSide, OrderStatus, OrderTimeInForce, OrderType, RateLimiter, SymbolIcebergPartsFilter, SymbolLotSizeFilter, SymbolMarketLotSizeFilter, SymbolMaxIcebergOrdersFilter, SymbolMaxPositionFilter, SymbolPriceFilter } from './shared';
export declare type FuturesContractType = 'PERPETUAL' | 'CURRENT_MONTH' | 'NEXT_MONTH' | 'CURRENT_QUARTER' | 'NEXT_QUARTER';

@@ -138,2 +138,21 @@ export interface ContinuousContractKlinesParams {

export declare type ContractStatus = 'PENDING_TRADING' | 'TRADING' | 'PRE_DELIVERING' | 'DELIVERING' | 'DELIVERED' | 'CANCELLED' | 'PRE_SETTLE' | 'SETTLING' | 'CLOSE';
export interface FuturesSymbolPercentPriceFilter {
filterType: 'PERCENT_PRICE';
multiplierUp: numberInString;
multiplierDown: numberInString;
multiplierDecimal: numberInString;
}
export interface FuturesSymbolMaxOrdersFilter {
filterType: 'MAX_NUM_ORDERS';
limit: number;
}
export interface FuturesSymbolMaxAlgoOrdersFilter {
filterType: 'MAX_NUM_ALGO_ORDERS';
limit: number;
}
export interface FuturesSymbolMinNotionalFilter {
filterType: 'MIN_NOTIONAL';
notional: numberInString;
}
export declare type FuturesSymbolFilter = SymbolPriceFilter | FuturesSymbolPercentPriceFilter | SymbolLotSizeFilter | FuturesSymbolMinNotionalFilter | SymbolIcebergPartsFilter | SymbolMarketLotSizeFilter | FuturesSymbolMaxOrdersFilter | FuturesSymbolMaxAlgoOrdersFilter | SymbolMaxIcebergOrdersFilter | SymbolMaxPositionFilter;
export interface FuturesSymbolExchangeInfo {

@@ -159,3 +178,3 @@ symbol: string;

triggerProtect: numberInString;
filters: SymbolFilter[];
filters: FuturesSymbolFilter[];
OrderType: OrderType[];

@@ -162,0 +181,0 @@ timeInForce: OrderTimeInForce[];

@@ -71,2 +71,3 @@ "use strict";

'multiplierUp',
'multiplierDecimal',
'newTraderRebateCommission',

@@ -73,0 +74,0 @@ 'notional',

2

package.json
{
"name": "binance",
"version": "2.2.9",
"version": "2.2.10",
"description": "Node.js connector for Binance's REST APIs and WebSockets, with TypeScript & integration tests.",

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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