ccxt 4.4.74 → 4.4.77
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 +3 -3
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/base/Exchange.js +16 -9
- package/dist/cjs/src/binance.js +43 -219
- package/dist/cjs/src/bitget.js +1 -1
- package/dist/cjs/src/bitopro.js +37 -0
- package/dist/cjs/src/bitrue.js +48 -0
- package/dist/cjs/src/coinex.js +3 -0
- package/dist/cjs/src/coinlist.js +90 -1
- package/dist/cjs/src/okx.js +47 -33
- package/dist/cjs/src/paradex.js +3 -12
- package/dist/cjs/src/pro/hyperliquid.js +1 -1
- package/dist/cjs/src/upbit.js +64 -46
- package/dist/cjs/src/xt.js +122 -4
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/abstract/coinlist.d.ts +3 -0
- package/js/src/abstract/myokx.d.ts +4 -0
- package/js/src/abstract/okx.d.ts +4 -0
- package/js/src/abstract/upbit.d.ts +15 -1
- package/js/src/abstract/xt.d.ts +3 -0
- package/js/src/base/Exchange.d.ts +1 -0
- package/js/src/base/Exchange.js +16 -9
- package/js/src/binance.d.ts +2 -0
- package/js/src/binance.js +43 -219
- package/js/src/bitget.js +1 -1
- package/js/src/bitopro.js +37 -0
- package/js/src/bitrue.js +48 -0
- package/js/src/coinex.js +3 -0
- package/js/src/coinlist.d.ts +12 -1
- package/js/src/coinlist.js +90 -1
- package/js/src/okx.js +47 -33
- package/js/src/paradex.js +3 -12
- package/js/src/pro/hyperliquid.js +1 -1
- package/js/src/upbit.js +64 -46
- package/js/src/xt.d.ts +19 -0
- package/js/src/xt.js +122 -4
- package/package.json +1 -1
- package/js/src/abstract/bitcoincom.d.ts +0 -118
- package/js/src/abstract/bitcoincom.js +0 -11
- package/js/src/abstract/bitfinex1.d.ts +0 -72
- package/js/src/abstract/bitfinex1.js +0 -11
- package/js/src/abstract/bitpanda.d.ts +0 -26
- package/js/src/abstract/bitpanda.js +0 -5
- package/js/src/abstract/poloniexfutures.d.ts +0 -51
- package/js/src/abstract/poloniexfutures.js +0 -11
- package/js/src/abstract/wazirx.d.ts +0 -33
- package/js/src/abstract/wazirx.js +0 -11
- package/js/src/bitcoincom.d.ts +0 -4
- package/js/src/bitcoincom.js +0 -18
- package/js/src/bitpanda.d.ts +0 -4
- package/js/src/bitpanda.js +0 -17
- package/js/src/poloniexfutures.d.ts +0 -321
- package/js/src/poloniexfutures.js +0 -1941
- package/js/src/pro/bitcoincom.d.ts +0 -4
- package/js/src/pro/bitcoincom.js +0 -34
- package/js/src/pro/bitpanda.d.ts +0 -4
- package/js/src/pro/bitpanda.js +0 -17
- package/js/src/pro/poloniexfutures.d.ts +0 -108
- package/js/src/pro/poloniexfutures.js +0 -1042
- package/js/src/pro/wazirx.d.ts +0 -102
- package/js/src/pro/wazirx.js +0 -784
- package/js/src/static_dependencies/starknet/utils/json.d.ts +0 -24
- package/js/src/static_dependencies/starknet/utils/json.js +0 -43
package/js/src/xt.js
CHANGED
|
@@ -41,7 +41,7 @@ export default class xt extends Exchange {
|
|
|
41
41
|
'createOrder': true,
|
|
42
42
|
'createPostOnlyOrder': false,
|
|
43
43
|
'createReduceOnlyOrder': true,
|
|
44
|
-
'editOrder':
|
|
44
|
+
'editOrder': true,
|
|
45
45
|
'fetchAccounts': false,
|
|
46
46
|
'fetchBalance': true,
|
|
47
47
|
'fetchBidsAsks': true,
|
|
@@ -228,6 +228,9 @@ export default class xt extends Exchange {
|
|
|
228
228
|
'open-order': 1,
|
|
229
229
|
'order/{orderId}': 1,
|
|
230
230
|
},
|
|
231
|
+
'put': {
|
|
232
|
+
'order/{orderId}': 1,
|
|
233
|
+
},
|
|
231
234
|
},
|
|
232
235
|
'linear': {
|
|
233
236
|
'get': {
|
|
@@ -262,6 +265,7 @@ export default class xt extends Exchange {
|
|
|
262
265
|
'future/trade/v1/order/cancel-all': 1,
|
|
263
266
|
'future/trade/v1/order/create': 1,
|
|
264
267
|
'future/trade/v1/order/create-batch': 1,
|
|
268
|
+
'future/trade/v1/order/update': 1,
|
|
265
269
|
'future/user/v1/account/open': 1,
|
|
266
270
|
'future/user/v1/position/adjust-leverage': 1,
|
|
267
271
|
'future/user/v1/position/auto-margin': 1,
|
|
@@ -305,6 +309,7 @@ export default class xt extends Exchange {
|
|
|
305
309
|
'future/trade/v1/order/cancel-all': 1,
|
|
306
310
|
'future/trade/v1/order/create': 1,
|
|
307
311
|
'future/trade/v1/order/create-batch': 1,
|
|
312
|
+
'future/trade/v1/order/update': 1,
|
|
308
313
|
'future/user/v1/account/open': 1,
|
|
309
314
|
'future/user/v1/position/adjust-leverage': 1,
|
|
310
315
|
'future/user/v1/position/auto-margin': 1,
|
|
@@ -3506,7 +3511,7 @@ export default class xt extends Exchange {
|
|
|
3506
3511
|
// "cancelId": "208322474307982720"
|
|
3507
3512
|
// }
|
|
3508
3513
|
//
|
|
3509
|
-
// swap and future: createOrder, cancelOrder
|
|
3514
|
+
// swap and future: createOrder, cancelOrder, editOrder
|
|
3510
3515
|
//
|
|
3511
3516
|
// {
|
|
3512
3517
|
// "returnCode": 0,
|
|
@@ -3611,6 +3616,14 @@ export default class xt extends Exchange {
|
|
|
3611
3616
|
// "createdTime": 1681273420039
|
|
3612
3617
|
// }
|
|
3613
3618
|
//
|
|
3619
|
+
// spot editOrder
|
|
3620
|
+
//
|
|
3621
|
+
// {
|
|
3622
|
+
// "orderId": "484203027161892224",
|
|
3623
|
+
// "modifyId": "484203544105344000",
|
|
3624
|
+
// "clientModifyId": null
|
|
3625
|
+
// }
|
|
3626
|
+
//
|
|
3614
3627
|
const marketId = this.safeString(order, 'symbol');
|
|
3615
3628
|
const marketType = ('result' in order) || ('positionSide' in order) ? 'contract' : 'spot';
|
|
3616
3629
|
market = this.safeMarket(marketId, market, undefined, marketType);
|
|
@@ -3624,7 +3637,7 @@ export default class xt extends Exchange {
|
|
|
3624
3637
|
return this.safeOrder({
|
|
3625
3638
|
'info': order,
|
|
3626
3639
|
'id': this.safeStringN(order, ['orderId', 'result', 'cancelId', 'entrustId', 'profitId']),
|
|
3627
|
-
'clientOrderId': this.
|
|
3640
|
+
'clientOrderId': this.safeString2(order, 'clientOrderId', 'clientModifyId'),
|
|
3628
3641
|
'timestamp': timestamp,
|
|
3629
3642
|
'datetime': this.iso8601(timestamp),
|
|
3630
3643
|
'lastTradeTimestamp': lastUpdatedTimestamp,
|
|
@@ -4905,6 +4918,108 @@ export default class xt extends Exchange {
|
|
|
4905
4918
|
//
|
|
4906
4919
|
return response; // unify return type
|
|
4907
4920
|
}
|
|
4921
|
+
/**
|
|
4922
|
+
* @method
|
|
4923
|
+
* @name xt#editOrder
|
|
4924
|
+
* @description cancels an order and places a new order
|
|
4925
|
+
* @see https://doc.xt.com/#orderorderUpdate
|
|
4926
|
+
* @see https://doc.xt.com/#futures_orderupdate
|
|
4927
|
+
* @see https://doc.xt.com/#futures_entrustupdateProfit
|
|
4928
|
+
* @param {string} id order id
|
|
4929
|
+
* @param {string} symbol unified symbol of the market to create an order in
|
|
4930
|
+
* @param {string} type 'market' or 'limit'
|
|
4931
|
+
* @param {string} side 'buy' or 'sell'
|
|
4932
|
+
* @param {float} amount how much of the currency you want to trade in units of the base currency
|
|
4933
|
+
* @param {float} [price] the price at which the order is to be fulfilled, in units of the quote currency, ignored in market orders
|
|
4934
|
+
* @param {object} [params] extra parameters specific to the exchange API endpoint
|
|
4935
|
+
* @param {float} [params.stopLoss] price to set a stop-loss on an open position
|
|
4936
|
+
* @param {float} [params.takeProfit] price to set a take-profit on an open position
|
|
4937
|
+
* @returns {object} an [order structure]{@link https://docs.ccxt.com/#/?id=order-structure}
|
|
4938
|
+
*/
|
|
4939
|
+
async editOrder(id, symbol, type, side, amount = undefined, price = undefined, params = {}) {
|
|
4940
|
+
if (amount === undefined) {
|
|
4941
|
+
throw new ArgumentsRequired(this.id + ' editOrder() requires an amount argument');
|
|
4942
|
+
}
|
|
4943
|
+
await this.loadMarkets();
|
|
4944
|
+
const market = this.market(symbol);
|
|
4945
|
+
const request = {};
|
|
4946
|
+
const stopLoss = this.safeNumber2(params, 'stopLoss', 'triggerStopPrice');
|
|
4947
|
+
const takeProfit = this.safeNumber2(params, 'takeProfit', 'triggerProfitPrice');
|
|
4948
|
+
params = this.omit(params, ['stopLoss', 'takeProfit']);
|
|
4949
|
+
const isStopLoss = (stopLoss !== undefined);
|
|
4950
|
+
const isTakeProfit = (takeProfit !== undefined);
|
|
4951
|
+
if (isStopLoss || isTakeProfit) {
|
|
4952
|
+
request['profitId'] = id;
|
|
4953
|
+
}
|
|
4954
|
+
else {
|
|
4955
|
+
request['orderId'] = id;
|
|
4956
|
+
request['price'] = this.priceToPrecision(symbol, price);
|
|
4957
|
+
}
|
|
4958
|
+
let response = undefined;
|
|
4959
|
+
if (market['swap']) {
|
|
4960
|
+
if (isStopLoss) {
|
|
4961
|
+
request['triggerStopPrice'] = this.priceToPrecision(symbol, stopLoss);
|
|
4962
|
+
}
|
|
4963
|
+
else if (takeProfit !== undefined) {
|
|
4964
|
+
request['triggerProfitPrice'] = this.priceToPrecision(symbol, takeProfit);
|
|
4965
|
+
}
|
|
4966
|
+
else {
|
|
4967
|
+
request['origQty'] = this.amountToPrecision(symbol, amount);
|
|
4968
|
+
}
|
|
4969
|
+
let subType = undefined;
|
|
4970
|
+
[subType, params] = this.handleSubTypeAndParams('editOrder', market, params);
|
|
4971
|
+
if (subType === 'inverse') {
|
|
4972
|
+
if (isStopLoss || isTakeProfit) {
|
|
4973
|
+
response = await this.privateInversePostFutureTradeV1EntrustUpdateProfitStop(this.extend(request, params));
|
|
4974
|
+
}
|
|
4975
|
+
else {
|
|
4976
|
+
response = await this.privateInversePostFutureTradeV1OrderUpdate(this.extend(request, params));
|
|
4977
|
+
//
|
|
4978
|
+
// {
|
|
4979
|
+
// "returnCode": 0,
|
|
4980
|
+
// "msgInfo": "success",
|
|
4981
|
+
// "error": null,
|
|
4982
|
+
// "result": "483869474947826752"
|
|
4983
|
+
// }
|
|
4984
|
+
//
|
|
4985
|
+
}
|
|
4986
|
+
}
|
|
4987
|
+
else {
|
|
4988
|
+
if (isStopLoss || isTakeProfit) {
|
|
4989
|
+
response = await this.privateLinearPostFutureTradeV1EntrustUpdateProfitStop(this.extend(request, params));
|
|
4990
|
+
}
|
|
4991
|
+
else {
|
|
4992
|
+
response = await this.privateLinearPostFutureTradeV1OrderUpdate(this.extend(request, params));
|
|
4993
|
+
//
|
|
4994
|
+
// {
|
|
4995
|
+
// "returnCode": 0,
|
|
4996
|
+
// "msgInfo": "success",
|
|
4997
|
+
// "error": null,
|
|
4998
|
+
// "result": "483869474947826752"
|
|
4999
|
+
// }
|
|
5000
|
+
//
|
|
5001
|
+
}
|
|
5002
|
+
}
|
|
5003
|
+
}
|
|
5004
|
+
else {
|
|
5005
|
+
request['quantity'] = this.amountToPrecision(symbol, amount);
|
|
5006
|
+
response = await this.privateSpotPutOrderOrderId(this.extend(request, params));
|
|
5007
|
+
//
|
|
5008
|
+
// {
|
|
5009
|
+
// "rc": 0,
|
|
5010
|
+
// "mc": "SUCCESS",
|
|
5011
|
+
// "ma": [],
|
|
5012
|
+
// "result": {
|
|
5013
|
+
// "orderId": "484203027161892224",
|
|
5014
|
+
// "modifyId": "484203544105344000",
|
|
5015
|
+
// "clientModifyId": null
|
|
5016
|
+
// }
|
|
5017
|
+
// }
|
|
5018
|
+
//
|
|
5019
|
+
}
|
|
5020
|
+
const result = (market['swap']) ? response : this.safeDict(response, 'result', {});
|
|
5021
|
+
return this.parseOrder(result, market);
|
|
5022
|
+
}
|
|
4908
5023
|
handleErrors(code, reason, url, method, headers, body, response, requestHeaders, requestBody) {
|
|
4909
5024
|
//
|
|
4910
5025
|
// spot: error
|
|
@@ -5009,7 +5124,10 @@ export default class xt extends Exchange {
|
|
|
5009
5124
|
body['media'] = id;
|
|
5010
5125
|
}
|
|
5011
5126
|
}
|
|
5012
|
-
|
|
5127
|
+
let isUndefinedBody = ((method === 'GET') || (path === 'order/{orderId}') || (path === 'ws-token'));
|
|
5128
|
+
if ((method === 'PUT') && (endpoint === 'spot')) {
|
|
5129
|
+
isUndefinedBody = false;
|
|
5130
|
+
}
|
|
5013
5131
|
body = isUndefinedBody ? undefined : this.json(body);
|
|
5014
5132
|
let payloadString = undefined;
|
|
5015
5133
|
if ((endpoint === 'spot') || (endpoint === 'user')) {
|
package/package.json
CHANGED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
import { implicitReturnType } from '../base/types.js';
|
|
2
|
-
import _fmfwio from '../fmfwio.js';
|
|
3
|
-
interface fmfwio {
|
|
4
|
-
publicGetPublicCurrency(params?: {}): Promise<implicitReturnType>;
|
|
5
|
-
publicGetPublicCurrencyCurrency(params?: {}): Promise<implicitReturnType>;
|
|
6
|
-
publicGetPublicSymbol(params?: {}): Promise<implicitReturnType>;
|
|
7
|
-
publicGetPublicSymbolSymbol(params?: {}): Promise<implicitReturnType>;
|
|
8
|
-
publicGetPublicTicker(params?: {}): Promise<implicitReturnType>;
|
|
9
|
-
publicGetPublicTickerSymbol(params?: {}): Promise<implicitReturnType>;
|
|
10
|
-
publicGetPublicPriceRate(params?: {}): Promise<implicitReturnType>;
|
|
11
|
-
publicGetPublicPriceHistory(params?: {}): Promise<implicitReturnType>;
|
|
12
|
-
publicGetPublicPriceTicker(params?: {}): Promise<implicitReturnType>;
|
|
13
|
-
publicGetPublicPriceTickerSymbol(params?: {}): Promise<implicitReturnType>;
|
|
14
|
-
publicGetPublicTrades(params?: {}): Promise<implicitReturnType>;
|
|
15
|
-
publicGetPublicTradesSymbol(params?: {}): Promise<implicitReturnType>;
|
|
16
|
-
publicGetPublicOrderbook(params?: {}): Promise<implicitReturnType>;
|
|
17
|
-
publicGetPublicOrderbookSymbol(params?: {}): Promise<implicitReturnType>;
|
|
18
|
-
publicGetPublicCandles(params?: {}): Promise<implicitReturnType>;
|
|
19
|
-
publicGetPublicCandlesSymbol(params?: {}): Promise<implicitReturnType>;
|
|
20
|
-
publicGetPublicConvertedCandles(params?: {}): Promise<implicitReturnType>;
|
|
21
|
-
publicGetPublicConvertedCandlesSymbol(params?: {}): Promise<implicitReturnType>;
|
|
22
|
-
publicGetPublicFuturesInfo(params?: {}): Promise<implicitReturnType>;
|
|
23
|
-
publicGetPublicFuturesInfoSymbol(params?: {}): Promise<implicitReturnType>;
|
|
24
|
-
publicGetPublicFuturesHistoryFunding(params?: {}): Promise<implicitReturnType>;
|
|
25
|
-
publicGetPublicFuturesHistoryFundingSymbol(params?: {}): Promise<implicitReturnType>;
|
|
26
|
-
publicGetPublicFuturesCandlesIndexPrice(params?: {}): Promise<implicitReturnType>;
|
|
27
|
-
publicGetPublicFuturesCandlesIndexPriceSymbol(params?: {}): Promise<implicitReturnType>;
|
|
28
|
-
publicGetPublicFuturesCandlesMarkPrice(params?: {}): Promise<implicitReturnType>;
|
|
29
|
-
publicGetPublicFuturesCandlesMarkPriceSymbol(params?: {}): Promise<implicitReturnType>;
|
|
30
|
-
publicGetPublicFuturesCandlesPremiumIndex(params?: {}): Promise<implicitReturnType>;
|
|
31
|
-
publicGetPublicFuturesCandlesPremiumIndexSymbol(params?: {}): Promise<implicitReturnType>;
|
|
32
|
-
publicGetPublicFuturesCandlesOpenInterest(params?: {}): Promise<implicitReturnType>;
|
|
33
|
-
publicGetPublicFuturesCandlesOpenInterestSymbol(params?: {}): Promise<implicitReturnType>;
|
|
34
|
-
privateGetSpotBalance(params?: {}): Promise<implicitReturnType>;
|
|
35
|
-
privateGetSpotBalanceCurrency(params?: {}): Promise<implicitReturnType>;
|
|
36
|
-
privateGetSpotOrder(params?: {}): Promise<implicitReturnType>;
|
|
37
|
-
privateGetSpotOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
38
|
-
privateGetSpotFee(params?: {}): Promise<implicitReturnType>;
|
|
39
|
-
privateGetSpotFeeSymbol(params?: {}): Promise<implicitReturnType>;
|
|
40
|
-
privateGetSpotHistoryOrder(params?: {}): Promise<implicitReturnType>;
|
|
41
|
-
privateGetSpotHistoryTrade(params?: {}): Promise<implicitReturnType>;
|
|
42
|
-
privateGetMarginAccount(params?: {}): Promise<implicitReturnType>;
|
|
43
|
-
privateGetMarginAccountIsolatedSymbol(params?: {}): Promise<implicitReturnType>;
|
|
44
|
-
privateGetMarginAccountCrossCurrency(params?: {}): Promise<implicitReturnType>;
|
|
45
|
-
privateGetMarginOrder(params?: {}): Promise<implicitReturnType>;
|
|
46
|
-
privateGetMarginOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
47
|
-
privateGetMarginConfig(params?: {}): Promise<implicitReturnType>;
|
|
48
|
-
privateGetMarginHistoryOrder(params?: {}): Promise<implicitReturnType>;
|
|
49
|
-
privateGetMarginHistoryTrade(params?: {}): Promise<implicitReturnType>;
|
|
50
|
-
privateGetMarginHistoryPositions(params?: {}): Promise<implicitReturnType>;
|
|
51
|
-
privateGetMarginHistoryClearing(params?: {}): Promise<implicitReturnType>;
|
|
52
|
-
privateGetFuturesBalance(params?: {}): Promise<implicitReturnType>;
|
|
53
|
-
privateGetFuturesBalanceCurrency(params?: {}): Promise<implicitReturnType>;
|
|
54
|
-
privateGetFuturesAccount(params?: {}): Promise<implicitReturnType>;
|
|
55
|
-
privateGetFuturesAccountIsolatedSymbol(params?: {}): Promise<implicitReturnType>;
|
|
56
|
-
privateGetFuturesOrder(params?: {}): Promise<implicitReturnType>;
|
|
57
|
-
privateGetFuturesOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
58
|
-
privateGetFuturesConfig(params?: {}): Promise<implicitReturnType>;
|
|
59
|
-
privateGetFuturesFee(params?: {}): Promise<implicitReturnType>;
|
|
60
|
-
privateGetFuturesFeeSymbol(params?: {}): Promise<implicitReturnType>;
|
|
61
|
-
privateGetFuturesHistoryOrder(params?: {}): Promise<implicitReturnType>;
|
|
62
|
-
privateGetFuturesHistoryTrade(params?: {}): Promise<implicitReturnType>;
|
|
63
|
-
privateGetFuturesHistoryPositions(params?: {}): Promise<implicitReturnType>;
|
|
64
|
-
privateGetFuturesHistoryClearing(params?: {}): Promise<implicitReturnType>;
|
|
65
|
-
privateGetWalletBalance(params?: {}): Promise<implicitReturnType>;
|
|
66
|
-
privateGetWalletBalanceCurrency(params?: {}): Promise<implicitReturnType>;
|
|
67
|
-
privateGetWalletCryptoAddress(params?: {}): Promise<implicitReturnType>;
|
|
68
|
-
privateGetWalletCryptoAddressRecentDeposit(params?: {}): Promise<implicitReturnType>;
|
|
69
|
-
privateGetWalletCryptoAddressRecentWithdraw(params?: {}): Promise<implicitReturnType>;
|
|
70
|
-
privateGetWalletCryptoAddressCheckMine(params?: {}): Promise<implicitReturnType>;
|
|
71
|
-
privateGetWalletTransactions(params?: {}): Promise<implicitReturnType>;
|
|
72
|
-
privateGetWalletTransactionsTxId(params?: {}): Promise<implicitReturnType>;
|
|
73
|
-
privateGetWalletCryptoFeeEstimate(params?: {}): Promise<implicitReturnType>;
|
|
74
|
-
privateGetWalletAirdrops(params?: {}): Promise<implicitReturnType>;
|
|
75
|
-
privateGetWalletAmountLocks(params?: {}): Promise<implicitReturnType>;
|
|
76
|
-
privateGetSubAccount(params?: {}): Promise<implicitReturnType>;
|
|
77
|
-
privateGetSubAccountAcl(params?: {}): Promise<implicitReturnType>;
|
|
78
|
-
privateGetSubAccountBalanceSubAccID(params?: {}): Promise<implicitReturnType>;
|
|
79
|
-
privateGetSubAccountCryptoAddressSubAccIDCurrency(params?: {}): Promise<implicitReturnType>;
|
|
80
|
-
privatePostSpotOrder(params?: {}): Promise<implicitReturnType>;
|
|
81
|
-
privatePostSpotOrderList(params?: {}): Promise<implicitReturnType>;
|
|
82
|
-
privatePostMarginOrder(params?: {}): Promise<implicitReturnType>;
|
|
83
|
-
privatePostMarginOrderList(params?: {}): Promise<implicitReturnType>;
|
|
84
|
-
privatePostFuturesOrder(params?: {}): Promise<implicitReturnType>;
|
|
85
|
-
privatePostFuturesOrderList(params?: {}): Promise<implicitReturnType>;
|
|
86
|
-
privatePostWalletCryptoAddress(params?: {}): Promise<implicitReturnType>;
|
|
87
|
-
privatePostWalletCryptoWithdraw(params?: {}): Promise<implicitReturnType>;
|
|
88
|
-
privatePostWalletConvert(params?: {}): Promise<implicitReturnType>;
|
|
89
|
-
privatePostWalletTransfer(params?: {}): Promise<implicitReturnType>;
|
|
90
|
-
privatePostWalletInternalWithdraw(params?: {}): Promise<implicitReturnType>;
|
|
91
|
-
privatePostWalletCryptoCheckOffchainAvailable(params?: {}): Promise<implicitReturnType>;
|
|
92
|
-
privatePostWalletCryptoFeesEstimate(params?: {}): Promise<implicitReturnType>;
|
|
93
|
-
privatePostWalletAirdropsIdClaim(params?: {}): Promise<implicitReturnType>;
|
|
94
|
-
privatePostSubAccountFreeze(params?: {}): Promise<implicitReturnType>;
|
|
95
|
-
privatePostSubAccountActivate(params?: {}): Promise<implicitReturnType>;
|
|
96
|
-
privatePostSubAccountTransfer(params?: {}): Promise<implicitReturnType>;
|
|
97
|
-
privatePostSubAccountAcl(params?: {}): Promise<implicitReturnType>;
|
|
98
|
-
privatePatchSpotOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
99
|
-
privatePatchMarginOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
100
|
-
privatePatchFuturesOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
101
|
-
privateDeleteSpotOrder(params?: {}): Promise<implicitReturnType>;
|
|
102
|
-
privateDeleteSpotOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
103
|
-
privateDeleteMarginPosition(params?: {}): Promise<implicitReturnType>;
|
|
104
|
-
privateDeleteMarginPositionIsolatedSymbol(params?: {}): Promise<implicitReturnType>;
|
|
105
|
-
privateDeleteMarginOrder(params?: {}): Promise<implicitReturnType>;
|
|
106
|
-
privateDeleteMarginOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
107
|
-
privateDeleteFuturesPosition(params?: {}): Promise<implicitReturnType>;
|
|
108
|
-
privateDeleteFuturesPositionMarginModeSymbol(params?: {}): Promise<implicitReturnType>;
|
|
109
|
-
privateDeleteFuturesOrder(params?: {}): Promise<implicitReturnType>;
|
|
110
|
-
privateDeleteFuturesOrderClientOrderId(params?: {}): Promise<implicitReturnType>;
|
|
111
|
-
privateDeleteWalletCryptoWithdrawId(params?: {}): Promise<implicitReturnType>;
|
|
112
|
-
privatePutMarginAccountIsolatedSymbol(params?: {}): Promise<implicitReturnType>;
|
|
113
|
-
privatePutFuturesAccountIsolatedSymbol(params?: {}): Promise<implicitReturnType>;
|
|
114
|
-
privatePutWalletCryptoWithdrawId(params?: {}): Promise<implicitReturnType>;
|
|
115
|
-
}
|
|
116
|
-
declare abstract class fmfwio extends _fmfwio {
|
|
117
|
-
}
|
|
118
|
-
export default fmfwio;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// ----------------------------------------------------------------------------
|
|
2
|
-
|
|
3
|
-
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
-
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
-
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
|
-
|
|
7
|
-
// -------------------------------------------------------------------------------
|
|
8
|
-
import _fmfwio from '../fmfwio.js';
|
|
9
|
-
class fmfwio extends _fmfwio {
|
|
10
|
-
}
|
|
11
|
-
export default fmfwio;
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { implicitReturnType } from '../base/types.js';
|
|
2
|
-
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
3
|
-
interface Exchange {
|
|
4
|
-
v2GetPlatformStatus(params?: {}): Promise<implicitReturnType>;
|
|
5
|
-
v2GetTickers(params?: {}): Promise<implicitReturnType>;
|
|
6
|
-
v2GetTickerSymbol(params?: {}): Promise<implicitReturnType>;
|
|
7
|
-
v2GetTickersHist(params?: {}): Promise<implicitReturnType>;
|
|
8
|
-
v2GetTradesSymbolHist(params?: {}): Promise<implicitReturnType>;
|
|
9
|
-
v2GetBookSymbolPrecision(params?: {}): Promise<implicitReturnType>;
|
|
10
|
-
v2GetBookSymbolP0(params?: {}): Promise<implicitReturnType>;
|
|
11
|
-
v2GetBookSymbolP1(params?: {}): Promise<implicitReturnType>;
|
|
12
|
-
v2GetBookSymbolP2(params?: {}): Promise<implicitReturnType>;
|
|
13
|
-
v2GetBookSymbolP3(params?: {}): Promise<implicitReturnType>;
|
|
14
|
-
v2GetBookSymbolR0(params?: {}): Promise<implicitReturnType>;
|
|
15
|
-
v2GetStats1KeySizeSymbolSideSection(params?: {}): Promise<implicitReturnType>;
|
|
16
|
-
v2GetStats1KeySizeSymbolSection(params?: {}): Promise<implicitReturnType>;
|
|
17
|
-
v2GetStats1KeySizeSymbolLongLast(params?: {}): Promise<implicitReturnType>;
|
|
18
|
-
v2GetStats1KeySizeSymbolLongHist(params?: {}): Promise<implicitReturnType>;
|
|
19
|
-
v2GetStats1KeySizeSymbolShortLast(params?: {}): Promise<implicitReturnType>;
|
|
20
|
-
v2GetStats1KeySizeSymbolShortHist(params?: {}): Promise<implicitReturnType>;
|
|
21
|
-
v2GetCandlesTradeTimeframeSymbolSection(params?: {}): Promise<implicitReturnType>;
|
|
22
|
-
v2GetCandlesTradeTimeframeSymbolLast(params?: {}): Promise<implicitReturnType>;
|
|
23
|
-
v2GetCandlesTradeTimeframeSymbolHist(params?: {}): Promise<implicitReturnType>;
|
|
24
|
-
publicGetBookSymbol(params?: {}): Promise<implicitReturnType>;
|
|
25
|
-
publicGetLendbookCurrency(params?: {}): Promise<implicitReturnType>;
|
|
26
|
-
publicGetLendsCurrency(params?: {}): Promise<implicitReturnType>;
|
|
27
|
-
publicGetPubtickerSymbol(params?: {}): Promise<implicitReturnType>;
|
|
28
|
-
publicGetStatsSymbol(params?: {}): Promise<implicitReturnType>;
|
|
29
|
-
publicGetSymbols(params?: {}): Promise<implicitReturnType>;
|
|
30
|
-
publicGetSymbolsDetails(params?: {}): Promise<implicitReturnType>;
|
|
31
|
-
publicGetTickers(params?: {}): Promise<implicitReturnType>;
|
|
32
|
-
publicGetTradesSymbol(params?: {}): Promise<implicitReturnType>;
|
|
33
|
-
privatePostAccountFees(params?: {}): Promise<implicitReturnType>;
|
|
34
|
-
privatePostAccountInfos(params?: {}): Promise<implicitReturnType>;
|
|
35
|
-
privatePostBalances(params?: {}): Promise<implicitReturnType>;
|
|
36
|
-
privatePostBasketManage(params?: {}): Promise<implicitReturnType>;
|
|
37
|
-
privatePostCredits(params?: {}): Promise<implicitReturnType>;
|
|
38
|
-
privatePostDepositNew(params?: {}): Promise<implicitReturnType>;
|
|
39
|
-
privatePostFundingClose(params?: {}): Promise<implicitReturnType>;
|
|
40
|
-
privatePostHistory(params?: {}): Promise<implicitReturnType>;
|
|
41
|
-
privatePostHistoryMovements(params?: {}): Promise<implicitReturnType>;
|
|
42
|
-
privatePostKeyInfo(params?: {}): Promise<implicitReturnType>;
|
|
43
|
-
privatePostMarginInfos(params?: {}): Promise<implicitReturnType>;
|
|
44
|
-
privatePostMytrades(params?: {}): Promise<implicitReturnType>;
|
|
45
|
-
privatePostMytradesFunding(params?: {}): Promise<implicitReturnType>;
|
|
46
|
-
privatePostOfferCancel(params?: {}): Promise<implicitReturnType>;
|
|
47
|
-
privatePostOfferNew(params?: {}): Promise<implicitReturnType>;
|
|
48
|
-
privatePostOfferStatus(params?: {}): Promise<implicitReturnType>;
|
|
49
|
-
privatePostOffers(params?: {}): Promise<implicitReturnType>;
|
|
50
|
-
privatePostOffersHist(params?: {}): Promise<implicitReturnType>;
|
|
51
|
-
privatePostOrderCancel(params?: {}): Promise<implicitReturnType>;
|
|
52
|
-
privatePostOrderCancelAll(params?: {}): Promise<implicitReturnType>;
|
|
53
|
-
privatePostOrderCancelMulti(params?: {}): Promise<implicitReturnType>;
|
|
54
|
-
privatePostOrderCancelReplace(params?: {}): Promise<implicitReturnType>;
|
|
55
|
-
privatePostOrderNew(params?: {}): Promise<implicitReturnType>;
|
|
56
|
-
privatePostOrderNewMulti(params?: {}): Promise<implicitReturnType>;
|
|
57
|
-
privatePostOrderStatus(params?: {}): Promise<implicitReturnType>;
|
|
58
|
-
privatePostOrders(params?: {}): Promise<implicitReturnType>;
|
|
59
|
-
privatePostOrdersHist(params?: {}): Promise<implicitReturnType>;
|
|
60
|
-
privatePostPositionClaim(params?: {}): Promise<implicitReturnType>;
|
|
61
|
-
privatePostPositionClose(params?: {}): Promise<implicitReturnType>;
|
|
62
|
-
privatePostPositions(params?: {}): Promise<implicitReturnType>;
|
|
63
|
-
privatePostSummary(params?: {}): Promise<implicitReturnType>;
|
|
64
|
-
privatePostTakenFunds(params?: {}): Promise<implicitReturnType>;
|
|
65
|
-
privatePostTotalTakenFunds(params?: {}): Promise<implicitReturnType>;
|
|
66
|
-
privatePostTransfer(params?: {}): Promise<implicitReturnType>;
|
|
67
|
-
privatePostUnusedTakenFunds(params?: {}): Promise<implicitReturnType>;
|
|
68
|
-
privatePostWithdraw(params?: {}): Promise<implicitReturnType>;
|
|
69
|
-
}
|
|
70
|
-
declare abstract class Exchange extends _Exchange {
|
|
71
|
-
}
|
|
72
|
-
export default Exchange;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// ----------------------------------------------------------------------------
|
|
2
|
-
|
|
3
|
-
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
-
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
-
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
|
-
|
|
7
|
-
// -------------------------------------------------------------------------------
|
|
8
|
-
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
9
|
-
class Exchange extends _Exchange {
|
|
10
|
-
}
|
|
11
|
-
export default Exchange;
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { implicitReturnType } from '../base/types.js';
|
|
2
|
-
import _onetrading from '../onetrading.js';
|
|
3
|
-
interface onetrading {
|
|
4
|
-
publicGetCurrencies(params?: {}): Promise<implicitReturnType>;
|
|
5
|
-
publicGetCandlesticksInstrumentCode(params?: {}): Promise<implicitReturnType>;
|
|
6
|
-
publicGetFees(params?: {}): Promise<implicitReturnType>;
|
|
7
|
-
publicGetInstruments(params?: {}): Promise<implicitReturnType>;
|
|
8
|
-
publicGetOrderBookInstrumentCode(params?: {}): Promise<implicitReturnType>;
|
|
9
|
-
publicGetMarketTicker(params?: {}): Promise<implicitReturnType>;
|
|
10
|
-
publicGetMarketTickerInstrumentCode(params?: {}): Promise<implicitReturnType>;
|
|
11
|
-
publicGetTime(params?: {}): Promise<implicitReturnType>;
|
|
12
|
-
privateGetAccountBalances(params?: {}): Promise<implicitReturnType>;
|
|
13
|
-
privateGetAccountFees(params?: {}): Promise<implicitReturnType>;
|
|
14
|
-
privateGetAccountOrders(params?: {}): Promise<implicitReturnType>;
|
|
15
|
-
privateGetAccountOrdersOrderId(params?: {}): Promise<implicitReturnType>;
|
|
16
|
-
privateGetAccountOrdersOrderIdTrades(params?: {}): Promise<implicitReturnType>;
|
|
17
|
-
privateGetAccountTrades(params?: {}): Promise<implicitReturnType>;
|
|
18
|
-
privateGetAccountTradesTradeId(params?: {}): Promise<implicitReturnType>;
|
|
19
|
-
privatePostAccountOrders(params?: {}): Promise<implicitReturnType>;
|
|
20
|
-
privateDeleteAccountOrders(params?: {}): Promise<implicitReturnType>;
|
|
21
|
-
privateDeleteAccountOrdersOrderId(params?: {}): Promise<implicitReturnType>;
|
|
22
|
-
privateDeleteAccountOrdersClientClientId(params?: {}): Promise<implicitReturnType>;
|
|
23
|
-
}
|
|
24
|
-
declare abstract class onetrading extends _onetrading {
|
|
25
|
-
}
|
|
26
|
-
export default onetrading;
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { implicitReturnType } from '../base/types.js';
|
|
2
|
-
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
3
|
-
interface Exchange {
|
|
4
|
-
publicGetContractsActive(params?: {}): Promise<implicitReturnType>;
|
|
5
|
-
publicGetContractsSymbol(params?: {}): Promise<implicitReturnType>;
|
|
6
|
-
publicGetTicker(params?: {}): Promise<implicitReturnType>;
|
|
7
|
-
publicGetTickers(params?: {}): Promise<implicitReturnType>;
|
|
8
|
-
publicGetLevel2Snapshot(params?: {}): Promise<implicitReturnType>;
|
|
9
|
-
publicGetLevel2Depth(params?: {}): Promise<implicitReturnType>;
|
|
10
|
-
publicGetLevel2MessageQuery(params?: {}): Promise<implicitReturnType>;
|
|
11
|
-
publicGetLevel3Snapshot(params?: {}): Promise<implicitReturnType>;
|
|
12
|
-
publicGetTradeHistory(params?: {}): Promise<implicitReturnType>;
|
|
13
|
-
publicGetInterestQuery(params?: {}): Promise<implicitReturnType>;
|
|
14
|
-
publicGetIndexQuery(params?: {}): Promise<implicitReturnType>;
|
|
15
|
-
publicGetMarkPriceSymbolCurrent(params?: {}): Promise<implicitReturnType>;
|
|
16
|
-
publicGetPremiumQuery(params?: {}): Promise<implicitReturnType>;
|
|
17
|
-
publicGetFundingRateSymbolCurrent(params?: {}): Promise<implicitReturnType>;
|
|
18
|
-
publicGetTimestamp(params?: {}): Promise<implicitReturnType>;
|
|
19
|
-
publicGetStatus(params?: {}): Promise<implicitReturnType>;
|
|
20
|
-
publicGetKlineQuery(params?: {}): Promise<implicitReturnType>;
|
|
21
|
-
publicPostBulletPublic(params?: {}): Promise<implicitReturnType>;
|
|
22
|
-
privateGetAccountOverview(params?: {}): Promise<implicitReturnType>;
|
|
23
|
-
privateGetTransactionHistory(params?: {}): Promise<implicitReturnType>;
|
|
24
|
-
privateGetMaxActiveOrders(params?: {}): Promise<implicitReturnType>;
|
|
25
|
-
privateGetMaxRiskLimit(params?: {}): Promise<implicitReturnType>;
|
|
26
|
-
privateGetUserFeeRate(params?: {}): Promise<implicitReturnType>;
|
|
27
|
-
privateGetMarginTypeQuery(params?: {}): Promise<implicitReturnType>;
|
|
28
|
-
privateGetOrders(params?: {}): Promise<implicitReturnType>;
|
|
29
|
-
privateGetStopOrders(params?: {}): Promise<implicitReturnType>;
|
|
30
|
-
privateGetRecentDoneOrders(params?: {}): Promise<implicitReturnType>;
|
|
31
|
-
privateGetOrdersOrderId(params?: {}): Promise<implicitReturnType>;
|
|
32
|
-
privateGetClientOrderIdClientOid(params?: {}): Promise<implicitReturnType>;
|
|
33
|
-
privateGetFills(params?: {}): Promise<implicitReturnType>;
|
|
34
|
-
privateGetOpenOrderStatistics(params?: {}): Promise<implicitReturnType>;
|
|
35
|
-
privateGetPosition(params?: {}): Promise<implicitReturnType>;
|
|
36
|
-
privateGetPositions(params?: {}): Promise<implicitReturnType>;
|
|
37
|
-
privateGetFundingHistory(params?: {}): Promise<implicitReturnType>;
|
|
38
|
-
privatePostOrders(params?: {}): Promise<implicitReturnType>;
|
|
39
|
-
privatePostBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
40
|
-
privatePostPositionMarginAutoDepositStatus(params?: {}): Promise<implicitReturnType>;
|
|
41
|
-
privatePostPositionMarginDepositMargin(params?: {}): Promise<implicitReturnType>;
|
|
42
|
-
privatePostPositionMarginWithdrawMargin(params?: {}): Promise<implicitReturnType>;
|
|
43
|
-
privatePostBulletPrivate(params?: {}): Promise<implicitReturnType>;
|
|
44
|
-
privatePostMarginTypeChange(params?: {}): Promise<implicitReturnType>;
|
|
45
|
-
privateDeleteOrdersOrderId(params?: {}): Promise<implicitReturnType>;
|
|
46
|
-
privateDeleteOrders(params?: {}): Promise<implicitReturnType>;
|
|
47
|
-
privateDeleteStopOrders(params?: {}): Promise<implicitReturnType>;
|
|
48
|
-
}
|
|
49
|
-
declare abstract class Exchange extends _Exchange {
|
|
50
|
-
}
|
|
51
|
-
export default Exchange;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// ----------------------------------------------------------------------------
|
|
2
|
-
|
|
3
|
-
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
-
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
-
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
|
-
|
|
7
|
-
// -------------------------------------------------------------------------------
|
|
8
|
-
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
9
|
-
class Exchange extends _Exchange {
|
|
10
|
-
}
|
|
11
|
-
export default Exchange;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { implicitReturnType } from '../base/types.js';
|
|
2
|
-
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
3
|
-
interface Exchange {
|
|
4
|
-
publicGetExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
5
|
-
publicGetDepth(params?: {}): Promise<implicitReturnType>;
|
|
6
|
-
publicGetPing(params?: {}): Promise<implicitReturnType>;
|
|
7
|
-
publicGetSystemStatus(params?: {}): Promise<implicitReturnType>;
|
|
8
|
-
publicGetTickers24hr(params?: {}): Promise<implicitReturnType>;
|
|
9
|
-
publicGetTicker24hr(params?: {}): Promise<implicitReturnType>;
|
|
10
|
-
publicGetTime(params?: {}): Promise<implicitReturnType>;
|
|
11
|
-
publicGetTrades(params?: {}): Promise<implicitReturnType>;
|
|
12
|
-
publicGetKlines(params?: {}): Promise<implicitReturnType>;
|
|
13
|
-
privateGetAccount(params?: {}): Promise<implicitReturnType>;
|
|
14
|
-
privateGetAllOrders(params?: {}): Promise<implicitReturnType>;
|
|
15
|
-
privateGetFunds(params?: {}): Promise<implicitReturnType>;
|
|
16
|
-
privateGetHistoricalTrades(params?: {}): Promise<implicitReturnType>;
|
|
17
|
-
privateGetOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
18
|
-
privateGetOrder(params?: {}): Promise<implicitReturnType>;
|
|
19
|
-
privateGetMyTrades(params?: {}): Promise<implicitReturnType>;
|
|
20
|
-
privateGetCoins(params?: {}): Promise<implicitReturnType>;
|
|
21
|
-
privateGetCryptoWithdraws(params?: {}): Promise<implicitReturnType>;
|
|
22
|
-
privateGetCryptoDepositsAddress(params?: {}): Promise<implicitReturnType>;
|
|
23
|
-
privateGetSubAccountFundTransferHistory(params?: {}): Promise<implicitReturnType>;
|
|
24
|
-
privateGetSubAccountAccounts(params?: {}): Promise<implicitReturnType>;
|
|
25
|
-
privatePostOrder(params?: {}): Promise<implicitReturnType>;
|
|
26
|
-
privatePostOrderTest(params?: {}): Promise<implicitReturnType>;
|
|
27
|
-
privatePostCreateAuthToken(params?: {}): Promise<implicitReturnType>;
|
|
28
|
-
privateDeleteOrder(params?: {}): Promise<implicitReturnType>;
|
|
29
|
-
privateDeleteOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
30
|
-
}
|
|
31
|
-
declare abstract class Exchange extends _Exchange {
|
|
32
|
-
}
|
|
33
|
-
export default Exchange;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
// ----------------------------------------------------------------------------
|
|
2
|
-
|
|
3
|
-
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
-
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
-
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
|
-
|
|
7
|
-
// -------------------------------------------------------------------------------
|
|
8
|
-
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
9
|
-
class Exchange extends _Exchange {
|
|
10
|
-
}
|
|
11
|
-
export default Exchange;
|
package/js/src/bitcoincom.d.ts
DELETED
package/js/src/bitcoincom.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
// ----------------------------------------------------------------------------
|
|
2
|
-
|
|
3
|
-
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
-
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
-
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
|
-
|
|
7
|
-
// ---------------------------------------------------------------------------
|
|
8
|
-
import fmfwio from './fmfwio.js';
|
|
9
|
-
// ---------------------------------------------------------------------------
|
|
10
|
-
export default class bitcoincom extends fmfwio {
|
|
11
|
-
describe() {
|
|
12
|
-
return this.deepExtend(super.describe(), {
|
|
13
|
-
'id': 'bitcoincom',
|
|
14
|
-
'name': 'Bitcoin.com',
|
|
15
|
-
'alias': true,
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
}
|
package/js/src/bitpanda.d.ts
DELETED
package/js/src/bitpanda.js
DELETED
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
// ----------------------------------------------------------------------------
|
|
2
|
-
|
|
3
|
-
// PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN:
|
|
4
|
-
// https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code
|
|
5
|
-
// EDIT THE CORRESPONDENT .ts FILE INSTEAD
|
|
6
|
-
|
|
7
|
-
// ---------------------------------------------------------------------------
|
|
8
|
-
import onetrading from './onetrading.js';
|
|
9
|
-
// ---------------------------------------------------------------------------
|
|
10
|
-
export default class bitpanda extends onetrading {
|
|
11
|
-
describe() {
|
|
12
|
-
return this.deepExtend(super.describe(), {
|
|
13
|
-
'id': 'bitpanda',
|
|
14
|
-
'alias': true,
|
|
15
|
-
});
|
|
16
|
-
}
|
|
17
|
-
}
|