ccxt 4.0.81 → 4.0.82

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cjs/ccxt.js CHANGED
@@ -180,7 +180,7 @@ var woo$1 = require('./src/pro/woo.js');
180
180
 
181
181
  //-----------------------------------------------------------------------------
182
182
  // this is updated by vss.js when building
183
- const version = '4.0.81';
183
+ const version = '4.0.82';
184
184
  Exchange["default"].ccxtVersion = version;
185
185
  const exchanges = {
186
186
  'ace': ace,
@@ -240,6 +240,7 @@ class binance extends binance$1 {
240
240
  'margin/exchange-small-liability': 0.6667,
241
241
  'margin/exchange-small-liability-history': 0.6667,
242
242
  'margin/next-hourly-interest-rate': 0.6667,
243
+ 'margin/capital-flow': 10,
243
244
  'margin/delist-schedule': 0.6667,
244
245
  'loan/vip/loanable/data': 40,
245
246
  'loan/vip/collateral/data': 40,
package/js/ccxt.d.ts CHANGED
@@ -4,7 +4,7 @@ import * as functions from './src/base/functions.js';
4
4
  import * as errors from './src/base/errors.js';
5
5
  import { Market, Trade, Fee, Ticker, OrderBook, Order, Transaction, Tickers, Currency, Balance, DepositAddress, WithdrawalResponse, DepositAddressResponse, OHLCV, Balances, PartialBalances, Dictionary, MinMax } from './src/base/types.js';
6
6
  import { BaseError, ExchangeError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, MarginModeAlreadySet, BadResponse, NullResponse, InsufficientFunds, InvalidAddress, InvalidOrder, OrderNotFound, OrderNotCached, CancelPending, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, NotSupported, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, RequestTimeout, AuthenticationError, AddressPending } from './src/base/errors.js';
7
- declare const version = "4.0.80";
7
+ declare const version = "4.0.81";
8
8
  import ace from './src/ace.js';
9
9
  import alpaca from './src/alpaca.js';
10
10
  import ascendex from './src/ascendex.js';
package/js/ccxt.js CHANGED
@@ -38,7 +38,7 @@ import * as errors from './src/base/errors.js';
38
38
  import { BaseError, ExchangeError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, MarginModeAlreadySet, BadResponse, NullResponse, InsufficientFunds, InvalidAddress, InvalidOrder, OrderNotFound, OrderNotCached, CancelPending, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, NotSupported, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, RequestTimeout, AuthenticationError, AddressPending } from './src/base/errors.js';
39
39
  //-----------------------------------------------------------------------------
40
40
  // this is updated by vss.js when building
41
- const version = '4.0.81';
41
+ const version = '4.0.82';
42
42
  Exchange.ccxtVersion = version;
43
43
  //-----------------------------------------------------------------------------
44
44
  import ace from './src/ace.js';
@@ -47,6 +47,7 @@ interface Exchange {
47
47
  sapiGetMarginExchangeSmallLiability(params?: {}): Promise<implicitReturnType>;
48
48
  sapiGetMarginExchangeSmallLiabilityHistory(params?: {}): Promise<implicitReturnType>;
49
49
  sapiGetMarginNextHourlyInterestRate(params?: {}): Promise<implicitReturnType>;
50
+ sapiGetMarginCapitalFlow(params?: {}): Promise<implicitReturnType>;
50
51
  sapiGetMarginDelistSchedule(params?: {}): Promise<implicitReturnType>;
51
52
  sapiGetLoanVipLoanableData(params?: {}): Promise<implicitReturnType>;
52
53
  sapiGetLoanVipCollateralData(params?: {}): Promise<implicitReturnType>;
@@ -47,6 +47,7 @@ interface binance {
47
47
  sapiGetMarginExchangeSmallLiability(params?: {}): Promise<implicitReturnType>;
48
48
  sapiGetMarginExchangeSmallLiabilityHistory(params?: {}): Promise<implicitReturnType>;
49
49
  sapiGetMarginNextHourlyInterestRate(params?: {}): Promise<implicitReturnType>;
50
+ sapiGetMarginCapitalFlow(params?: {}): Promise<implicitReturnType>;
50
51
  sapiGetMarginDelistSchedule(params?: {}): Promise<implicitReturnType>;
51
52
  sapiGetLoanVipLoanableData(params?: {}): Promise<implicitReturnType>;
52
53
  sapiGetLoanVipCollateralData(params?: {}): Promise<implicitReturnType>;
@@ -47,6 +47,7 @@ interface binance {
47
47
  sapiGetMarginExchangeSmallLiability(params?: {}): Promise<implicitReturnType>;
48
48
  sapiGetMarginExchangeSmallLiabilityHistory(params?: {}): Promise<implicitReturnType>;
49
49
  sapiGetMarginNextHourlyInterestRate(params?: {}): Promise<implicitReturnType>;
50
+ sapiGetMarginCapitalFlow(params?: {}): Promise<implicitReturnType>;
50
51
  sapiGetMarginDelistSchedule(params?: {}): Promise<implicitReturnType>;
51
52
  sapiGetLoanVipLoanableData(params?: {}): Promise<implicitReturnType>;
52
53
  sapiGetLoanVipCollateralData(params?: {}): Promise<implicitReturnType>;
@@ -47,6 +47,7 @@ interface binance {
47
47
  sapiGetMarginExchangeSmallLiability(params?: {}): Promise<implicitReturnType>;
48
48
  sapiGetMarginExchangeSmallLiabilityHistory(params?: {}): Promise<implicitReturnType>;
49
49
  sapiGetMarginNextHourlyInterestRate(params?: {}): Promise<implicitReturnType>;
50
+ sapiGetMarginCapitalFlow(params?: {}): Promise<implicitReturnType>;
50
51
  sapiGetMarginDelistSchedule(params?: {}): Promise<implicitReturnType>;
51
52
  sapiGetLoanVipLoanableData(params?: {}): Promise<implicitReturnType>;
52
53
  sapiGetLoanVipCollateralData(params?: {}): Promise<implicitReturnType>;
package/js/src/binance.js CHANGED
@@ -243,6 +243,7 @@ export default class binance extends Exchange {
243
243
  'margin/exchange-small-liability': 0.6667,
244
244
  'margin/exchange-small-liability-history': 0.6667,
245
245
  'margin/next-hourly-interest-rate': 0.6667,
246
+ 'margin/capital-flow': 10,
246
247
  'margin/delist-schedule': 0.6667,
247
248
  'loan/vip/loanable/data': 40,
248
249
  'loan/vip/collateral/data': 40,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccxt",
3
- "version": "4.0.81",
3
+ "version": "4.0.82",
4
4
  "description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges",
5
5
  "unpkg": "dist/ccxt.browser.js",
6
6
  "type": "module",