ccxt 4.2.69 → 4.2.71
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 +4 -4
- package/build.sh +1 -1
- package/dist/ccxt.browser.js +991 -211
- package/dist/ccxt.browser.min.js +2 -2
- package/dist/cjs/ccxt.js +3 -1
- package/dist/cjs/src/base/Exchange.js +32 -30
- package/dist/cjs/src/bitget.js +14 -6
- package/dist/cjs/src/coinbase.js +108 -89
- package/dist/cjs/src/digifinex.js +2 -1
- package/dist/cjs/src/gate.js +174 -1
- package/dist/cjs/src/hyperliquid.js +1 -1
- package/dist/cjs/src/kraken.js +1 -0
- package/dist/cjs/src/mexc.js +9 -0
- package/dist/cjs/src/pro/hyperliquid.js +556 -0
- package/js/ccxt.d.ts +4 -1
- package/js/ccxt.js +3 -1
- package/js/src/abstract/coinbase.d.ts +2 -0
- package/js/src/base/Exchange.d.ts +2 -2
- package/js/src/base/Exchange.js +32 -30
- package/js/src/base/types.d.ts +48 -48
- package/js/src/bitget.js +14 -6
- package/js/src/coinbase.d.ts +1 -1
- package/js/src/coinbase.js +108 -89
- package/js/src/digifinex.js +2 -1
- package/js/src/gate.d.ts +4 -1
- package/js/src/gate.js +174 -1
- package/js/src/hyperliquid.js +1 -1
- package/js/src/kraken.js +1 -0
- package/js/src/mexc.js +9 -0
- package/js/src/pro/hyperliquid.d.ts +23 -0
- package/js/src/pro/hyperliquid.js +557 -0
- package/package.json +1 -1
- package/skip-tests.json +49 -58
package/skip-tests.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"ace": {
|
|
3
3
|
"skip": "temp",
|
|
4
|
+
"until": "2024-03-15",
|
|
4
5
|
"skipMethods": {
|
|
5
6
|
"loadMarkets": {
|
|
6
7
|
"currencyIdAndCode": "temporary skip, because ids are numeric and we are in wip for numeric id tests",
|
|
@@ -26,15 +27,16 @@
|
|
|
26
27
|
"currencyIdAndCode": "broken currencies"
|
|
27
28
|
},
|
|
28
29
|
"fetchCurrencies": {
|
|
30
|
+
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269432480#L3364",
|
|
29
31
|
"withdraw": "not provided",
|
|
30
32
|
"deposit": "not provided"
|
|
31
33
|
},
|
|
32
|
-
"
|
|
34
|
+
"ticker": {
|
|
33
35
|
"low":"16 Aug - happened weird negative 24hr low",
|
|
34
36
|
"bid":"messed bid-ask",
|
|
35
37
|
"ask":"messed bid-ask"
|
|
36
38
|
},
|
|
37
|
-
"
|
|
39
|
+
"orderBook": {
|
|
38
40
|
"bid":"messed bid-ask",
|
|
39
41
|
"ask":"messed bid-ask"
|
|
40
42
|
}
|
|
@@ -45,21 +47,12 @@
|
|
|
45
47
|
"loadMarkets": {
|
|
46
48
|
"currencyIdAndCode": "https://app.travis-ci.com/github/ccxt/ccxt/builds/264802937#L2194"
|
|
47
49
|
},
|
|
48
|
-
"
|
|
50
|
+
"ticker": {
|
|
49
51
|
"bid":"broken bid-ask",
|
|
50
52
|
"ask":"broken bid-ask"
|
|
51
53
|
},
|
|
52
|
-
"
|
|
54
|
+
"orderBook": {
|
|
53
55
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269129438#L3841"
|
|
54
|
-
},
|
|
55
|
-
"fetchL2OrderBook": {
|
|
56
|
-
"spread": "same"
|
|
57
|
-
},
|
|
58
|
-
"watchOrderBook": {
|
|
59
|
-
"spread": "same"
|
|
60
|
-
},
|
|
61
|
-
"watchOrderBookForSymbols": {
|
|
62
|
-
"spread": "same"
|
|
63
56
|
}
|
|
64
57
|
}
|
|
65
58
|
},
|
|
@@ -67,17 +60,14 @@
|
|
|
67
60
|
"httpsProxy": "http://5.75.153.75:8002",
|
|
68
61
|
"wsProxy": "http://5.75.153.75:8002",
|
|
69
62
|
"skipMethods": {
|
|
70
|
-
"fetchStatus": "temporarily failing",
|
|
71
63
|
"loadMarkets": {
|
|
72
|
-
"currencyIdAndCode": "i.e. binance does not have currency code BCC"
|
|
73
|
-
"expiry": "expiry not set for future markets",
|
|
74
|
-
"expiryDatetime": "expiry not set for future markets"
|
|
64
|
+
"currencyIdAndCode": "i.e. binance does not have currency code BCC"
|
|
75
65
|
},
|
|
76
66
|
"fetchCurrencies": {
|
|
77
67
|
"precision": "not provided in public api",
|
|
78
68
|
"networks": "not yet unified"
|
|
79
69
|
},
|
|
80
|
-
"
|
|
70
|
+
"ticker": {
|
|
81
71
|
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
|
|
82
72
|
}
|
|
83
73
|
}
|
|
@@ -86,11 +76,8 @@
|
|
|
86
76
|
"httpsProxy": "http://5.75.153.75:8002",
|
|
87
77
|
"wsProxy": "http://5.75.153.75:8002",
|
|
88
78
|
"skipMethods": {
|
|
89
|
-
"
|
|
79
|
+
"orderBook": {
|
|
90
80
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269352042#L3463"
|
|
91
|
-
},
|
|
92
|
-
"watchOrderBookForSymbols": {
|
|
93
|
-
"spread": "same"
|
|
94
81
|
}
|
|
95
82
|
}
|
|
96
83
|
},
|
|
@@ -100,18 +87,11 @@
|
|
|
100
87
|
"expiry": "expiry not set for future markets",
|
|
101
88
|
"expiryDatetime": "expiry not set for future markets"
|
|
102
89
|
},
|
|
103
|
-
"
|
|
104
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
105
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
106
|
-
},
|
|
107
|
-
"fetchTicker": {
|
|
108
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
90
|
+
"ticker": {
|
|
91
|
+
"quoteVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466",
|
|
109
92
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
110
93
|
},
|
|
111
|
-
"fetchStatus": "private endpoints"
|
|
112
|
-
"watchTicker": {
|
|
113
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
|
|
114
|
-
}
|
|
94
|
+
"fetchStatus": "private endpoints"
|
|
115
95
|
}
|
|
116
96
|
},
|
|
117
97
|
"binancecoinm": {
|
|
@@ -121,32 +101,18 @@
|
|
|
121
101
|
"expiry": "expiry not set for future markets",
|
|
122
102
|
"expiryDatetime": "expiry not set for future markets"
|
|
123
103
|
},
|
|
124
|
-
"
|
|
125
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
126
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
127
|
-
},
|
|
128
|
-
"fetchTicker": {
|
|
129
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
104
|
+
"ticker": {
|
|
105
|
+
"quoteVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/268171081#L2414",
|
|
130
106
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
131
107
|
},
|
|
132
|
-
"watchTicker": {
|
|
133
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
|
|
134
|
-
},
|
|
135
|
-
"watchTickers": {
|
|
136
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/268171081#L2414"
|
|
137
|
-
},
|
|
138
108
|
"watchOrderBook": "out of order update"
|
|
139
109
|
}
|
|
140
110
|
},
|
|
141
111
|
"binanceusdm": {
|
|
142
112
|
"httpsProxy": "http://5.75.153.75:8002",
|
|
143
113
|
"skipMethods": {
|
|
144
|
-
"
|
|
145
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
146
|
-
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
147
|
-
},
|
|
148
|
-
"fetchTicker": {
|
|
149
|
-
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
114
|
+
"ticker": {
|
|
115
|
+
"quoteVolume": "quoteVolume >= baseVolume * low is failing, https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466",
|
|
150
116
|
"baseVolume": "quoteVolume >= baseVolume * low is failing"
|
|
151
117
|
},
|
|
152
118
|
"fetchPositions": "currently returns a lot of default/non open positions",
|
|
@@ -159,10 +125,7 @@
|
|
|
159
125
|
"code": "not provided",
|
|
160
126
|
"referenceId": "not provided"
|
|
161
127
|
},
|
|
162
|
-
"fetchBalance": "tmp skip"
|
|
163
|
-
"watchTicker": {
|
|
164
|
-
"quoteVolume": "https://app.travis-ci.com/github/ccxt/ccxt/builds/267900037#L2466"
|
|
165
|
-
}
|
|
128
|
+
"fetchBalance": "tmp skip"
|
|
166
129
|
}
|
|
167
130
|
},
|
|
168
131
|
"bit2c": {
|
|
@@ -327,6 +290,7 @@
|
|
|
327
290
|
"currencyIdAndCode": "broken currencies"
|
|
328
291
|
},
|
|
329
292
|
"fetchCurrencies": {
|
|
293
|
+
"currencyIdAndCode": "broken currencies",
|
|
330
294
|
"precision":"not provided",
|
|
331
295
|
"networks": "missing"
|
|
332
296
|
},
|
|
@@ -983,6 +947,18 @@
|
|
|
983
947
|
"quoteVolume": "same",
|
|
984
948
|
"baseVolume": "same"
|
|
985
949
|
},
|
|
950
|
+
"watchTicker": {
|
|
951
|
+
"bid":"same",
|
|
952
|
+
"ask":"same",
|
|
953
|
+
"quoteVolume": "same",
|
|
954
|
+
"baseVolume": "same"
|
|
955
|
+
},
|
|
956
|
+
"watchTickers": {
|
|
957
|
+
"bid":"same",
|
|
958
|
+
"ask":"same",
|
|
959
|
+
"quoteVolume": "same",
|
|
960
|
+
"baseVolume": "same"
|
|
961
|
+
},
|
|
986
962
|
"fetchPositions": "currently returns a lot of default/non open positions",
|
|
987
963
|
"fetchLedger": {
|
|
988
964
|
"currency": "undefined",
|
|
@@ -1149,6 +1125,9 @@
|
|
|
1149
1125
|
},
|
|
1150
1126
|
"fetchPositions": {
|
|
1151
1127
|
"percentage": "percentage is not provided"
|
|
1128
|
+
},
|
|
1129
|
+
"watchOrderBook": {
|
|
1130
|
+
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269407124#L3464"
|
|
1152
1131
|
}
|
|
1153
1132
|
}
|
|
1154
1133
|
},
|
|
@@ -1188,10 +1167,13 @@
|
|
|
1188
1167
|
"watchTrades": {
|
|
1189
1168
|
"timestamp": "ts several hours ahead in in future :)"
|
|
1190
1169
|
},
|
|
1191
|
-
"watchOHLCV": "some timestamp issues",
|
|
1192
1170
|
"watchOrderBook": {
|
|
1193
1171
|
"spread": "https://app.travis-ci.com/github/ccxt/ccxt/builds/269364330#L3612"
|
|
1194
|
-
}
|
|
1172
|
+
},
|
|
1173
|
+
"watchOrderBookForSymbols": {
|
|
1174
|
+
"spread": "same"
|
|
1175
|
+
},
|
|
1176
|
+
"watchOHLCV": "some timestamp issues"
|
|
1195
1177
|
}
|
|
1196
1178
|
},
|
|
1197
1179
|
"lykke": {
|
|
@@ -1202,8 +1184,14 @@
|
|
|
1202
1184
|
"fetchCurrencies": {
|
|
1203
1185
|
"fee":"not provided"
|
|
1204
1186
|
},
|
|
1205
|
-
"fetchOrderBook":
|
|
1206
|
-
|
|
1187
|
+
"fetchOrderBook": {
|
|
1188
|
+
"bid": "bid should be greater than next bid",
|
|
1189
|
+
"ask": "similar"
|
|
1190
|
+
},
|
|
1191
|
+
"fetchL2OrderBook": {
|
|
1192
|
+
"bid": "same",
|
|
1193
|
+
"ask": "same"
|
|
1194
|
+
},
|
|
1207
1195
|
"fetchTickers": "negative values",
|
|
1208
1196
|
"fetchTicker": {
|
|
1209
1197
|
"quoteVolume": "quoteVolume >= baseVolume * low is failing",
|
|
@@ -1681,6 +1669,9 @@
|
|
|
1681
1669
|
"limits" : "not provided",
|
|
1682
1670
|
"deposit": "not provided",
|
|
1683
1671
|
"withdraw": "not provided"
|
|
1672
|
+
},
|
|
1673
|
+
"watchTrades": {
|
|
1674
|
+
"currency": "not provided"
|
|
1684
1675
|
}
|
|
1685
1676
|
}
|
|
1686
1677
|
}
|