ccxt 4.3.32 → 4.3.33

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
@@ -185,7 +185,7 @@ var woofipro$1 = require('./src/pro/woofipro.js');
185
185
 
186
186
  //-----------------------------------------------------------------------------
187
187
  // this is updated by vss.js when building
188
- const version = '4.3.32';
188
+ const version = '4.3.33';
189
189
  Exchange["default"].ccxtVersion = version;
190
190
  const exchanges = {
191
191
  'ace': ace,
@@ -483,7 +483,7 @@ class bitget extends bitget$1 {
483
483
  'v2/mix/account/set-margin': 4,
484
484
  'v2/mix/account/set-margin-mode': 4,
485
485
  'v2/mix/account/set-position-mode': 4,
486
- 'v2/mix/order/place-order': 20,
486
+ 'v2/mix/order/place-order': 2,
487
487
  'v2/mix/order/click-backhand': 20,
488
488
  'v2/mix/order/batch-place-order': 20,
489
489
  'v2/mix/order/modify-order': 2,
@@ -1203,7 +1203,7 @@ class whitebit extends whitebit$1 {
1203
1203
  async createMarketOrderWithCost(symbol, side, cost, params = {}) {
1204
1204
  /**
1205
1205
  * @method
1206
- * @name createMarketOrderWithCost
1206
+ * @name whitebit#createMarketOrderWithCost
1207
1207
  * @description create a market order by providing the symbol, side and cost
1208
1208
  * @param {string} symbol unified symbol of the market to create an order in
1209
1209
  * @param {string} side 'buy' or 'sell'
@@ -1218,7 +1218,7 @@ class whitebit extends whitebit$1 {
1218
1218
  async createMarketBuyOrderWithCost(symbol, cost, params = {}) {
1219
1219
  /**
1220
1220
  * @method
1221
- * @name createMarketBuyOrderWithCost
1221
+ * @name whitebit#createMarketBuyOrderWithCost
1222
1222
  * @description create a market buy order by providing the symbol and cost
1223
1223
  * @param {string} symbol unified symbol of the market to create an order in
1224
1224
  * @param {float} cost how much you want to trade in units of the quote currency
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 type { Market, Trade, Fee, Ticker, OrderBook, Order, Transaction, Tickers, Currency, Balance, DepositAddress, WithdrawalResponse, DepositAddressResponse, OHLCV, Balances, PartialBalances, Dictionary, MinMax, Position, FundingRateHistory, Liquidation, FundingHistory, MarginMode, Greeks, Leverage, Leverages, Option, OptionChain, Conversion } from './src/base/types.js';
6
6
  import { BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, BadResponse, NullResponse, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, CancelPending, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, ProxyError, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, RequestTimeout } from './src/base/errors.js';
7
- declare const version = "4.3.31";
7
+ declare const version = "4.3.32";
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, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, BadResponse, NullResponse, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, CancelPending, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, ProxyError, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, RequestTimeout } from './src/base/errors.js';
39
39
  //-----------------------------------------------------------------------------
40
40
  // this is updated by vss.js when building
41
- const version = '4.3.32';
41
+ const version = '4.3.33';
42
42
  Exchange.ccxtVersion = version;
43
43
  //-----------------------------------------------------------------------------
44
44
  import ace from './src/ace.js';
package/js/src/bitget.js CHANGED
@@ -486,7 +486,7 @@ export default class bitget extends Exchange {
486
486
  'v2/mix/account/set-margin': 4,
487
487
  'v2/mix/account/set-margin-mode': 4,
488
488
  'v2/mix/account/set-position-mode': 4,
489
- 'v2/mix/order/place-order': 20,
489
+ 'v2/mix/order/place-order': 2,
490
490
  'v2/mix/order/click-backhand': 20,
491
491
  'v2/mix/order/batch-place-order': 20,
492
492
  'v2/mix/order/modify-order': 2,
@@ -1206,7 +1206,7 @@ export default class whitebit extends Exchange {
1206
1206
  async createMarketOrderWithCost(symbol, side, cost, params = {}) {
1207
1207
  /**
1208
1208
  * @method
1209
- * @name createMarketOrderWithCost
1209
+ * @name whitebit#createMarketOrderWithCost
1210
1210
  * @description create a market order by providing the symbol, side and cost
1211
1211
  * @param {string} symbol unified symbol of the market to create an order in
1212
1212
  * @param {string} side 'buy' or 'sell'
@@ -1221,7 +1221,7 @@ export default class whitebit extends Exchange {
1221
1221
  async createMarketBuyOrderWithCost(symbol, cost, params = {}) {
1222
1222
  /**
1223
1223
  * @method
1224
- * @name createMarketBuyOrderWithCost
1224
+ * @name whitebit#createMarketBuyOrderWithCost
1225
1225
  * @description create a market buy order by providing the symbol and cost
1226
1226
  * @param {string} symbol unified symbol of the market to create an order in
1227
1227
  * @param {float} cost how much you want to trade in units of the quote currency
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ccxt",
3
- "version": "4.3.32",
3
+ "version": "4.3.33",
4
4
  "description": "A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges",
5
5
  "unpkg": "dist/ccxt.browser.min.js",
6
6
  "type": "module",