ccxt 4.3.31 → 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/README.md +3 -3
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/base/Exchange.js +14 -0
- package/dist/cjs/src/bitget.js +1 -1
- package/dist/cjs/src/coinex.js +42 -39
- package/dist/cjs/src/pro/cex.js +1 -1
- package/dist/cjs/src/pro/coinbase.js +31 -0
- package/dist/cjs/src/pro/mexc.js +7 -7
- package/dist/cjs/src/whitebit.js +2 -2
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/base/Exchange.d.ts +4 -2
- package/js/src/base/Exchange.js +14 -0
- package/js/src/bitget.js +1 -1
- package/js/src/coinex.d.ts +2 -2
- package/js/src/coinex.js +42 -39
- package/js/src/pro/cex.js +1 -1
- package/js/src/pro/coinbase.js +31 -0
- package/js/src/pro/mexc.js +7 -7
- package/js/src/whitebit.js +2 -2
- package/package.json +1 -1
package/js/src/whitebit.js
CHANGED
|
@@ -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