ccxt 4.4.22 → 4.4.23
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 +112 -111
- package/dist/ccxt.browser.min.js +4 -4
- package/dist/cjs/ccxt.js +6 -1
- package/dist/cjs/src/abstract/coincatch.js +9 -0
- package/dist/cjs/src/binance.js +69 -44
- package/dist/cjs/src/bitfinex.js +4 -0
- package/dist/cjs/src/bitflyer.js +1 -0
- package/dist/cjs/src/bitrue.js +3 -0
- package/dist/cjs/src/bybit.js +2 -2
- package/dist/cjs/src/cex.js +4 -0
- package/dist/cjs/src/coinbase.js +1 -1
- package/dist/cjs/src/coinbaseexchange.js +3 -0
- package/dist/cjs/src/coincatch.js +5370 -0
- package/dist/cjs/src/coinex.js +63 -1
- package/dist/cjs/src/latoken.js +6 -0
- package/dist/cjs/src/mexc.js +1 -1
- package/dist/cjs/src/oceanex.js +2 -0
- package/dist/cjs/src/okcoin.js +1 -0
- package/dist/cjs/src/poloniex.js +5 -0
- package/dist/cjs/src/pro/coincatch.js +1554 -0
- package/js/ccxt.d.ts +8 -2
- package/js/ccxt.js +6 -2
- package/js/src/abstract/binance.d.ts +21 -0
- package/js/src/abstract/binancecoinm.d.ts +21 -0
- package/js/src/abstract/binanceus.d.ts +21 -0
- package/js/src/abstract/binanceusdm.d.ts +21 -0
- package/js/src/abstract/coincatch.d.ts +97 -0
- package/js/src/abstract/coincatch.js +11 -0
- package/js/src/binance.js +69 -44
- package/js/src/bitfinex.js +4 -0
- package/js/src/bitflyer.js +1 -0
- package/js/src/bitrue.js +3 -0
- package/js/src/bybit.js +2 -2
- package/js/src/cex.js +4 -0
- package/js/src/coinbase.js +1 -1
- package/js/src/coinbaseexchange.js +3 -0
- package/js/src/coincatch.d.ts +130 -0
- package/js/src/coincatch.js +5371 -0
- package/js/src/coinex.d.ts +1 -0
- package/js/src/coinex.js +63 -1
- package/js/src/latoken.js +6 -0
- package/js/src/mexc.js +1 -1
- package/js/src/oceanex.js +2 -0
- package/js/src/okcoin.js +1 -0
- package/js/src/poloniex.js +5 -0
- package/js/src/pro/coincatch.d.ts +57 -0
- package/js/src/pro/coincatch.js +1555 -0
- package/package.json +1 -1
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 { Int, int, Str, Strings, Num, Bool, IndexType, OrderSide, OrderType, MarketType, SubType, Dict, NullableDict, List, NullableList, Fee, OHLCV, OHLCVC, implicitReturnType, Market, Currency, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketInterface, Trade, Order, OrderBook, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, DepositAddressResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarketMarginModes, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, LongShortRatio } from './src/base/types.js';
|
|
6
6
|
import { BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError } from './src/base/errors.js';
|
|
7
|
-
declare const version = "4.4.
|
|
7
|
+
declare const version = "4.4.22";
|
|
8
8
|
import ace from './src/ace.js';
|
|
9
9
|
import alpaca from './src/alpaca.js';
|
|
10
10
|
import ascendex from './src/ascendex.js';
|
|
@@ -46,6 +46,7 @@ import coinbase from './src/coinbase.js';
|
|
|
46
46
|
import coinbaseadvanced from './src/coinbaseadvanced.js';
|
|
47
47
|
import coinbaseexchange from './src/coinbaseexchange.js';
|
|
48
48
|
import coinbaseinternational from './src/coinbaseinternational.js';
|
|
49
|
+
import coincatch from './src/coincatch.js';
|
|
49
50
|
import coincheck from './src/coincheck.js';
|
|
50
51
|
import coinex from './src/coinex.js';
|
|
51
52
|
import coinlist from './src/coinlist.js';
|
|
@@ -141,6 +142,7 @@ import coinbasePro from './src/pro/coinbase.js';
|
|
|
141
142
|
import coinbaseadvancedPro from './src/pro/coinbaseadvanced.js';
|
|
142
143
|
import coinbaseexchangePro from './src/pro/coinbaseexchange.js';
|
|
143
144
|
import coinbaseinternationalPro from './src/pro/coinbaseinternational.js';
|
|
145
|
+
import coincatchPro from './src/pro/coincatch.js';
|
|
144
146
|
import coincheckPro from './src/pro/coincheck.js';
|
|
145
147
|
import coinexPro from './src/pro/coinex.js';
|
|
146
148
|
import coinonePro from './src/pro/coinone.js';
|
|
@@ -227,6 +229,7 @@ declare const exchanges: {
|
|
|
227
229
|
coinbaseadvanced: typeof coinbaseadvanced;
|
|
228
230
|
coinbaseexchange: typeof coinbaseexchange;
|
|
229
231
|
coinbaseinternational: typeof coinbaseinternational;
|
|
232
|
+
coincatch: typeof coincatch;
|
|
230
233
|
coincheck: typeof coincheck;
|
|
231
234
|
coinex: typeof coinex;
|
|
232
235
|
coinlist: typeof coinlist;
|
|
@@ -324,6 +327,7 @@ declare const pro: {
|
|
|
324
327
|
coinbaseadvanced: typeof coinbaseadvancedPro;
|
|
325
328
|
coinbaseexchange: typeof coinbaseexchangePro;
|
|
326
329
|
coinbaseinternational: typeof coinbaseinternationalPro;
|
|
330
|
+
coincatch: typeof coincatchPro;
|
|
327
331
|
coincheck: typeof coincheckPro;
|
|
328
332
|
coinex: typeof coinexPro;
|
|
329
333
|
coinone: typeof coinonePro;
|
|
@@ -403,6 +407,7 @@ declare const ccxt: {
|
|
|
403
407
|
coinbaseadvanced: typeof coinbaseadvancedPro;
|
|
404
408
|
coinbaseexchange: typeof coinbaseexchangePro;
|
|
405
409
|
coinbaseinternational: typeof coinbaseinternationalPro;
|
|
410
|
+
coincatch: typeof coincatchPro;
|
|
406
411
|
coincheck: typeof coincheckPro;
|
|
407
412
|
coinex: typeof coinexPro;
|
|
408
413
|
coinone: typeof coinonePro;
|
|
@@ -490,6 +495,7 @@ declare const ccxt: {
|
|
|
490
495
|
coinbaseadvanced: typeof coinbaseadvanced;
|
|
491
496
|
coinbaseexchange: typeof coinbaseexchange;
|
|
492
497
|
coinbaseinternational: typeof coinbaseinternational;
|
|
498
|
+
coincatch: typeof coincatch;
|
|
493
499
|
coincheck: typeof coincheck;
|
|
494
500
|
coinex: typeof coinex;
|
|
495
501
|
coinlist: typeof coinlist;
|
|
@@ -558,5 +564,5 @@ declare const ccxt: {
|
|
|
558
564
|
zaif: typeof zaif;
|
|
559
565
|
zonda: typeof zonda;
|
|
560
566
|
} & typeof functions & typeof errors;
|
|
561
|
-
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError, Int, int, Str, Strings, Num, Bool, IndexType, OrderSide, OrderType, MarketType, SubType, Dict, NullableDict, List, NullableList, Fee, OHLCV, OHLCVC, implicitReturnType, Market, Currency, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, DepositAddressResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, ace, alpaca, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitcoincom, bitfinex, bitfinex2, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitpanda, bitrue, bitso, bitstamp, bitteam, bitvavo, bl3p, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincheck, coinex, coinlist, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, currencycom, delta, deribit, digifinex, exmo, fmfwio, gate, gateio, gemini, hashkey, hitbtc, hollaex, htx, huobi, huobijp, hyperliquid, idex, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, kuna, latoken, lbank, luno, lykke, mercado, mexc, ndax, novadax, oceanex, okcoin, okx, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, poloniexfutures, probit, timex, tokocrypto, tradeogre, upbit, vertex, wavesexchange, wazirx, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
|
|
567
|
+
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError, Int, int, Str, Strings, Num, Bool, IndexType, OrderSide, OrderType, MarketType, SubType, Dict, NullableDict, List, NullableList, Fee, OHLCV, OHLCVC, implicitReturnType, Market, Currency, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, DepositAddressResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, ace, alpaca, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitcoincom, bitfinex, bitfinex2, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitpanda, bitrue, bitso, bitstamp, bitteam, bitvavo, bl3p, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinlist, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, currencycom, delta, deribit, digifinex, exmo, fmfwio, gate, gateio, gemini, hashkey, hitbtc, hollaex, htx, huobi, huobijp, hyperliquid, idex, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, kuna, latoken, lbank, luno, lykke, mercado, mexc, ndax, novadax, oceanex, okcoin, okx, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, poloniexfutures, probit, timex, tokocrypto, tradeogre, upbit, vertex, wavesexchange, wazirx, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
|
|
562
568
|
export default ccxt;
|
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, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError } from './src/base/errors.js';
|
|
39
39
|
//-----------------------------------------------------------------------------
|
|
40
40
|
// this is updated by vss.js when building
|
|
41
|
-
const version = '4.4.
|
|
41
|
+
const version = '4.4.23';
|
|
42
42
|
Exchange.ccxtVersion = version;
|
|
43
43
|
//-----------------------------------------------------------------------------
|
|
44
44
|
import ace from './src/ace.js';
|
|
@@ -82,6 +82,7 @@ import coinbase from './src/coinbase.js';
|
|
|
82
82
|
import coinbaseadvanced from './src/coinbaseadvanced.js';
|
|
83
83
|
import coinbaseexchange from './src/coinbaseexchange.js';
|
|
84
84
|
import coinbaseinternational from './src/coinbaseinternational.js';
|
|
85
|
+
import coincatch from './src/coincatch.js';
|
|
85
86
|
import coincheck from './src/coincheck.js';
|
|
86
87
|
import coinex from './src/coinex.js';
|
|
87
88
|
import coinlist from './src/coinlist.js';
|
|
@@ -178,6 +179,7 @@ import coinbasePro from './src/pro/coinbase.js';
|
|
|
178
179
|
import coinbaseadvancedPro from './src/pro/coinbaseadvanced.js';
|
|
179
180
|
import coinbaseexchangePro from './src/pro/coinbaseexchange.js';
|
|
180
181
|
import coinbaseinternationalPro from './src/pro/coinbaseinternational.js';
|
|
182
|
+
import coincatchPro from './src/pro/coincatch.js';
|
|
181
183
|
import coincheckPro from './src/pro/coincheck.js';
|
|
182
184
|
import coinexPro from './src/pro/coinex.js';
|
|
183
185
|
import coinonePro from './src/pro/coinone.js';
|
|
@@ -264,6 +266,7 @@ const exchanges = {
|
|
|
264
266
|
'coinbaseadvanced': coinbaseadvanced,
|
|
265
267
|
'coinbaseexchange': coinbaseexchange,
|
|
266
268
|
'coinbaseinternational': coinbaseinternational,
|
|
269
|
+
'coincatch': coincatch,
|
|
267
270
|
'coincheck': coincheck,
|
|
268
271
|
'coinex': coinex,
|
|
269
272
|
'coinlist': coinlist,
|
|
@@ -361,6 +364,7 @@ const pro = {
|
|
|
361
364
|
'coinbaseadvanced': coinbaseadvancedPro,
|
|
362
365
|
'coinbaseexchange': coinbaseexchangePro,
|
|
363
366
|
'coinbaseinternational': coinbaseinternationalPro,
|
|
367
|
+
'coincatch': coincatchPro,
|
|
364
368
|
'coincheck': coincheckPro,
|
|
365
369
|
'coinex': coinexPro,
|
|
366
370
|
'coinone': coinonePro,
|
|
@@ -418,6 +422,6 @@ pro.exchanges = Object.keys(pro);
|
|
|
418
422
|
pro['Exchange'] = Exchange; // now the same for rest and ts
|
|
419
423
|
//-----------------------------------------------------------------------------
|
|
420
424
|
const ccxt = Object.assign({ version, Exchange, Precise, 'exchanges': Object.keys(exchanges), 'pro': pro }, exchanges, functions, errors);
|
|
421
|
-
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError, ace, alpaca, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitcoincom, bitfinex, bitfinex2, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitpanda, bitrue, bitso, bitstamp, bitteam, bitvavo, bl3p, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincheck, coinex, coinlist, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, currencycom, delta, deribit, digifinex, exmo, fmfwio, gate, gateio, gemini, hashkey, hitbtc, hollaex, htx, huobi, huobijp, hyperliquid, idex, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, kuna, latoken, lbank, luno, lykke, mercado, mexc, ndax, novadax, oceanex, okcoin, okx, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, poloniexfutures, probit, timex, tokocrypto, tradeogre, upbit, vertex, wavesexchange, wazirx, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
|
|
425
|
+
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, InsufficientFunds, InvalidAddress, AddressPending, InvalidOrder, OrderNotFound, OrderNotCached, OrderImmediatelyFillable, OrderNotFillable, DuplicateOrderId, ContractUnavailable, NotSupported, InvalidProxySettings, ExchangeClosedByUser, OperationFailed, NetworkError, DDoSProtection, RateLimitExceeded, ExchangeNotAvailable, OnMaintenance, InvalidNonce, ChecksumError, RequestTimeout, BadResponse, NullResponse, CancelPending, UnsubscribeError, ace, alpaca, ascendex, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitcoincom, bitfinex, bitfinex2, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitpanda, bitrue, bitso, bitstamp, bitteam, bitvavo, bl3p, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bybit, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinlist, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, currencycom, delta, deribit, digifinex, exmo, fmfwio, gate, gateio, gemini, hashkey, hitbtc, hollaex, htx, huobi, huobijp, hyperliquid, idex, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, kuna, latoken, lbank, luno, lykke, mercado, mexc, ndax, novadax, oceanex, okcoin, okx, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, poloniexfutures, probit, timex, tokocrypto, tradeogre, upbit, vertex, wavesexchange, wazirx, whitebit, woo, woofipro, xt, yobit, zaif, zonda, };
|
|
422
426
|
export default ccxt;
|
|
423
427
|
//-----------------------------------------------------------------------------
|
|
@@ -212,6 +212,7 @@ interface Exchange {
|
|
|
212
212
|
sapiGetPortfolioAssetIndexPrice(params?: {}): Promise<implicitReturnType>;
|
|
213
213
|
sapiGetPortfolioRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
214
214
|
sapiGetPortfolioMarginAssetLeverage(params?: {}): Promise<implicitReturnType>;
|
|
215
|
+
sapiGetPortfolioBalance(params?: {}): Promise<implicitReturnType>;
|
|
215
216
|
sapiGetStakingProductList(params?: {}): Promise<implicitReturnType>;
|
|
216
217
|
sapiGetStakingPosition(params?: {}): Promise<implicitReturnType>;
|
|
217
218
|
sapiGetStakingStakingRecord(params?: {}): Promise<implicitReturnType>;
|
|
@@ -386,6 +387,7 @@ interface Exchange {
|
|
|
386
387
|
sapiV2GetLoanFlexibleLtvAdjustmentHistory(params?: {}): Promise<implicitReturnType>;
|
|
387
388
|
sapiV2GetLoanFlexibleLoanableData(params?: {}): Promise<implicitReturnType>;
|
|
388
389
|
sapiV2GetLoanFlexibleCollateralData(params?: {}): Promise<implicitReturnType>;
|
|
390
|
+
sapiV2GetPortfolioAccount(params?: {}): Promise<implicitReturnType>;
|
|
389
391
|
sapiV2PostEthStakingEthStake(params?: {}): Promise<implicitReturnType>;
|
|
390
392
|
sapiV2PostSubAccountSubAccountApiIpRestriction(params?: {}): Promise<implicitReturnType>;
|
|
391
393
|
sapiV2PostLoanFlexibleBorrow(params?: {}): Promise<implicitReturnType>;
|
|
@@ -439,6 +441,10 @@ interface Exchange {
|
|
|
439
441
|
dapiPrivateGetCommissionRate(params?: {}): Promise<implicitReturnType>;
|
|
440
442
|
dapiPrivateGetIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
441
443
|
dapiPrivateGetIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
444
|
+
dapiPrivateGetTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
445
|
+
dapiPrivateGetTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
446
|
+
dapiPrivateGetOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
447
|
+
dapiPrivateGetOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
442
448
|
dapiPrivateGetPmExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
443
449
|
dapiPrivateGetPmAccountInfo(params?: {}): Promise<implicitReturnType>;
|
|
444
450
|
dapiPrivatePostPositionSideDual(params?: {}): Promise<implicitReturnType>;
|
|
@@ -688,6 +694,19 @@ interface Exchange {
|
|
|
688
694
|
papiGetRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
689
695
|
papiGetUmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
690
696
|
papiGetCmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
697
|
+
papiGetUmTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
698
|
+
papiGetUmTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
699
|
+
papiGetUmOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
700
|
+
papiGetUmOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
701
|
+
papiGetUmIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
702
|
+
papiGetUmIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
703
|
+
papiGetUmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
704
|
+
papiGetCmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
705
|
+
papiGetUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
706
|
+
papiGetUmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
707
|
+
papiGetUmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
708
|
+
papiGetCmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
709
|
+
papiGetCmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
691
710
|
papiPostUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
692
711
|
papiPostUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
693
712
|
papiPostCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
@@ -709,6 +728,8 @@ interface Exchange {
|
|
|
709
728
|
papiPostMarginRepayDebt(params?: {}): Promise<implicitReturnType>;
|
|
710
729
|
papiPostUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
711
730
|
papiPutListenKey(params?: {}): Promise<implicitReturnType>;
|
|
731
|
+
papiPutUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
732
|
+
papiPutCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
712
733
|
papiDeleteUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
713
734
|
papiDeleteUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
714
735
|
papiDeleteUmAllOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
@@ -212,6 +212,7 @@ interface binance {
|
|
|
212
212
|
sapiGetPortfolioAssetIndexPrice(params?: {}): Promise<implicitReturnType>;
|
|
213
213
|
sapiGetPortfolioRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
214
214
|
sapiGetPortfolioMarginAssetLeverage(params?: {}): Promise<implicitReturnType>;
|
|
215
|
+
sapiGetPortfolioBalance(params?: {}): Promise<implicitReturnType>;
|
|
215
216
|
sapiGetStakingProductList(params?: {}): Promise<implicitReturnType>;
|
|
216
217
|
sapiGetStakingPosition(params?: {}): Promise<implicitReturnType>;
|
|
217
218
|
sapiGetStakingStakingRecord(params?: {}): Promise<implicitReturnType>;
|
|
@@ -386,6 +387,7 @@ interface binance {
|
|
|
386
387
|
sapiV2GetLoanFlexibleLtvAdjustmentHistory(params?: {}): Promise<implicitReturnType>;
|
|
387
388
|
sapiV2GetLoanFlexibleLoanableData(params?: {}): Promise<implicitReturnType>;
|
|
388
389
|
sapiV2GetLoanFlexibleCollateralData(params?: {}): Promise<implicitReturnType>;
|
|
390
|
+
sapiV2GetPortfolioAccount(params?: {}): Promise<implicitReturnType>;
|
|
389
391
|
sapiV2PostEthStakingEthStake(params?: {}): Promise<implicitReturnType>;
|
|
390
392
|
sapiV2PostSubAccountSubAccountApiIpRestriction(params?: {}): Promise<implicitReturnType>;
|
|
391
393
|
sapiV2PostLoanFlexibleBorrow(params?: {}): Promise<implicitReturnType>;
|
|
@@ -439,6 +441,10 @@ interface binance {
|
|
|
439
441
|
dapiPrivateGetCommissionRate(params?: {}): Promise<implicitReturnType>;
|
|
440
442
|
dapiPrivateGetIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
441
443
|
dapiPrivateGetIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
444
|
+
dapiPrivateGetTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
445
|
+
dapiPrivateGetTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
446
|
+
dapiPrivateGetOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
447
|
+
dapiPrivateGetOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
442
448
|
dapiPrivateGetPmExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
443
449
|
dapiPrivateGetPmAccountInfo(params?: {}): Promise<implicitReturnType>;
|
|
444
450
|
dapiPrivatePostPositionSideDual(params?: {}): Promise<implicitReturnType>;
|
|
@@ -688,6 +694,19 @@ interface binance {
|
|
|
688
694
|
papiGetRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
689
695
|
papiGetUmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
690
696
|
papiGetCmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
697
|
+
papiGetUmTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
698
|
+
papiGetUmTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
699
|
+
papiGetUmOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
700
|
+
papiGetUmOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
701
|
+
papiGetUmIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
702
|
+
papiGetUmIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
703
|
+
papiGetUmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
704
|
+
papiGetCmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
705
|
+
papiGetUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
706
|
+
papiGetUmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
707
|
+
papiGetUmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
708
|
+
papiGetCmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
709
|
+
papiGetCmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
691
710
|
papiPostUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
692
711
|
papiPostUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
693
712
|
papiPostCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
@@ -709,6 +728,8 @@ interface binance {
|
|
|
709
728
|
papiPostMarginRepayDebt(params?: {}): Promise<implicitReturnType>;
|
|
710
729
|
papiPostUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
711
730
|
papiPutListenKey(params?: {}): Promise<implicitReturnType>;
|
|
731
|
+
papiPutUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
732
|
+
papiPutCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
712
733
|
papiDeleteUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
713
734
|
papiDeleteUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
714
735
|
papiDeleteUmAllOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
@@ -212,6 +212,7 @@ interface binance {
|
|
|
212
212
|
sapiGetPortfolioAssetIndexPrice(params?: {}): Promise<implicitReturnType>;
|
|
213
213
|
sapiGetPortfolioRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
214
214
|
sapiGetPortfolioMarginAssetLeverage(params?: {}): Promise<implicitReturnType>;
|
|
215
|
+
sapiGetPortfolioBalance(params?: {}): Promise<implicitReturnType>;
|
|
215
216
|
sapiGetStakingProductList(params?: {}): Promise<implicitReturnType>;
|
|
216
217
|
sapiGetStakingPosition(params?: {}): Promise<implicitReturnType>;
|
|
217
218
|
sapiGetStakingStakingRecord(params?: {}): Promise<implicitReturnType>;
|
|
@@ -431,6 +432,7 @@ interface binance {
|
|
|
431
432
|
sapiV2GetLoanFlexibleLtvAdjustmentHistory(params?: {}): Promise<implicitReturnType>;
|
|
432
433
|
sapiV2GetLoanFlexibleLoanableData(params?: {}): Promise<implicitReturnType>;
|
|
433
434
|
sapiV2GetLoanFlexibleCollateralData(params?: {}): Promise<implicitReturnType>;
|
|
435
|
+
sapiV2GetPortfolioAccount(params?: {}): Promise<implicitReturnType>;
|
|
434
436
|
sapiV2GetClAccount(params?: {}): Promise<implicitReturnType>;
|
|
435
437
|
sapiV2GetClAlertHistory(params?: {}): Promise<implicitReturnType>;
|
|
436
438
|
sapiV2PostEthStakingEthStake(params?: {}): Promise<implicitReturnType>;
|
|
@@ -491,6 +493,10 @@ interface binance {
|
|
|
491
493
|
dapiPrivateGetCommissionRate(params?: {}): Promise<implicitReturnType>;
|
|
492
494
|
dapiPrivateGetIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
493
495
|
dapiPrivateGetIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
496
|
+
dapiPrivateGetTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
497
|
+
dapiPrivateGetTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
498
|
+
dapiPrivateGetOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
499
|
+
dapiPrivateGetOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
494
500
|
dapiPrivateGetPmExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
495
501
|
dapiPrivateGetPmAccountInfo(params?: {}): Promise<implicitReturnType>;
|
|
496
502
|
dapiPrivatePostPositionSideDual(params?: {}): Promise<implicitReturnType>;
|
|
@@ -740,6 +746,19 @@ interface binance {
|
|
|
740
746
|
papiGetRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
741
747
|
papiGetUmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
742
748
|
papiGetCmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
749
|
+
papiGetUmTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
750
|
+
papiGetUmTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
751
|
+
papiGetUmOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
752
|
+
papiGetUmOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
753
|
+
papiGetUmIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
754
|
+
papiGetUmIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
755
|
+
papiGetUmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
756
|
+
papiGetCmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
757
|
+
papiGetUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
758
|
+
papiGetUmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
759
|
+
papiGetUmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
760
|
+
papiGetCmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
761
|
+
papiGetCmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
743
762
|
papiPostUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
744
763
|
papiPostUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
745
764
|
papiPostCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
@@ -761,6 +780,8 @@ interface binance {
|
|
|
761
780
|
papiPostMarginRepayDebt(params?: {}): Promise<implicitReturnType>;
|
|
762
781
|
papiPostUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
763
782
|
papiPutListenKey(params?: {}): Promise<implicitReturnType>;
|
|
783
|
+
papiPutUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
784
|
+
papiPutCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
764
785
|
papiDeleteUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
765
786
|
papiDeleteUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
766
787
|
papiDeleteUmAllOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
@@ -212,6 +212,7 @@ interface binance {
|
|
|
212
212
|
sapiGetPortfolioAssetIndexPrice(params?: {}): Promise<implicitReturnType>;
|
|
213
213
|
sapiGetPortfolioRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
214
214
|
sapiGetPortfolioMarginAssetLeverage(params?: {}): Promise<implicitReturnType>;
|
|
215
|
+
sapiGetPortfolioBalance(params?: {}): Promise<implicitReturnType>;
|
|
215
216
|
sapiGetStakingProductList(params?: {}): Promise<implicitReturnType>;
|
|
216
217
|
sapiGetStakingPosition(params?: {}): Promise<implicitReturnType>;
|
|
217
218
|
sapiGetStakingStakingRecord(params?: {}): Promise<implicitReturnType>;
|
|
@@ -386,6 +387,7 @@ interface binance {
|
|
|
386
387
|
sapiV2GetLoanFlexibleLtvAdjustmentHistory(params?: {}): Promise<implicitReturnType>;
|
|
387
388
|
sapiV2GetLoanFlexibleLoanableData(params?: {}): Promise<implicitReturnType>;
|
|
388
389
|
sapiV2GetLoanFlexibleCollateralData(params?: {}): Promise<implicitReturnType>;
|
|
390
|
+
sapiV2GetPortfolioAccount(params?: {}): Promise<implicitReturnType>;
|
|
389
391
|
sapiV2PostEthStakingEthStake(params?: {}): Promise<implicitReturnType>;
|
|
390
392
|
sapiV2PostSubAccountSubAccountApiIpRestriction(params?: {}): Promise<implicitReturnType>;
|
|
391
393
|
sapiV2PostLoanFlexibleBorrow(params?: {}): Promise<implicitReturnType>;
|
|
@@ -439,6 +441,10 @@ interface binance {
|
|
|
439
441
|
dapiPrivateGetCommissionRate(params?: {}): Promise<implicitReturnType>;
|
|
440
442
|
dapiPrivateGetIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
441
443
|
dapiPrivateGetIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
444
|
+
dapiPrivateGetTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
445
|
+
dapiPrivateGetTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
446
|
+
dapiPrivateGetOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
447
|
+
dapiPrivateGetOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
442
448
|
dapiPrivateGetPmExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
443
449
|
dapiPrivateGetPmAccountInfo(params?: {}): Promise<implicitReturnType>;
|
|
444
450
|
dapiPrivatePostPositionSideDual(params?: {}): Promise<implicitReturnType>;
|
|
@@ -688,6 +694,19 @@ interface binance {
|
|
|
688
694
|
papiGetRepayFuturesSwitch(params?: {}): Promise<implicitReturnType>;
|
|
689
695
|
papiGetUmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
690
696
|
papiGetCmAdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
697
|
+
papiGetUmTradeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
698
|
+
papiGetUmTradeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
699
|
+
papiGetUmOrderAsyn(params?: {}): Promise<implicitReturnType>;
|
|
700
|
+
papiGetUmOrderAsynId(params?: {}): Promise<implicitReturnType>;
|
|
701
|
+
papiGetUmIncomeAsyn(params?: {}): Promise<implicitReturnType>;
|
|
702
|
+
papiGetUmIncomeAsynId(params?: {}): Promise<implicitReturnType>;
|
|
703
|
+
papiGetUmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
704
|
+
papiGetCmOrderAmendment(params?: {}): Promise<implicitReturnType>;
|
|
705
|
+
papiGetUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
706
|
+
papiGetUmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
707
|
+
papiGetUmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
708
|
+
papiGetCmAccountConfig(params?: {}): Promise<implicitReturnType>;
|
|
709
|
+
papiGetCmSymbolConfig(params?: {}): Promise<implicitReturnType>;
|
|
691
710
|
papiPostUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
692
711
|
papiPostUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
693
712
|
papiPostCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
@@ -709,6 +728,8 @@ interface binance {
|
|
|
709
728
|
papiPostMarginRepayDebt(params?: {}): Promise<implicitReturnType>;
|
|
710
729
|
papiPostUmFeeBurn(params?: {}): Promise<implicitReturnType>;
|
|
711
730
|
papiPutListenKey(params?: {}): Promise<implicitReturnType>;
|
|
731
|
+
papiPutUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
732
|
+
papiPutCmOrder(params?: {}): Promise<implicitReturnType>;
|
|
712
733
|
papiDeleteUmOrder(params?: {}): Promise<implicitReturnType>;
|
|
713
734
|
papiDeleteUmConditionalOrder(params?: {}): Promise<implicitReturnType>;
|
|
714
735
|
papiDeleteUmAllOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { implicitReturnType } from '../base/types.js';
|
|
2
|
+
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
3
|
+
interface Exchange {
|
|
4
|
+
publicGetApiSpotV1PublicTime(params?: {}): Promise<implicitReturnType>;
|
|
5
|
+
publicGetApiSpotV1PublicCurrencies(params?: {}): Promise<implicitReturnType>;
|
|
6
|
+
publicGetApiSpotV1MarketTicker(params?: {}): Promise<implicitReturnType>;
|
|
7
|
+
publicGetApiSpotV1MarketTickers(params?: {}): Promise<implicitReturnType>;
|
|
8
|
+
publicGetApiSpotV1MarketFills(params?: {}): Promise<implicitReturnType>;
|
|
9
|
+
publicGetApiSpotV1MarketFillsHistory(params?: {}): Promise<implicitReturnType>;
|
|
10
|
+
publicGetApiSpotV1MarketCandles(params?: {}): Promise<implicitReturnType>;
|
|
11
|
+
publicGetApiSpotV1MarketHistoryCandles(params?: {}): Promise<implicitReturnType>;
|
|
12
|
+
publicGetApiSpotV1MarketDepth(params?: {}): Promise<implicitReturnType>;
|
|
13
|
+
publicGetApiSpotV1MarketMergeDepth(params?: {}): Promise<implicitReturnType>;
|
|
14
|
+
publicGetApiMixV1MarketContracts(params?: {}): Promise<implicitReturnType>;
|
|
15
|
+
publicGetApiMixV1MarketMergeDepth(params?: {}): Promise<implicitReturnType>;
|
|
16
|
+
publicGetApiMixV1MarketDepth(params?: {}): Promise<implicitReturnType>;
|
|
17
|
+
publicGetApiMixV1MarketTicker(params?: {}): Promise<implicitReturnType>;
|
|
18
|
+
publicGetApiMixV1MarketTickers(params?: {}): Promise<implicitReturnType>;
|
|
19
|
+
publicGetApiMixV1MarketFills(params?: {}): Promise<implicitReturnType>;
|
|
20
|
+
publicGetApiMixV1MarketFillsHistory(params?: {}): Promise<implicitReturnType>;
|
|
21
|
+
publicGetApiMixV1MarketCandles(params?: {}): Promise<implicitReturnType>;
|
|
22
|
+
publicGetPiMixV1MarketIndex(params?: {}): Promise<implicitReturnType>;
|
|
23
|
+
publicGetApiMixV1MarketFundingTime(params?: {}): Promise<implicitReturnType>;
|
|
24
|
+
publicGetApiMixV1MarketHistoryFundRate(params?: {}): Promise<implicitReturnType>;
|
|
25
|
+
publicGetApiMixV1MarketCurrentFundRate(params?: {}): Promise<implicitReturnType>;
|
|
26
|
+
publicGetApiMixV1MarketOpenInterest(params?: {}): Promise<implicitReturnType>;
|
|
27
|
+
publicGetApiMixV1MarketMarkPrice(params?: {}): Promise<implicitReturnType>;
|
|
28
|
+
publicGetApiMixV1MarketSymbolLeverage(params?: {}): Promise<implicitReturnType>;
|
|
29
|
+
publicGetApiMixV1MarketQueryPositionLever(params?: {}): Promise<implicitReturnType>;
|
|
30
|
+
privateGetApiSpotV1WalletDepositAddress(params?: {}): Promise<implicitReturnType>;
|
|
31
|
+
privateGetPiSpotV1WalletWithdrawalList(params?: {}): Promise<implicitReturnType>;
|
|
32
|
+
privateGetApiSpotV1WalletWithdrawalListV2(params?: {}): Promise<implicitReturnType>;
|
|
33
|
+
privateGetApiSpotV1WalletDepositList(params?: {}): Promise<implicitReturnType>;
|
|
34
|
+
privateGetApiSpotV1AccountGetInfo(params?: {}): Promise<implicitReturnType>;
|
|
35
|
+
privateGetApiSpotV1AccountAssets(params?: {}): Promise<implicitReturnType>;
|
|
36
|
+
privateGetApiSpotV1AccountTransferRecords(params?: {}): Promise<implicitReturnType>;
|
|
37
|
+
privateGetApiMixV1AccountAccount(params?: {}): Promise<implicitReturnType>;
|
|
38
|
+
privateGetApiMixV1AccountAccounts(params?: {}): Promise<implicitReturnType>;
|
|
39
|
+
privateGetApiMixV1PositionSinglePositionV2(params?: {}): Promise<implicitReturnType>;
|
|
40
|
+
privateGetApiMixV1PositionAllPositionV2(params?: {}): Promise<implicitReturnType>;
|
|
41
|
+
privateGetApiMixV1AccountAccountBill(params?: {}): Promise<implicitReturnType>;
|
|
42
|
+
privateGetApiMixV1AccountAccountBusinessBill(params?: {}): Promise<implicitReturnType>;
|
|
43
|
+
privateGetApiMixV1OrderCurrent(params?: {}): Promise<implicitReturnType>;
|
|
44
|
+
privateGetApiMixV1OrderMarginCoinCurrent(params?: {}): Promise<implicitReturnType>;
|
|
45
|
+
privateGetApiMixV1OrderHistory(params?: {}): Promise<implicitReturnType>;
|
|
46
|
+
privateGetApiMixV1OrderHistoryProductType(params?: {}): Promise<implicitReturnType>;
|
|
47
|
+
privateGetApiMixV1OrderDetail(params?: {}): Promise<implicitReturnType>;
|
|
48
|
+
privateGetApiMixV1OrderFills(params?: {}): Promise<implicitReturnType>;
|
|
49
|
+
privateGetApiMixV1OrderAllFills(params?: {}): Promise<implicitReturnType>;
|
|
50
|
+
privateGetApiMixV1PlanCurrentPlan(params?: {}): Promise<implicitReturnType>;
|
|
51
|
+
privateGetApiMixV1PlanHistoryPlan(params?: {}): Promise<implicitReturnType>;
|
|
52
|
+
privatePostApiSpotV1WalletTransferV2(params?: {}): Promise<implicitReturnType>;
|
|
53
|
+
privatePostApiSpotV1WalletWithdrawalV2(params?: {}): Promise<implicitReturnType>;
|
|
54
|
+
privatePostApiSpotV1WalletWithdrawalInnerV2(params?: {}): Promise<implicitReturnType>;
|
|
55
|
+
privatePostApiSpotV1AccountBills(params?: {}): Promise<implicitReturnType>;
|
|
56
|
+
privatePostApiSpotV1TradeOrders(params?: {}): Promise<implicitReturnType>;
|
|
57
|
+
privatePostApiSpotV1TradeBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
58
|
+
privatePostApiSpotV1TradeCancelOrder(params?: {}): Promise<implicitReturnType>;
|
|
59
|
+
privatePostApiSpotV1TradeCancelOrderV2(params?: {}): Promise<implicitReturnType>;
|
|
60
|
+
privatePostApiSpotV1TradeCancelSymbolOrder(params?: {}): Promise<implicitReturnType>;
|
|
61
|
+
privatePostApiSpotV1TradeCancelBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
62
|
+
privatePostApiSpotV1TradeCancelBatchOrdersV2(params?: {}): Promise<implicitReturnType>;
|
|
63
|
+
privatePostApiSpotV1TradeOrderInfo(params?: {}): Promise<implicitReturnType>;
|
|
64
|
+
privatePostApiSpotV1TradeOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
65
|
+
privatePostApiSpotV1TradeHistory(params?: {}): Promise<implicitReturnType>;
|
|
66
|
+
privatePostApiSpotV1TradeFills(params?: {}): Promise<implicitReturnType>;
|
|
67
|
+
privatePostApiSpotV1PlanPlacePlan(params?: {}): Promise<implicitReturnType>;
|
|
68
|
+
privatePostApiSpotV1PlanModifyPlan(params?: {}): Promise<implicitReturnType>;
|
|
69
|
+
privatePostApiSpotV1PlanCancelPlan(params?: {}): Promise<implicitReturnType>;
|
|
70
|
+
privatePostApiSpotV1PlanCurrentPlan(params?: {}): Promise<implicitReturnType>;
|
|
71
|
+
privatePostApiSpotV1PlanHistoryPlan(params?: {}): Promise<implicitReturnType>;
|
|
72
|
+
privatePostApiSpotV1PlanBatchCancelPlan(params?: {}): Promise<implicitReturnType>;
|
|
73
|
+
privatePostApiMixV1AccountOpenCount(params?: {}): Promise<implicitReturnType>;
|
|
74
|
+
privatePostApiMixV1AccountSetLeverage(params?: {}): Promise<implicitReturnType>;
|
|
75
|
+
privatePostApiMixV1AccountSetMargin(params?: {}): Promise<implicitReturnType>;
|
|
76
|
+
privatePostApiMixV1AccountSetMarginMode(params?: {}): Promise<implicitReturnType>;
|
|
77
|
+
privatePostApiMixV1AccountSetPositionMode(params?: {}): Promise<implicitReturnType>;
|
|
78
|
+
privatePostApiMixV1OrderPlaceOrder(params?: {}): Promise<implicitReturnType>;
|
|
79
|
+
privatePostApiMixV1OrderBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
80
|
+
privatePostApiMixV1OrderCancelOrder(params?: {}): Promise<implicitReturnType>;
|
|
81
|
+
privatePostApiMixV1OrderCancelBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
82
|
+
privatePostApiMixV1OrderCancelSymbolOrders(params?: {}): Promise<implicitReturnType>;
|
|
83
|
+
privatePostApiMixV1OrderCancelAllOrders(params?: {}): Promise<implicitReturnType>;
|
|
84
|
+
privatePostApiMixV1PlanPlacePlan(params?: {}): Promise<implicitReturnType>;
|
|
85
|
+
privatePostApiMixV1PlanModifyPlan(params?: {}): Promise<implicitReturnType>;
|
|
86
|
+
privatePostApiMixV1PlanModifyPlanPreset(params?: {}): Promise<implicitReturnType>;
|
|
87
|
+
privatePostApiMixV1PlanPlaceTPSL(params?: {}): Promise<implicitReturnType>;
|
|
88
|
+
privatePostApiMixV1PlanPlaceTrailStop(params?: {}): Promise<implicitReturnType>;
|
|
89
|
+
privatePostApiMixV1PlanPlacePositionsTPSL(params?: {}): Promise<implicitReturnType>;
|
|
90
|
+
privatePostApiMixV1PlanModifyTPSLPlan(params?: {}): Promise<implicitReturnType>;
|
|
91
|
+
privatePostApiMixV1PlanCancelPlan(params?: {}): Promise<implicitReturnType>;
|
|
92
|
+
privatePostApiMixV1PlanCancelSymbolPlan(params?: {}): Promise<implicitReturnType>;
|
|
93
|
+
privatePostApiMixV1PlanCancelAllPlan(params?: {}): Promise<implicitReturnType>;
|
|
94
|
+
}
|
|
95
|
+
declare abstract class Exchange extends _Exchange {
|
|
96
|
+
}
|
|
97
|
+
export default Exchange;
|
|
@@ -0,0 +1,11 @@
|
|
|
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;
|