ccxt 4.3.66 → 4.3.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +1 -1
- package/dist/cjs/src/base/Exchange.js +1 -1
- package/dist/cjs/src/bingx.js +151 -19
- package/dist/cjs/src/bithumb.js +61 -17
- package/dist/cjs/src/pro/okx.js +17 -4
- package/js/ccxt.d.ts +1 -1
- package/js/ccxt.js +1 -1
- package/js/src/abstract/bingx.d.ts +7 -0
- package/js/src/base/Exchange.d.ts +14 -13
- package/js/src/base/Exchange.js +1 -1
- package/js/src/bingx.js +151 -19
- package/js/src/bithumb.js +61 -17
- package/js/src/pro/bitget.d.ts +1 -1
- package/js/src/pro/bybit.d.ts +1 -1
- package/js/src/pro/coinone.d.ts +1 -1
- package/js/src/pro/currencycom.d.ts +1 -1
- package/js/src/pro/hollaex.d.ts +1 -1
- package/js/src/pro/hyperliquid.d.ts +1 -1
- package/js/src/pro/kucoin.d.ts +1 -1
- package/js/src/pro/kucoinfutures.d.ts +1 -1
- package/js/src/pro/mexc.d.ts +1 -1
- package/js/src/pro/okcoin.d.ts +1 -1
- package/js/src/pro/okx.d.ts +2 -2
- package/js/src/pro/okx.js +18 -5
- package/js/src/pro/oxfun.d.ts +1 -1
- package/js/src/pro/p2b.d.ts +1 -1
- package/js/src/pro/poloniex.d.ts +1 -1
- package/js/src/pro/whitebit.d.ts +1 -1
- package/package.json +1 -1
- package/dist/cjs/src/abstract/bittrex.js +0 -9
- package/dist/cjs/src/bittrex.js +0 -2308
- package/dist/cjs/src/pro/bittrex.js +0 -959
- package/js/src/bittrex.d.ts +0 -97
- package/js/src/bittrex.js +0 -2309
- package/js/src/pro/bittrex.d.ts +0 -69
- package/js/src/pro/bittrex.js +0 -960
package/js/src/pro/bittrex.d.ts
DELETED
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
import bittrexRest from '../bittrex.js';
|
|
2
|
-
import { Int, Str } from '../base/types.js';
|
|
3
|
-
import Client from '../base/ws/Client.js';
|
|
4
|
-
export default class bittrex extends bittrexRest {
|
|
5
|
-
describe(): any;
|
|
6
|
-
getSignalRUrl(negotiation: any): string;
|
|
7
|
-
makeRequest(requestId: any, method: any, args: any): {
|
|
8
|
-
H: string;
|
|
9
|
-
M: any;
|
|
10
|
-
A: any;
|
|
11
|
-
I: any;
|
|
12
|
-
};
|
|
13
|
-
makeRequestToSubscribe(requestId: any, args: any): {
|
|
14
|
-
H: string;
|
|
15
|
-
M: any;
|
|
16
|
-
A: any;
|
|
17
|
-
I: any;
|
|
18
|
-
};
|
|
19
|
-
makeRequestToAuthenticate(requestId: any): {
|
|
20
|
-
H: string;
|
|
21
|
-
M: any;
|
|
22
|
-
A: any;
|
|
23
|
-
I: any;
|
|
24
|
-
};
|
|
25
|
-
requestId(): any;
|
|
26
|
-
sendRequestToSubscribe(negotiation: any, messageHash: any, subscription: any, params?: {}): Promise<any>;
|
|
27
|
-
authenticate(params?: {}): Promise<any>;
|
|
28
|
-
sendRequestToAuthenticate(negotiation: any, expired?: boolean, params?: {}): Promise<any>;
|
|
29
|
-
sendAuthenticatedRequestToSubscribe(authentication: any, messageHash: any, params?: {}): Promise<any>;
|
|
30
|
-
handleAuthenticate(client: Client, message: any, subscription: any): void;
|
|
31
|
-
handleAuthenticationExpiringHelper(): Promise<any>;
|
|
32
|
-
handleAuthenticationExpiring(client: Client, message: any): void;
|
|
33
|
-
createSignalRQuery(params?: {}): any;
|
|
34
|
-
negotiate(params?: {}): Promise<any>;
|
|
35
|
-
start(negotiation: any, params?: {}): Promise<any>;
|
|
36
|
-
watchOrders(symbol?: Str, since?: Int, limit?: Int, params?: {}): Promise<any>;
|
|
37
|
-
subscribeToOrders(authentication: any, params?: {}): Promise<any>;
|
|
38
|
-
handleOrder(client: Client, message: any): void;
|
|
39
|
-
watchBalance(params?: {}): Promise<any>;
|
|
40
|
-
subscribeToBalance(authentication: any, params?: {}): Promise<any>;
|
|
41
|
-
handleBalance(client: Client, message: any): void;
|
|
42
|
-
watchHeartbeat(params?: {}): Promise<any>;
|
|
43
|
-
subscribeToHeartbeat(negotiation: any, params?: {}): Promise<any>;
|
|
44
|
-
handleHeartbeat(client: Client, message: any): void;
|
|
45
|
-
watchTicker(symbol: string, params?: {}): Promise<any>;
|
|
46
|
-
subscribeToTicker(negotiation: any, symbol: any, params?: {}): Promise<any>;
|
|
47
|
-
handleTicker(client: Client, message: any): void;
|
|
48
|
-
watchOHLCV(symbol: string, timeframe?: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
|
|
49
|
-
subscribeToOHLCV(negotiation: any, symbol: any, timeframe?: string, params?: {}): Promise<any>;
|
|
50
|
-
handleOHLCV(client: Client, message: any): void;
|
|
51
|
-
watchTrades(symbol: string, since?: Int, limit?: Int, params?: {}): Promise<any>;
|
|
52
|
-
subscribeToTrades(negotiation: any, symbol: any, params?: {}): Promise<any>;
|
|
53
|
-
handleTrades(client: Client, message: any): void;
|
|
54
|
-
watchMyTrades(symbol?: Str, since?: Int, limit?: Int, params?: {}): Promise<any>;
|
|
55
|
-
subscribeToMyTrades(authentication: any, params?: {}): Promise<any>;
|
|
56
|
-
handleMyTrades(client: Client, message: any): void;
|
|
57
|
-
watchOrderBook(symbol: string, limit?: Int, params?: {}): Promise<any>;
|
|
58
|
-
fetchOrderBookSnapshot(client: any, message: any, subscription: any): Promise<void>;
|
|
59
|
-
handleOrderBookSubscription(client: Client, message: any, subscription: any): void;
|
|
60
|
-
handleDelta(bookside: any, delta: any): void;
|
|
61
|
-
handleDeltas(bookside: any, deltas: any): void;
|
|
62
|
-
handleOrderBook(client: Client, message: any): void;
|
|
63
|
-
handleOrderBookMessage(client: Client, message: any, orderbook: any): any;
|
|
64
|
-
handleSystemStatusHelper(): Promise<void>;
|
|
65
|
-
handleSystemStatus(client: Client, message: any): any;
|
|
66
|
-
handleSubscriptionStatus(client: Client, message: any): any;
|
|
67
|
-
handleErrorMessage(client: Client, message: any): boolean;
|
|
68
|
-
handleMessage(client: Client, message: any): void;
|
|
69
|
-
}
|