ccxt 4.3.13__py2.py3-none-any.whl → 4.3.14__py2.py3-none-any.whl
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.
- ccxt/__init__.py +1 -1
- ccxt/async_support/__init__.py +1 -1
- ccxt/async_support/base/exchange.py +1 -1
- ccxt/async_support/binance.py +99 -3
- ccxt/async_support/bybit.py +99 -99
- ccxt/async_support/coinbase.py +96 -1
- ccxt/async_support/coinex.py +392 -375
- ccxt/async_support/okx.py +1 -1
- ccxt/base/exchange.py +5 -1
- ccxt/binance.py +99 -3
- ccxt/bybit.py +99 -99
- ccxt/coinbase.py +96 -1
- ccxt/coinex.py +392 -375
- ccxt/okx.py +1 -1
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/woo.py +137 -9
- {ccxt-4.3.13.dist-info → ccxt-4.3.14.dist-info}/METADATA +4 -4
- {ccxt-4.3.13.dist-info → ccxt-4.3.14.dist-info}/RECORD +20 -20
- {ccxt-4.3.13.dist-info → ccxt-4.3.14.dist-info}/WHEEL +0 -0
- {ccxt-4.3.13.dist-info → ccxt-4.3.14.dist-info}/top_level.txt +0 -0
ccxt/okx.py
CHANGED
@@ -5219,7 +5219,7 @@ class okx(Exchange, ImplicitAPI):
|
|
5219
5219
|
# }
|
5220
5220
|
#
|
5221
5221
|
marketId = self.safe_string(position, 'instId')
|
5222
|
-
market = self.safe_market(marketId, market)
|
5222
|
+
market = self.safe_market(marketId, market, None, 'contract')
|
5223
5223
|
symbol = market['symbol']
|
5224
5224
|
pos = self.safe_string(position, 'pos') # 'pos' field: One way mode: 0 if position is not open, 1 if open | Two way(hedge) mode: -1 if short, 1 if long, 0 if position is not open
|
5225
5225
|
contractsAbs = Precise.string_abs(pos)
|
ccxt/pro/__init__.py
CHANGED
ccxt/pro/woo.py
CHANGED
@@ -21,7 +21,7 @@ class woo(ccxt.async_support.woo):
|
|
21
21
|
'has': {
|
22
22
|
'ws': True,
|
23
23
|
'watchBalance': True,
|
24
|
-
'watchMyTrades':
|
24
|
+
'watchMyTrades': True,
|
25
25
|
'watchOHLCV': True,
|
26
26
|
'watchOrderBook': True,
|
27
27
|
'watchOrders': True,
|
@@ -89,6 +89,7 @@ class woo(ccxt.async_support.woo):
|
|
89
89
|
|
90
90
|
async def watch_order_book(self, symbol: str, limit: Int = None, params={}) -> OrderBook:
|
91
91
|
"""
|
92
|
+
:see: https://docs.woo.org/#orderbook
|
92
93
|
watches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
|
93
94
|
:param str symbol: unified symbol of the market to fetch the order book for
|
94
95
|
:param int [limit]: the maximum amount of order book entries to return.
|
@@ -228,6 +229,7 @@ class woo(ccxt.async_support.woo):
|
|
228
229
|
|
229
230
|
async def watch_tickers(self, symbols: Strings = None, params={}) -> Tickers:
|
230
231
|
"""
|
232
|
+
:see: https://docs.woo.org/#24h-tickers
|
231
233
|
watches a price ticker, a statistical calculation with the information calculated over the past 24 hours for all markets of a specific list
|
232
234
|
:param str[] symbols: unified symbol of the market to fetch the ticker for
|
233
235
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
@@ -288,6 +290,16 @@ class woo(ccxt.async_support.woo):
|
|
288
290
|
client.resolve(result, topic)
|
289
291
|
|
290
292
|
async def watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={}) -> List[list]:
|
293
|
+
"""
|
294
|
+
watches historical candlestick data containing the open, high, low, and close price, and the volume of a market
|
295
|
+
:see: https://docs.woo.org/#k-line
|
296
|
+
:param str symbol: unified symbol of the market to fetch OHLCV data for
|
297
|
+
:param str timeframe: the length of time each candle represents
|
298
|
+
:param int [since]: timestamp in ms of the earliest candle to fetch
|
299
|
+
:param int [limit]: the maximum amount of candles to fetch
|
300
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
301
|
+
:returns int[][]: A list of candles ordered, open, high, low, close, volume
|
302
|
+
"""
|
291
303
|
await self.load_markets()
|
292
304
|
if (timeframe != '1m') and (timeframe != '5m') and (timeframe != '15m') and (timeframe != '30m') and (timeframe != '1h') and (timeframe != '1d') and (timeframe != '1w') and (timeframe != '1M'):
|
293
305
|
raise ExchangeError(self.id + ' watchOHLCV timeframe argument must be 1m, 5m, 15m, 30m, 1h, 1d, 1w, 1M')
|
@@ -351,6 +363,7 @@ class woo(ccxt.async_support.woo):
|
|
351
363
|
async def watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
352
364
|
"""
|
353
365
|
watches information on multiple trades made in a market
|
366
|
+
:see: https://docs.woo.org/#trade
|
354
367
|
:param str symbol: unified market symbol of the market trades were made in
|
355
368
|
:param int [since]: the earliest time in ms to fetch trades for
|
356
369
|
:param int [limit]: the maximum number of trade structures to retrieve
|
@@ -410,17 +423,58 @@ class woo(ccxt.async_support.woo):
|
|
410
423
|
# "side":"BUY",
|
411
424
|
# "source":0
|
412
425
|
# }
|
426
|
+
# private trade
|
427
|
+
# {
|
428
|
+
# "msgType": 0, # execution report
|
429
|
+
# "symbol": "SPOT_BTC_USDT",
|
430
|
+
# "clientOrderId": 0,
|
431
|
+
# "orderId": 54774393,
|
432
|
+
# "type": "MARKET",
|
433
|
+
# "side": "BUY",
|
434
|
+
# "quantity": 0.0,
|
435
|
+
# "price": 0.0,
|
436
|
+
# "tradeId": 56201985,
|
437
|
+
# "executedPrice": 23534.06,
|
438
|
+
# "executedQuantity": 0.00040791,
|
439
|
+
# "fee": 2.1E-7,
|
440
|
+
# "feeAsset": "BTC",
|
441
|
+
# "totalExecutedQuantity": 0.00040791,
|
442
|
+
# "avgPrice": 23534.06,
|
443
|
+
# "status": "FILLED",
|
444
|
+
# "reason": "",
|
445
|
+
# "orderTag": "default",
|
446
|
+
# "totalFee": 2.1E-7,
|
447
|
+
# "feeCurrency": "BTC",
|
448
|
+
# "totalRebate": 0,
|
449
|
+
# "rebateCurrency": "USDT",
|
450
|
+
# "visible": 0.0,
|
451
|
+
# "timestamp": 1675406261689,
|
452
|
+
# "reduceOnly": False,
|
453
|
+
# "maker": False
|
454
|
+
# }
|
413
455
|
#
|
414
456
|
marketId = self.safe_string(trade, 'symbol')
|
415
457
|
market = self.safe_market(marketId, market)
|
416
458
|
symbol = market['symbol']
|
417
|
-
price = self.safe_string(trade, 'price')
|
418
|
-
amount = self.
|
459
|
+
price = self.safe_string(trade, 'executedPrice', 'price')
|
460
|
+
amount = self.safe_string_2(trade, 'executedQuantity', 'size')
|
419
461
|
cost = Precise.string_mul(price, amount)
|
420
462
|
side = self.safe_string_lower(trade, 'side')
|
421
463
|
timestamp = self.safe_integer(trade, 'timestamp')
|
464
|
+
maker = self.safe_bool(trade, 'marker')
|
465
|
+
takerOrMaker = None
|
466
|
+
if maker is not None:
|
467
|
+
takerOrMaker = 'maker' if maker else 'taker'
|
468
|
+
type = self.safe_string_lower(trade, 'type')
|
469
|
+
fee = None
|
470
|
+
feeCost = self.safe_number(trade, 'fee')
|
471
|
+
if feeCost is not None:
|
472
|
+
fee = {
|
473
|
+
'cost': feeCost,
|
474
|
+
'currency': self.safe_currency_code(self.safe_string(trade, 'feeCurrency')),
|
475
|
+
}
|
422
476
|
return self.safe_trade({
|
423
|
-
'id':
|
477
|
+
'id': self.safe_string(trade, 'tradeId'),
|
424
478
|
'timestamp': timestamp,
|
425
479
|
'datetime': self.iso8601(timestamp),
|
426
480
|
'symbol': symbol,
|
@@ -428,10 +482,10 @@ class woo(ccxt.async_support.woo):
|
|
428
482
|
'price': price,
|
429
483
|
'amount': amount,
|
430
484
|
'cost': cost,
|
431
|
-
'order':
|
432
|
-
'takerOrMaker':
|
433
|
-
'type':
|
434
|
-
'fee':
|
485
|
+
'order': self.safe_string(trade, 'orderId'),
|
486
|
+
'takerOrMaker': takerOrMaker,
|
487
|
+
'type': type,
|
488
|
+
'fee': fee,
|
435
489
|
'info': trade,
|
436
490
|
}, market)
|
437
491
|
|
@@ -479,6 +533,8 @@ class woo(ccxt.async_support.woo):
|
|
479
533
|
|
480
534
|
async def watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Order]:
|
481
535
|
"""
|
536
|
+
:see: https://docs.woo.org/#executionreport
|
537
|
+
:see: https://docs.woo.org/#algoexecutionreportv2
|
482
538
|
watches information on multiple orders made by the user
|
483
539
|
:param str symbol: unified market symbol of the market orders were made in
|
484
540
|
:param int [since]: the earliest time in ms to fetch orders for
|
@@ -503,6 +559,33 @@ class woo(ccxt.async_support.woo):
|
|
503
559
|
limit = orders.getLimit(symbol, limit)
|
504
560
|
return self.filter_by_symbol_since_limit(orders, symbol, since, limit, True)
|
505
561
|
|
562
|
+
async def watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={}) -> List[Trade]:
|
563
|
+
"""
|
564
|
+
:see: https://docs.woo.org/#executionreport
|
565
|
+
watches information on multiple trades made by the user
|
566
|
+
:param str symbol: unified market symbol of the market orders were made in
|
567
|
+
:param int [since]: the earliest time in ms to fetch orders for
|
568
|
+
:param int [limit]: the maximum number of order structures to retrieve
|
569
|
+
:param dict [params]: extra parameters specific to the exchange API endpoint
|
570
|
+
:returns dict[]: a list of `order structures <https://docs.ccxt.com/#/?id=order-structure>`
|
571
|
+
"""
|
572
|
+
await self.load_markets()
|
573
|
+
topic = 'executionreport'
|
574
|
+
messageHash = 'myTrades'
|
575
|
+
if symbol is not None:
|
576
|
+
market = self.market(symbol)
|
577
|
+
symbol = market['symbol']
|
578
|
+
messageHash += ':' + symbol
|
579
|
+
request = {
|
580
|
+
'event': 'subscribe',
|
581
|
+
'topic': topic,
|
582
|
+
}
|
583
|
+
message = self.extend(request, params)
|
584
|
+
trades = await self.watch_private(messageHash, message)
|
585
|
+
if self.newUpdates:
|
586
|
+
limit = trades.getLimit(symbol, limit)
|
587
|
+
return self.filter_by_symbol_since_limit(trades, symbol, since, limit, True)
|
588
|
+
|
506
589
|
def parse_ws_order(self, order, market=None):
|
507
590
|
#
|
508
591
|
# {
|
@@ -609,7 +692,10 @@ class woo(ccxt.async_support.woo):
|
|
609
692
|
# }
|
610
693
|
# }
|
611
694
|
#
|
612
|
-
order = self.
|
695
|
+
order = self.safe_dict(message, 'data')
|
696
|
+
tradeId = self.safe_string(order, 'tradeId')
|
697
|
+
if (tradeId is not None) and (tradeId != '0'):
|
698
|
+
self.handle_my_trade(client, order)
|
613
699
|
self.handle_order(client, order)
|
614
700
|
|
615
701
|
def handle_order(self, client: Client, message):
|
@@ -639,6 +725,48 @@ class woo(ccxt.async_support.woo):
|
|
639
725
|
messageHashSymbol = topic + ':' + symbol
|
640
726
|
client.resolve(self.orders, messageHashSymbol)
|
641
727
|
|
728
|
+
def handle_my_trade(self, client: Client, message):
|
729
|
+
#
|
730
|
+
# {
|
731
|
+
# "msgType": 0, # execution report
|
732
|
+
# "symbol": "SPOT_BTC_USDT",
|
733
|
+
# "clientOrderId": 0,
|
734
|
+
# "orderId": 54774393,
|
735
|
+
# "type": "MARKET",
|
736
|
+
# "side": "BUY",
|
737
|
+
# "quantity": 0.0,
|
738
|
+
# "price": 0.0,
|
739
|
+
# "tradeId": 56201985,
|
740
|
+
# "executedPrice": 23534.06,
|
741
|
+
# "executedQuantity": 0.00040791,
|
742
|
+
# "fee": 2.1E-7,
|
743
|
+
# "feeAsset": "BTC",
|
744
|
+
# "totalExecutedQuantity": 0.00040791,
|
745
|
+
# "avgPrice": 23534.06,
|
746
|
+
# "status": "FILLED",
|
747
|
+
# "reason": "",
|
748
|
+
# "orderTag": "default",
|
749
|
+
# "totalFee": 2.1E-7,
|
750
|
+
# "feeCurrency": "BTC",
|
751
|
+
# "totalRebate": 0,
|
752
|
+
# "rebateCurrency": "USDT",
|
753
|
+
# "visible": 0.0,
|
754
|
+
# "timestamp": 1675406261689,
|
755
|
+
# "reduceOnly": False,
|
756
|
+
# "maker": False
|
757
|
+
# }
|
758
|
+
#
|
759
|
+
myTrades = self.myTrades
|
760
|
+
if myTrades is None:
|
761
|
+
limit = self.safe_integer(self.options, 'tradesLimit', 1000)
|
762
|
+
myTrades = ArrayCacheBySymbolById(limit)
|
763
|
+
trade = self.parse_ws_trade(message)
|
764
|
+
myTrades.append(trade)
|
765
|
+
messageHash = 'myTrades:' + trade['symbol']
|
766
|
+
client.resolve(myTrades, messageHash)
|
767
|
+
messageHash = 'myTrades'
|
768
|
+
client.resolve(myTrades, messageHash)
|
769
|
+
|
642
770
|
async def watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={}) -> List[Position]:
|
643
771
|
"""
|
644
772
|
:see: https://docs.woo.org/#position-push
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.14
|
4
4
|
Summary: A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 100+ exchanges
|
5
5
|
Home-page: https://ccxt.com
|
6
6
|
Author: Igor Kroitor
|
@@ -262,13 +262,13 @@ console.log(version, Object.keys(exchanges));
|
|
262
262
|
|
263
263
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
264
264
|
|
265
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
266
|
-
* unpkg: https://unpkg.com/ccxt@4.3.
|
265
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.3.14/dist/ccxt.browser.js
|
266
|
+
* unpkg: https://unpkg.com/ccxt@4.3.14/dist/ccxt.browser.js
|
267
267
|
|
268
268
|
CDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.
|
269
269
|
|
270
270
|
```HTML
|
271
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.
|
271
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.3.14/dist/ccxt.browser.js"></script>
|
272
272
|
```
|
273
273
|
|
274
274
|
Creates a global `ccxt` object:
|
@@ -1,10 +1,10 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=R4scacHt_n7cvne2kv0HarUE-i0JzrbUDRg-m9DrN0A,15656
|
2
2
|
ccxt/ace.py,sha256=j7Aq0hnsMTcUCIrWCm-ZZMkptWzAY23D8zi3jZWjq3c,41650
|
3
3
|
ccxt/alpaca.py,sha256=h9GWMKpoPOXTcYESHQKM3MWGrrqEgFvs8sLkQx0YSLs,47182
|
4
4
|
ccxt/ascendex.py,sha256=kxKDSqysYC_VHWsRHgNqEwGbQmKw8WIH_Cp2z6vouyg,151398
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=e9bOBUENqxUI1IjcCRBpc_eb7CilAxgk0tHGguESOEU,92168
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=QUKvO5yZNnA8-3Z6ihZDuP-lKGl_NEMdHzbOfkjFt78,615643
|
8
8
|
ccxt/binancecoinm.py,sha256=pncdw6Xw2X1Po-vEvAB4nL37scoS_axGAVxetPy1YQs,1645
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=KPQGlCalQ0eGlPCs2tSanOxaP8O0zFRQjGntA16Yprw,2480
|
@@ -35,13 +35,13 @@ ccxt/btcalpha.py,sha256=9cjW8u3j3L5Jok3G0_WbILreo5MG40yo7OxNTkArewY,36695
|
|
35
35
|
ccxt/btcbox.py,sha256=fI62e8f0CBMbSrVD1Cukk2SHcd4o4PcNfiEEbrIUETQ,23486
|
36
36
|
ccxt/btcmarkets.py,sha256=R_LqHslDyQeJ6rQdN3sH02ICf4M91Dt_MegrpEi19lY,51478
|
37
37
|
ccxt/btcturk.py,sha256=yz2w0eRyWju4znaIovBkVrQN-mjm3XlR_5F7AmQaogU,36651
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=xd6B08LBbeTT-gPu5MycV8iK6dBQ5D2BxNVtDmq7feU,410598
|
39
39
|
ccxt/cex.py,sha256=nIBZhdCtCeKLapnwHDZ9QSkjoIlgLmTggh-7BTEL3ug,69924
|
40
|
-
ccxt/coinbase.py,sha256
|
40
|
+
ccxt/coinbase.py,sha256=zrPkfEPaiX8LVfqpQ7VoLtefxZmOPMoBASlLa4v9wtk,211987
|
41
41
|
ccxt/coinbaseinternational.py,sha256=YHt9l8lf78A-UPwPPP_uQ7U8qom-1wnxD-UAgDHYl0k,87207
|
42
42
|
ccxt/coinbasepro.py,sha256=MHlfA0VS0PrYyTjcwcit7I04nD-P6zgICkYzAI611Rc,78665
|
43
43
|
ccxt/coincheck.py,sha256=GYkK5BTSFsJOuR5fSCysUqNK5b2FjEjz7dIBHXmc1Xs,35658
|
44
|
-
ccxt/coinex.py,sha256=
|
44
|
+
ccxt/coinex.py,sha256=3VstGwHVL8bpI7XT-pt4dRHH9FZrbi24Y1f6FjqfSRw,269404
|
45
45
|
ccxt/coinlist.py,sha256=KFP4eawW0ce-xJ15t3kuPQCLKSXQQTvkDjWfzRXtS3w,103087
|
46
46
|
ccxt/coinmate.py,sha256=bFSSHuOSL2OQdMZXa_5sNkXoM0FIxWgiCd0tgJjIo4M,45940
|
47
47
|
ccxt/coinmetro.py,sha256=13ibUWPJ5EOGaaBoZyeit23VMkV-fqfyw01XI2vdyLU,80661
|
@@ -83,7 +83,7 @@ ccxt/ndax.py,sha256=FQOxlMyj8m9wND2i5qiTxrog4eFASzCxhGRw1Nxu4eE,108562
|
|
83
83
|
ccxt/novadax.py,sha256=h9U_ckSCN4ZDgvXrrb7MmcOTioqG_3DsmR-2Gjpx6yw,64299
|
84
84
|
ccxt/oceanex.py,sha256=YH3tUzegvfG0fUCjtmtb3USOQtlL1tlqQ40B_i-xx7w,37860
|
85
85
|
ccxt/okcoin.py,sha256=oJDR1yRlV_3HlgI6Uii6zr5cKDg9IaUSrhdlJZAXIMc,151110
|
86
|
-
ccxt/okx.py,sha256=
|
86
|
+
ccxt/okx.py,sha256=Zv0gbbCOE9ZpszIZ5QqABdhC3BmBCExVQqvtiBbQ9uQ,373701
|
87
87
|
ccxt/onetrading.py,sha256=T68x4qfncbcnXU-YdMTVEGwnr3zKvcbbfdQZa8Zourc,88107
|
88
88
|
ccxt/p2b.py,sha256=FYxL36KwtaLIIQ793frJEtqtHyzm39hNK0mJEzAAH0U,54213
|
89
89
|
ccxt/paymium.py,sha256=2mBwmyT93k-dXBEKEix48G8PsA2IEN_5yScEM985Z10,24203
|
@@ -206,13 +206,13 @@ ccxt/abstract/woo.py,sha256=yH0aXeyohXdyS3jZrztapwRmzNWk7JGpbrrf7pX_LKU,10368
|
|
206
206
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
207
207
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
208
208
|
ccxt/abstract/zonda.py,sha256=aSfewvRojzmuymX6QbOnDR8v9VFqWTULMHX9Y7kKD1M,5820
|
209
|
-
ccxt/async_support/__init__.py,sha256=
|
209
|
+
ccxt/async_support/__init__.py,sha256=MAE1yn4Bk-Pq_e480UK7yrJNTW1pBor_oWztzJu_tqg,15409
|
210
210
|
ccxt/async_support/ace.py,sha256=FNZKajNtvFhDEmBYzgv46pGMwvHbPQcqhsWRpAk9iwU,41874
|
211
211
|
ccxt/async_support/alpaca.py,sha256=A1g6mT4lc8Ab5f5Hi7U_10XltruXHlE8268s45dDd6I,47394
|
212
212
|
ccxt/async_support/ascendex.py,sha256=GJJxZnAu_OSTv3l15DbAaIsIz5QdyWAgD0-yfsTjAf4,152186
|
213
213
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
214
214
|
ccxt/async_support/bigone.py,sha256=VRcmcf65P0Uw-EpEf78u_KQdE9J6MVOKdd311z-thRA,92622
|
215
|
-
ccxt/async_support/binance.py,sha256=
|
215
|
+
ccxt/async_support/binance.py,sha256=Mp9EJYYHfS-4qcTGU3kZYFV56U4ZlNkFQOuAPMsxYRs,618341
|
216
216
|
ccxt/async_support/binancecoinm.py,sha256=IY3RLZptQA2nmZaUYRGfTa5ZY4VMWBpFYfwHc8zTHw0,1683
|
217
217
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
218
218
|
ccxt/async_support/binanceusdm.py,sha256=-1r4A4tmV2pCiLGO80hzq7MIIj4MTzOD7buZGv6JauA,2518
|
@@ -243,13 +243,13 @@ ccxt/async_support/btcalpha.py,sha256=tfGT1xE4_tgWhyBx5UMiwhll-xf5FWx7NZZ6v7dOt1
|
|
243
243
|
ccxt/async_support/btcbox.py,sha256=DUVQQhJSlH9QCg3RToVL4cSUtFsRomArZIav1YdLxzo,23680
|
244
244
|
ccxt/async_support/btcmarkets.py,sha256=aHWHZNsllU8dBEUPGLe78K3B0X_Q1f0PGYS7TUSSwUM,51828
|
245
245
|
ccxt/async_support/btcturk.py,sha256=tkhs24jrrjhiwPvzmAXSGZVnmrlvQxqfIi3PCP-iwN0,36869
|
246
|
-
ccxt/async_support/bybit.py,sha256=
|
246
|
+
ccxt/async_support/bybit.py,sha256=yH0Wax_fvUGiuxzWneS0zW7cRu1-uyOPopCytOuykjc,412378
|
247
247
|
ccxt/async_support/cex.py,sha256=28Bixn0KAtlz-I171izhzgxR59sOx0tMV6d32XUkOnY,70274
|
248
|
-
ccxt/async_support/coinbase.py,sha256=
|
248
|
+
ccxt/async_support/coinbase.py,sha256=TQiVDuE9ga8gwmmmFG1bpollPCoUcE3UWiNtmlbW-tM,213093
|
249
249
|
ccxt/async_support/coinbaseinternational.py,sha256=NnsZZexHNFeSFoVbJe76PCud0MZHoCWe5ZVx9SxcWhw,87761
|
250
250
|
ccxt/async_support/coinbasepro.py,sha256=450ObJYcli-6Fkpqx8iTT-Z6TB4Uek0bIXmSWLWVsFA,79171
|
251
251
|
ccxt/async_support/coincheck.py,sha256=B_qzNQzd3j-me0km8lEg7bnfp--A16fpa_W902ut5Lo,35864
|
252
|
-
ccxt/async_support/coinex.py,sha256=
|
252
|
+
ccxt/async_support/coinex.py,sha256=jXlSERbrJE22lfc4geYt8NJnpBF0Mq2KjwCvRR2ia-g,270698
|
253
253
|
ccxt/async_support/coinlist.py,sha256=pz2Kj7wr8yl_VojRHApidVYCfr7Kz_KkjtKSxLg-fAY,103575
|
254
254
|
ccxt/async_support/coinmate.py,sha256=XQJDqDPD2JFBDZqKzWC9AfBKV3MY3msBuYkMgUaT5M0,46206
|
255
255
|
ccxt/async_support/coinmetro.py,sha256=VPi7zqunFxgFzcedh5cOApHea1ztooxk2Mug5889q_4,80981
|
@@ -291,7 +291,7 @@ ccxt/async_support/ndax.py,sha256=JtBK0pbR5OvnWuLTHr2pNV8lsoXkZ8A161b5K366v00,10
|
|
291
291
|
ccxt/async_support/novadax.py,sha256=ttRfw2h1Nc-9RUgBHefTuAPLUNjp9hxfxZTxoJDViwQ,64667
|
292
292
|
ccxt/async_support/oceanex.py,sha256=aYdYRl42FDFpaPaoLaiGYxvDM_7aq0dEjAhUa0NsJQQ,38180
|
293
293
|
ccxt/async_support/okcoin.py,sha256=HQSAZdG_yFP9oHyJYJaZrWsRZ9IHB6qrIgDp4b0zetA,151634
|
294
|
-
ccxt/async_support/okx.py,sha256=
|
294
|
+
ccxt/async_support/okx.py,sha256=r_6_AfHUlyIGaxXvxXx8JBkVzqW9o-EL8zsPv4MsYdg,375288
|
295
295
|
ccxt/async_support/onetrading.py,sha256=2O3d2_E-oUZABQEyR9igcke0AJ-to-_J9579iDyGKfo,88559
|
296
296
|
ccxt/async_support/p2b.py,sha256=KrNc3sLbHQCxbgShyqWytuQVaQfKa42Q6_HcUYNUaKI,54455
|
297
297
|
ccxt/async_support/paymium.py,sha256=3P1J9OcDOqQKG5fUs6Xte9Xu8NB5lWu-OD-AHHGZbkM,24391
|
@@ -311,7 +311,7 @@ ccxt/async_support/yobit.py,sha256=6eqYOcSBmXhJgcKDRMj8oRH_7aoz2E21hxgzvA1TzrA,5
|
|
311
311
|
ccxt/async_support/zaif.py,sha256=chPFWbPvYNn0KPHY0fX_nXl60WuvueRO9GNnNMpuYeo,28139
|
312
312
|
ccxt/async_support/zonda.py,sha256=nHlJJSlr_zBSiw4WrKOp2FbO33_UFMK5YyLuf2Pvjr0,80871
|
313
313
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
314
|
-
ccxt/async_support/base/exchange.py,sha256=
|
314
|
+
ccxt/async_support/base/exchange.py,sha256=Igr6QKr5tYXfxgCE_a-eYziZFbmVhs8JmnMLUBhdvm0,107191
|
315
315
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
316
316
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
317
317
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=Ed1765emEde2Hj8Ys6f5EjS54ZI1wQ0qIhd04eB7yhU,5751
|
@@ -325,10 +325,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=Pxrq22nCODckJ6G1OXkYEmUunIu
|
|
325
325
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
326
326
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
327
327
|
ccxt/base/errors.py,sha256=u_zxABGVPU_K5oLEEZQWOI0_F5Q-SAUq1g1q6AFh7IM,4107
|
328
|
-
ccxt/base/exchange.py,sha256=
|
328
|
+
ccxt/base/exchange.py,sha256=yuAgEhFsoZYfgrFy0YXkkHaEAsyouSnDEW2CAkPpJ9U,275747
|
329
329
|
ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
|
330
330
|
ccxt/base/types.py,sha256=m9kkJ1elksA8JwVeoSZyL6BBH4qu3l8h5zhi3W22-1o,8495
|
331
|
-
ccxt/pro/__init__.py,sha256=
|
331
|
+
ccxt/pro/__init__.py,sha256=FzqkjwWklqUUWBvU3gpxVWErhgGCty7Q3ZWM_kZ9jLU,6999
|
332
332
|
ccxt/pro/alpaca.py,sha256=7ePyWli0949ti5UheIn553xmnFpedrNc2W5CKauSZio,27167
|
333
333
|
ccxt/pro/ascendex.py,sha256=fCM3EujSfJvtvffqI56UAstTtwjXFIocwukm15cF8rE,35432
|
334
334
|
ccxt/pro/bequant.py,sha256=5zbsP8BHQTUZ8ZNL6uaACxDbUClgkOV4SYfXT_LfQVg,1351
|
@@ -392,7 +392,7 @@ ccxt/pro/probit.py,sha256=RLTnROQUmX31XQ3ymIZkiDkop3eiSVK70Yw81yDcde4,22822
|
|
392
392
|
ccxt/pro/upbit.py,sha256=CSqwaNCxECo9FI7aq_7ege0c8IjWEmsoPZL06Kw9KDo,9654
|
393
393
|
ccxt/pro/wazirx.py,sha256=icMUhtixMs5UvVOtqJLSJYMJ9hdNixipmT8bGs6Im7s,30043
|
394
394
|
ccxt/pro/whitebit.py,sha256=7WNCZBD6ZY_bRU_BXBe-ei2D7NfDHwyoZtOVbfgcxYQ,35021
|
395
|
-
ccxt/pro/woo.py,sha256=
|
395
|
+
ccxt/pro/woo.py,sha256=v50vbitTZ8EjGx0L8ckqs8UBjLB_KfCGC5ayVlxpkJo,42372
|
396
396
|
ccxt/static_dependencies/__init__.py,sha256=GpOAh5lJ5Kyk1K1lWf9DzDZeZ-prHXXK38dVpW5GPfc,84
|
397
397
|
ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
|
398
398
|
ccxt/static_dependencies/ecdsa/_version.py,sha256=eMIr0XQiX8_th_x4iAd0JFcYKLowY9dYz33-vKVFIPI,18461
|
@@ -527,7 +527,7 @@ ccxt/test/base/test_ticker.py,sha256=cMTIMb1oySNORUCmqI5ZzMswlEyCF6gJMah3vfvo8wQ
|
|
527
527
|
ccxt/test/base/test_trade.py,sha256=PMtmB8V38dpaP-eb8h488xYMlR6D69yCOhsA1RuWrUA,2336
|
528
528
|
ccxt/test/base/test_trading_fee.py,sha256=2aDCNJtqBkTC_AieO0l1HYGq5hz5qkWlkWb9Nv_fcwk,1066
|
529
529
|
ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
|
530
|
-
ccxt-4.3.
|
531
|
-
ccxt-4.3.
|
532
|
-
ccxt-4.3.
|
533
|
-
ccxt-4.3.
|
530
|
+
ccxt-4.3.14.dist-info/METADATA,sha256=ezKGKYybBU91dQDLn62cKlCA7K6cQwc5iHcji-VASZ4,111193
|
531
|
+
ccxt-4.3.14.dist-info/WHEEL,sha256=P2T-6epvtXQ2cBOE_U1K4_noqlJFN3tj15djMgEu4NM,110
|
532
|
+
ccxt-4.3.14.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
533
|
+
ccxt-4.3.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|