ccxt 4.5.31 → 4.5.32
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 +6 -5
- package/dist/ccxt.browser.min.js +7 -7
- package/dist/cjs/ccxt.js +6 -1
- package/dist/cjs/src/abstract/aster.js +11 -0
- package/dist/cjs/src/aster.js +3802 -0
- package/dist/cjs/src/backpack.js +1 -1
- package/dist/cjs/src/base/Exchange.js +19 -1
- package/dist/cjs/src/bigone.js +1 -1
- package/dist/cjs/src/binance.js +1 -0
- package/dist/cjs/src/bingx.js +73 -0
- package/dist/cjs/src/cryptomus.js +1 -1
- package/dist/cjs/src/okx.js +14 -5
- package/dist/cjs/src/pro/aster.js +1046 -0
- package/dist/cjs/src/pro/dydx.js +1 -1
- package/js/ccxt.d.ts +8 -2
- package/js/ccxt.js +6 -2
- package/js/src/abstract/aster.d.ts +88 -0
- package/js/src/abstract/aster.js +11 -0
- package/js/src/abstract/binance.d.ts +1 -0
- package/js/src/abstract/binancecoinm.d.ts +1 -0
- package/js/src/abstract/binanceus.d.ts +1 -0
- package/js/src/abstract/binanceusdm.d.ts +1 -0
- package/js/src/aster.d.ts +563 -0
- package/js/src/aster.js +3801 -0
- package/js/src/backpack.js +1 -1
- package/js/src/base/Exchange.d.ts +1 -0
- package/js/src/base/Exchange.js +19 -0
- package/js/src/bigone.js +1 -1
- package/js/src/binance.js +1 -0
- package/js/src/bingx.d.ts +12 -1
- package/js/src/bingx.js +73 -0
- package/js/src/cryptomus.js +1 -1
- package/js/src/okx.js +14 -5
- package/js/src/pro/aster.d.ts +273 -0
- package/js/src/pro/aster.js +1045 -0
- package/js/src/pro/dydx.js +1 -1
- package/package.json +1 -1
package/dist/cjs/src/pro/dydx.js
CHANGED
|
@@ -97,7 +97,7 @@ class dydx extends dydx$1["default"] {
|
|
|
97
97
|
// "size": "0.024",
|
|
98
98
|
// "price": "114581",
|
|
99
99
|
// "type": "LIMIT",
|
|
100
|
-
// "createdAt": "2025-08-04T00:42:07.
|
|
100
|
+
// "createdAt": "2025-08-04T00:42:07.119Z",
|
|
101
101
|
// "createdAtHeight": "45487245"
|
|
102
102
|
// }
|
|
103
103
|
// ]
|
package/js/ccxt.d.ts
CHANGED
|
@@ -4,11 +4,12 @@ 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, 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, OrderBooks, OpenInterests, ConstructorArgs } from './src/base/types.js';
|
|
6
6
|
import { BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, 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.5.
|
|
7
|
+
declare const version = "4.5.31";
|
|
8
8
|
import alpaca from './src/alpaca.js';
|
|
9
9
|
import apex from './src/apex.js';
|
|
10
10
|
import arkham from './src/arkham.js';
|
|
11
11
|
import ascendex from './src/ascendex.js';
|
|
12
|
+
import aster from './src/aster.js';
|
|
12
13
|
import backpack from './src/backpack.js';
|
|
13
14
|
import bequant from './src/bequant.js';
|
|
14
15
|
import bigone from './src/bigone.js';
|
|
@@ -119,6 +120,7 @@ import alpacaPro from './src/pro/alpaca.js';
|
|
|
119
120
|
import apexPro from './src/pro/apex.js';
|
|
120
121
|
import arkhamPro from './src/pro/arkham.js';
|
|
121
122
|
import ascendexPro from './src/pro/ascendex.js';
|
|
123
|
+
import asterPro from './src/pro/aster.js';
|
|
122
124
|
import backpackPro from './src/pro/backpack.js';
|
|
123
125
|
import bequantPro from './src/pro/bequant.js';
|
|
124
126
|
import binancePro from './src/pro/binance.js';
|
|
@@ -197,6 +199,7 @@ declare const exchanges: {
|
|
|
197
199
|
apex: typeof apex;
|
|
198
200
|
arkham: typeof arkham;
|
|
199
201
|
ascendex: typeof ascendex;
|
|
202
|
+
aster: typeof aster;
|
|
200
203
|
backpack: typeof backpack;
|
|
201
204
|
bequant: typeof bequant;
|
|
202
205
|
bigone: typeof bigone;
|
|
@@ -309,6 +312,7 @@ declare const pro: {
|
|
|
309
312
|
apex: typeof apexPro;
|
|
310
313
|
arkham: typeof arkhamPro;
|
|
311
314
|
ascendex: typeof ascendexPro;
|
|
315
|
+
aster: typeof asterPro;
|
|
312
316
|
backpack: typeof backpackPro;
|
|
313
317
|
bequant: typeof bequantPro;
|
|
314
318
|
binance: typeof binancePro;
|
|
@@ -393,6 +397,7 @@ declare const ccxt: {
|
|
|
393
397
|
apex: typeof apexPro;
|
|
394
398
|
arkham: typeof arkhamPro;
|
|
395
399
|
ascendex: typeof ascendexPro;
|
|
400
|
+
aster: typeof asterPro;
|
|
396
401
|
backpack: typeof backpackPro;
|
|
397
402
|
bequant: typeof bequantPro;
|
|
398
403
|
binance: typeof binancePro;
|
|
@@ -472,6 +477,7 @@ declare const ccxt: {
|
|
|
472
477
|
apex: typeof apex;
|
|
473
478
|
arkham: typeof arkham;
|
|
474
479
|
ascendex: typeof ascendex;
|
|
480
|
+
aster: typeof aster;
|
|
475
481
|
backpack: typeof backpack;
|
|
476
482
|
bequant: typeof bequant;
|
|
477
483
|
bigone: typeof bigone;
|
|
@@ -579,5 +585,5 @@ declare const ccxt: {
|
|
|
579
585
|
zebpay: typeof zebpay;
|
|
580
586
|
zonda: typeof zonda;
|
|
581
587
|
} & typeof functions & typeof errors;
|
|
582
|
-
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, 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, ConstructorArgs, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, OrderBooks, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, OpenInterests, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, alpaca, apex, arkham, ascendex, backpack, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitfinex, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitrue, bitso, bitstamp, bitteam, bittrade, bitvavo, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bullish, bybit, bydfi, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, cryptomus, deepcoin, defx, delta, deribit, derive, digifinex, dydx, exmo, fmfwio, foxbit, gate, gateio, gemini, hashkey, hibachi, hitbtc, hollaex, htx, huobi, hyperliquid, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, latoken, lbank, luno, mercado, mexc, modetrade, myokx, ndax, novadax, okx, okxus, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, probit, timex, tokocrypto, toobit, upbit, wavesexchange, whitebit, woo, woofipro, xt, yobit, zaif, zebpay, zonda, };
|
|
588
|
+
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, 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, ConstructorArgs, Dictionary, MinMax, FeeInterface, TradingFeeInterface, MarketMarginModes, MarketInterface, Trade, Order, OrderBook, OrderBooks, Ticker, Transaction, Tickers, CurrencyInterface, Balance, BalanceAccount, Account, PartialBalances, Balances, DepositAddress, WithdrawalResponse, FundingRate, FundingRates, Position, BorrowInterest, LeverageTier, LedgerEntry, DepositWithdrawFeeNetwork, DepositWithdrawFee, TransferEntry, CrossBorrowRate, IsolatedBorrowRate, FundingRateHistory, OpenInterest, OpenInterests, Liquidation, OrderRequest, CancellationRequest, FundingHistory, MarginMode, Greeks, Conversion, Option, LastPrice, Leverage, LongShortRatio, MarginModification, Leverages, LastPrices, Currencies, TradingFees, MarginModes, OptionChain, IsolatedBorrowRates, CrossBorrowRates, LeverageTiers, alpaca, apex, arkham, ascendex, aster, backpack, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitfinex, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitrue, bitso, bitstamp, bitteam, bittrade, bitvavo, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bullish, bybit, bydfi, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, cryptomus, deepcoin, defx, delta, deribit, derive, digifinex, dydx, exmo, fmfwio, foxbit, gate, gateio, gemini, hashkey, hibachi, hitbtc, hollaex, htx, huobi, hyperliquid, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, latoken, lbank, luno, mercado, mexc, modetrade, myokx, ndax, novadax, okx, okxus, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, probit, timex, tokocrypto, toobit, upbit, wavesexchange, whitebit, woo, woofipro, xt, yobit, zaif, zebpay, zonda, };
|
|
583
589
|
export default ccxt;
|
package/js/ccxt.js
CHANGED
|
@@ -38,13 +38,14 @@ 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, RestrictedLocation, 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.5.
|
|
41
|
+
const version = '4.5.31';
|
|
42
42
|
Exchange.ccxtVersion = version;
|
|
43
43
|
//-----------------------------------------------------------------------------
|
|
44
44
|
import alpaca from './src/alpaca.js';
|
|
45
45
|
import apex from './src/apex.js';
|
|
46
46
|
import arkham from './src/arkham.js';
|
|
47
47
|
import ascendex from './src/ascendex.js';
|
|
48
|
+
import aster from './src/aster.js';
|
|
48
49
|
import backpack from './src/backpack.js';
|
|
49
50
|
import bequant from './src/bequant.js';
|
|
50
51
|
import bigone from './src/bigone.js';
|
|
@@ -156,6 +157,7 @@ import alpacaPro from './src/pro/alpaca.js';
|
|
|
156
157
|
import apexPro from './src/pro/apex.js';
|
|
157
158
|
import arkhamPro from './src/pro/arkham.js';
|
|
158
159
|
import ascendexPro from './src/pro/ascendex.js';
|
|
160
|
+
import asterPro from './src/pro/aster.js';
|
|
159
161
|
import backpackPro from './src/pro/backpack.js';
|
|
160
162
|
import bequantPro from './src/pro/bequant.js';
|
|
161
163
|
import binancePro from './src/pro/binance.js';
|
|
@@ -234,6 +236,7 @@ const exchanges = {
|
|
|
234
236
|
'apex': apex,
|
|
235
237
|
'arkham': arkham,
|
|
236
238
|
'ascendex': ascendex,
|
|
239
|
+
'aster': aster,
|
|
237
240
|
'backpack': backpack,
|
|
238
241
|
'bequant': bequant,
|
|
239
242
|
'bigone': bigone,
|
|
@@ -346,6 +349,7 @@ const pro = {
|
|
|
346
349
|
'apex': apexPro,
|
|
347
350
|
'arkham': arkhamPro,
|
|
348
351
|
'ascendex': ascendexPro,
|
|
352
|
+
'aster': asterPro,
|
|
349
353
|
'backpack': backpackPro,
|
|
350
354
|
'bequant': bequantPro,
|
|
351
355
|
'binance': binancePro,
|
|
@@ -432,6 +436,6 @@ pro.exchanges = Object.keys(pro);
|
|
|
432
436
|
pro['Exchange'] = Exchange; // now the same for rest and ts
|
|
433
437
|
//-----------------------------------------------------------------------------
|
|
434
438
|
const ccxt = Object.assign({ version, Exchange, Precise, 'exchanges': Object.keys(exchanges), 'pro': pro }, exchanges, functions, errors);
|
|
435
|
-
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, 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, alpaca, apex, arkham, ascendex, backpack, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitfinex, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitrue, bitso, bitstamp, bitteam, bittrade, bitvavo, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bullish, bybit, bydfi, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, cryptomus, deepcoin, defx, delta, deribit, derive, digifinex, dydx, exmo, fmfwio, foxbit, gate, gateio, gemini, hashkey, hibachi, hitbtc, hollaex, htx, huobi, hyperliquid, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, latoken, lbank, luno, mercado, mexc, modetrade, myokx, ndax, novadax, okx, okxus, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, probit, timex, tokocrypto, toobit, upbit, wavesexchange, whitebit, woo, woofipro, xt, yobit, zaif, zebpay, zonda, };
|
|
439
|
+
export { version, Exchange, exchanges, pro, Precise, functions, errors, BaseError, ExchangeError, AuthenticationError, PermissionDenied, AccountNotEnabled, AccountSuspended, ArgumentsRequired, BadRequest, BadSymbol, OperationRejected, NoChange, MarginModeAlreadySet, MarketClosed, ManualInteractionNeeded, RestrictedLocation, 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, alpaca, apex, arkham, ascendex, aster, backpack, bequant, bigone, binance, binancecoinm, binanceus, binanceusdm, bingx, bit2c, bitbank, bitbns, bitfinex, bitflyer, bitget, bithumb, bitmart, bitmex, bitopro, bitrue, bitso, bitstamp, bitteam, bittrade, bitvavo, blockchaincom, blofin, btcalpha, btcbox, btcmarkets, btcturk, bullish, bybit, bydfi, cex, coinbase, coinbaseadvanced, coinbaseexchange, coinbaseinternational, coincatch, coincheck, coinex, coinmate, coinmetro, coinone, coinsph, coinspot, cryptocom, cryptomus, deepcoin, defx, delta, deribit, derive, digifinex, dydx, exmo, fmfwio, foxbit, gate, gateio, gemini, hashkey, hibachi, hitbtc, hollaex, htx, huobi, hyperliquid, independentreserve, indodax, kraken, krakenfutures, kucoin, kucoinfutures, latoken, lbank, luno, mercado, mexc, modetrade, myokx, ndax, novadax, okx, okxus, onetrading, oxfun, p2b, paradex, paymium, phemex, poloniex, probit, timex, tokocrypto, toobit, upbit, wavesexchange, whitebit, woo, woofipro, xt, yobit, zaif, zebpay, zonda, };
|
|
436
440
|
export default ccxt;
|
|
437
441
|
//-----------------------------------------------------------------------------
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import { implicitReturnType } from '../base/types.js';
|
|
2
|
+
import { Exchange as _Exchange } from '../base/Exchange.js';
|
|
3
|
+
interface Exchange {
|
|
4
|
+
fapiPublicGetV1Ping(params?: {}): Promise<implicitReturnType>;
|
|
5
|
+
fapiPublicGetV1Time(params?: {}): Promise<implicitReturnType>;
|
|
6
|
+
fapiPublicGetV1ExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
7
|
+
fapiPublicGetV1Depth(params?: {}): Promise<implicitReturnType>;
|
|
8
|
+
fapiPublicGetV1Trades(params?: {}): Promise<implicitReturnType>;
|
|
9
|
+
fapiPublicGetV1HistoricalTrades(params?: {}): Promise<implicitReturnType>;
|
|
10
|
+
fapiPublicGetV1AggTrades(params?: {}): Promise<implicitReturnType>;
|
|
11
|
+
fapiPublicGetV1Klines(params?: {}): Promise<implicitReturnType>;
|
|
12
|
+
fapiPublicGetV1IndexPriceKlines(params?: {}): Promise<implicitReturnType>;
|
|
13
|
+
fapiPublicGetV1MarkPriceKlines(params?: {}): Promise<implicitReturnType>;
|
|
14
|
+
fapiPublicGetV1PremiumIndex(params?: {}): Promise<implicitReturnType>;
|
|
15
|
+
fapiPublicGetV1FundingRate(params?: {}): Promise<implicitReturnType>;
|
|
16
|
+
fapiPublicGetV1FundingInfo(params?: {}): Promise<implicitReturnType>;
|
|
17
|
+
fapiPublicGetV1Ticker24hr(params?: {}): Promise<implicitReturnType>;
|
|
18
|
+
fapiPublicGetV1TickerPrice(params?: {}): Promise<implicitReturnType>;
|
|
19
|
+
fapiPublicGetV1TickerBookTicker(params?: {}): Promise<implicitReturnType>;
|
|
20
|
+
fapiPublicGetV1AdlQuantile(params?: {}): Promise<implicitReturnType>;
|
|
21
|
+
fapiPublicGetV1ForceOrders(params?: {}): Promise<implicitReturnType>;
|
|
22
|
+
fapiPublicPostV1ListenKey(params?: {}): Promise<implicitReturnType>;
|
|
23
|
+
fapiPublicPutV1ListenKey(params?: {}): Promise<implicitReturnType>;
|
|
24
|
+
fapiPublicDeleteV1ListenKey(params?: {}): Promise<implicitReturnType>;
|
|
25
|
+
fapiPrivateGetV1PositionSideDual(params?: {}): Promise<implicitReturnType>;
|
|
26
|
+
fapiPrivateGetV1MultiAssetsMargin(params?: {}): Promise<implicitReturnType>;
|
|
27
|
+
fapiPrivateGetV1Order(params?: {}): Promise<implicitReturnType>;
|
|
28
|
+
fapiPrivateGetV1OpenOrder(params?: {}): Promise<implicitReturnType>;
|
|
29
|
+
fapiPrivateGetV1OpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
30
|
+
fapiPrivateGetV1AllOrders(params?: {}): Promise<implicitReturnType>;
|
|
31
|
+
fapiPrivateGetV2Balance(params?: {}): Promise<implicitReturnType>;
|
|
32
|
+
fapiPrivateGetV3Balance(params?: {}): Promise<implicitReturnType>;
|
|
33
|
+
fapiPrivateGetV3Account(params?: {}): Promise<implicitReturnType>;
|
|
34
|
+
fapiPrivateGetV4Account(params?: {}): Promise<implicitReturnType>;
|
|
35
|
+
fapiPrivateGetV1PositionMarginHistory(params?: {}): Promise<implicitReturnType>;
|
|
36
|
+
fapiPrivateGetV2PositionRisk(params?: {}): Promise<implicitReturnType>;
|
|
37
|
+
fapiPrivateGetV3PositionRisk(params?: {}): Promise<implicitReturnType>;
|
|
38
|
+
fapiPrivateGetV1UserTrades(params?: {}): Promise<implicitReturnType>;
|
|
39
|
+
fapiPrivateGetV1Income(params?: {}): Promise<implicitReturnType>;
|
|
40
|
+
fapiPrivateGetV1LeverageBracket(params?: {}): Promise<implicitReturnType>;
|
|
41
|
+
fapiPrivateGetV1CommissionRate(params?: {}): Promise<implicitReturnType>;
|
|
42
|
+
fapiPrivatePostV1PositionSideDual(params?: {}): Promise<implicitReturnType>;
|
|
43
|
+
fapiPrivatePostV1MultiAssetsMargin(params?: {}): Promise<implicitReturnType>;
|
|
44
|
+
fapiPrivatePostV1Order(params?: {}): Promise<implicitReturnType>;
|
|
45
|
+
fapiPrivatePostV1OrderTest(params?: {}): Promise<implicitReturnType>;
|
|
46
|
+
fapiPrivatePostV1BatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
47
|
+
fapiPrivatePostV1AssetWalletTransfer(params?: {}): Promise<implicitReturnType>;
|
|
48
|
+
fapiPrivatePostV1CountdownCancelAll(params?: {}): Promise<implicitReturnType>;
|
|
49
|
+
fapiPrivatePostV1Leverage(params?: {}): Promise<implicitReturnType>;
|
|
50
|
+
fapiPrivatePostV1MarginType(params?: {}): Promise<implicitReturnType>;
|
|
51
|
+
fapiPrivatePostV1PositionMargin(params?: {}): Promise<implicitReturnType>;
|
|
52
|
+
fapiPrivateDeleteV1Order(params?: {}): Promise<implicitReturnType>;
|
|
53
|
+
fapiPrivateDeleteV1AllOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
54
|
+
fapiPrivateDeleteV1BatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
55
|
+
sapiPublicGetV1Ping(params?: {}): Promise<implicitReturnType>;
|
|
56
|
+
sapiPublicGetV1Time(params?: {}): Promise<implicitReturnType>;
|
|
57
|
+
sapiPublicGetV1ExchangeInfo(params?: {}): Promise<implicitReturnType>;
|
|
58
|
+
sapiPublicGetV1Depth(params?: {}): Promise<implicitReturnType>;
|
|
59
|
+
sapiPublicGetV1Trades(params?: {}): Promise<implicitReturnType>;
|
|
60
|
+
sapiPublicGetV1HistoricalTrades(params?: {}): Promise<implicitReturnType>;
|
|
61
|
+
sapiPublicGetV1AggTrades(params?: {}): Promise<implicitReturnType>;
|
|
62
|
+
sapiPublicGetV1Klines(params?: {}): Promise<implicitReturnType>;
|
|
63
|
+
sapiPublicGetV1Ticker24hr(params?: {}): Promise<implicitReturnType>;
|
|
64
|
+
sapiPublicGetV1TickerPrice(params?: {}): Promise<implicitReturnType>;
|
|
65
|
+
sapiPublicGetV1TickerBookTicker(params?: {}): Promise<implicitReturnType>;
|
|
66
|
+
sapiPublicGetV1AsterWithdrawEstimateFee(params?: {}): Promise<implicitReturnType>;
|
|
67
|
+
sapiPublicPostV1GetNonce(params?: {}): Promise<implicitReturnType>;
|
|
68
|
+
sapiPublicPostV1CreateApiKey(params?: {}): Promise<implicitReturnType>;
|
|
69
|
+
sapiPublicPostV1ListenKey(params?: {}): Promise<implicitReturnType>;
|
|
70
|
+
sapiPublicPutV1ListenKey(params?: {}): Promise<implicitReturnType>;
|
|
71
|
+
sapiPublicDeleteV1ListenKey(params?: {}): Promise<implicitReturnType>;
|
|
72
|
+
sapiPrivateGetV1CommissionRate(params?: {}): Promise<implicitReturnType>;
|
|
73
|
+
sapiPrivateGetV1Order(params?: {}): Promise<implicitReturnType>;
|
|
74
|
+
sapiPrivateGetV1OpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
75
|
+
sapiPrivateGetV1AllOrders(params?: {}): Promise<implicitReturnType>;
|
|
76
|
+
sapiPrivateGetV1TransactionHistory(params?: {}): Promise<implicitReturnType>;
|
|
77
|
+
sapiPrivateGetV1Account(params?: {}): Promise<implicitReturnType>;
|
|
78
|
+
sapiPrivateGetV1UserTrades(params?: {}): Promise<implicitReturnType>;
|
|
79
|
+
sapiPrivatePostV1Order(params?: {}): Promise<implicitReturnType>;
|
|
80
|
+
sapiPrivatePostV1AssetWalletTransfer(params?: {}): Promise<implicitReturnType>;
|
|
81
|
+
sapiPrivatePostV1AssetSendToAddress(params?: {}): Promise<implicitReturnType>;
|
|
82
|
+
sapiPrivatePostV1AsterUserWithdraw(params?: {}): Promise<implicitReturnType>;
|
|
83
|
+
sapiPrivateDeleteV1Order(params?: {}): Promise<implicitReturnType>;
|
|
84
|
+
sapiPrivateDeleteV1AllOpenOrders(params?: {}): Promise<implicitReturnType>;
|
|
85
|
+
}
|
|
86
|
+
declare abstract class Exchange extends _Exchange {
|
|
87
|
+
}
|
|
88
|
+
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;
|
|
@@ -617,6 +617,7 @@ interface Exchange {
|
|
|
617
617
|
eapiPrivateGetBlockOrderExecute(params?: {}): Promise<implicitReturnType>;
|
|
618
618
|
eapiPrivateGetBlockUserTrades(params?: {}): Promise<implicitReturnType>;
|
|
619
619
|
eapiPrivateGetBlockTrades(params?: {}): Promise<implicitReturnType>;
|
|
620
|
+
eapiPrivateGetComission(params?: {}): Promise<implicitReturnType>;
|
|
620
621
|
eapiPrivatePostOrder(params?: {}): Promise<implicitReturnType>;
|
|
621
622
|
eapiPrivatePostBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
622
623
|
eapiPrivatePostListenKey(params?: {}): Promise<implicitReturnType>;
|
|
@@ -617,6 +617,7 @@ interface binance {
|
|
|
617
617
|
eapiPrivateGetBlockOrderExecute(params?: {}): Promise<implicitReturnType>;
|
|
618
618
|
eapiPrivateGetBlockUserTrades(params?: {}): Promise<implicitReturnType>;
|
|
619
619
|
eapiPrivateGetBlockTrades(params?: {}): Promise<implicitReturnType>;
|
|
620
|
+
eapiPrivateGetComission(params?: {}): Promise<implicitReturnType>;
|
|
620
621
|
eapiPrivatePostOrder(params?: {}): Promise<implicitReturnType>;
|
|
621
622
|
eapiPrivatePostBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
622
623
|
eapiPrivatePostListenKey(params?: {}): Promise<implicitReturnType>;
|
|
@@ -669,6 +669,7 @@ interface binance {
|
|
|
669
669
|
eapiPrivateGetBlockOrderExecute(params?: {}): Promise<implicitReturnType>;
|
|
670
670
|
eapiPrivateGetBlockUserTrades(params?: {}): Promise<implicitReturnType>;
|
|
671
671
|
eapiPrivateGetBlockTrades(params?: {}): Promise<implicitReturnType>;
|
|
672
|
+
eapiPrivateGetComission(params?: {}): Promise<implicitReturnType>;
|
|
672
673
|
eapiPrivatePostOrder(params?: {}): Promise<implicitReturnType>;
|
|
673
674
|
eapiPrivatePostBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
674
675
|
eapiPrivatePostListenKey(params?: {}): Promise<implicitReturnType>;
|
|
@@ -617,6 +617,7 @@ interface binance {
|
|
|
617
617
|
eapiPrivateGetBlockOrderExecute(params?: {}): Promise<implicitReturnType>;
|
|
618
618
|
eapiPrivateGetBlockUserTrades(params?: {}): Promise<implicitReturnType>;
|
|
619
619
|
eapiPrivateGetBlockTrades(params?: {}): Promise<implicitReturnType>;
|
|
620
|
+
eapiPrivateGetComission(params?: {}): Promise<implicitReturnType>;
|
|
620
621
|
eapiPrivatePostOrder(params?: {}): Promise<implicitReturnType>;
|
|
621
622
|
eapiPrivatePostBatchOrders(params?: {}): Promise<implicitReturnType>;
|
|
622
623
|
eapiPrivatePostListenKey(params?: {}): Promise<implicitReturnType>;
|