ccxt 3.0.80__py2.py3-none-any.whl → 3.0.81__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.

Potentially problematic release.


This version of ccxt might be problematic. Click here for more details.

ccxt/__init__.py CHANGED
@@ -22,7 +22,7 @@
22
22
 
23
23
  # ----------------------------------------------------------------------------
24
24
 
25
- __version__ = '3.0.80'
25
+ __version__ = '3.0.81'
26
26
 
27
27
  # ----------------------------------------------------------------------------
28
28
 
@@ -184,7 +184,6 @@ from ccxt.woo import woo # noqa: F4
184
184
  from ccxt.xt import xt # noqa: F401
185
185
  from ccxt.yobit import yobit # noqa: F401
186
186
  from ccxt.zaif import zaif # noqa: F401
187
- from ccxt.zb import zb # noqa: F401
188
187
  from ccxt.zonda import zonda # noqa: F401
189
188
 
190
189
  exchanges = [
@@ -299,7 +298,6 @@ exchanges = [
299
298
  'xt',
300
299
  'yobit',
301
300
  'zaif',
302
- 'zb',
303
301
  'zonda',
304
302
  ]
305
303
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '3.0.80'
7
+ __version__ = '3.0.81'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -164,7 +164,6 @@ from ccxt.async_support.woo import woo
164
164
  from ccxt.async_support.xt import xt # noqa: F401
165
165
  from ccxt.async_support.yobit import yobit # noqa: F401
166
166
  from ccxt.async_support.zaif import zaif # noqa: F401
167
- from ccxt.async_support.zb import zb # noqa: F401
168
167
  from ccxt.async_support.zonda import zonda # noqa: F401
169
168
 
170
169
  exchanges = [
@@ -279,7 +278,6 @@ exchanges = [
279
278
  'xt',
280
279
  'yobit',
281
280
  'zaif',
282
- 'zb',
283
281
  'zonda',
284
282
  ]
285
283
 
@@ -2,7 +2,7 @@
2
2
 
3
3
  # -----------------------------------------------------------------------------
4
4
 
5
- __version__ = '3.0.80'
5
+ __version__ = '3.0.81'
6
6
 
7
7
  # -----------------------------------------------------------------------------
8
8
 
@@ -960,30 +960,24 @@ class Exchange(BaseExchange):
960
960
  raise ArgumentsRequired(self.id + ' calculateFee() - you have provided incompatible arguments - "market" type order can not be "maker". Change either the "type" or the "takerOrMaker" argument to calculate the fee.')
961
961
  market = self.markets[symbol]
962
962
  feeSide = self.safe_string(market, 'feeSide', 'quote')
963
- key = 'quote'
964
- cost = None
965
- amountString = self.number_to_string(amount)
966
- priceString = self.number_to_string(price)
967
- if feeSide == 'quote':
968
- # the fee is always in quote currency
969
- cost = Precise.string_mul(amountString, priceString)
970
- elif feeSide == 'base':
971
- # the fee is always in base currency
972
- cost = amountString
973
- elif feeSide == 'get':
963
+ useQuote = None
964
+ if feeSide == 'get':
974
965
  # the fee is always in the currency you get
975
- cost = amountString
976
- if side == 'sell':
977
- cost = Precise.string_mul(cost, priceString)
978
- else:
979
- key = 'base'
966
+ useQuote = side == 'sell'
980
967
  elif feeSide == 'give':
981
968
  # the fee is always in the currency you give
982
- cost = amountString
983
- if side == 'buy':
984
- cost = Precise.string_mul(cost, priceString)
985
- else:
986
- key = 'base'
969
+ useQuote = side == 'buy'
970
+ else:
971
+ # the fee is always in feeSide currency
972
+ useQuote = feeSide == 'quote'
973
+ cost = self.number_to_string(amount)
974
+ key = None
975
+ if useQuote:
976
+ priceString = self.number_to_string(price)
977
+ cost = Precise.string_mul(cost, priceString)
978
+ key = 'quote'
979
+ else:
980
+ key = 'base'
987
981
  # for derivatives, the fee is in 'settle' currency
988
982
  if not market['spot']:
989
983
  key = 'settle'
@@ -991,8 +985,7 @@ class Exchange(BaseExchange):
991
985
  if type == 'market':
992
986
  takerOrMaker = 'taker'
993
987
  rate = self.safe_string(market, takerOrMaker)
994
- if cost is not None:
995
- cost = Precise.string_mul(cost, rate)
988
+ cost = Precise.string_mul(cost, rate)
996
989
  return {
997
990
  'type': takerOrMaker,
998
991
  'currency': market[key],
@@ -81,8 +81,8 @@ class krakenfutures(Exchange):
81
81
  },
82
82
  'urls': {
83
83
  'test': {
84
- 'public': 'https://demo-futures.kraken.com/derivatives',
85
- 'private': 'https://demo-futures.kraken.com/derivatives',
84
+ 'public': 'https://demo-futures.kraken.com/derivatives/api/',
85
+ 'private': 'https://demo-futures.kraken.com/derivatives/api/',
86
86
  'www': 'https://demo-futures.kraken.com',
87
87
  },
88
88
  'logo': 'https://user-images.githubusercontent.com/24300605/81436764-b22fd580-9172-11ea-9703-742783e6376d.jpg',
@@ -397,6 +397,7 @@ class upbit(Exchange):
397
397
 
398
398
  async def fetch_markets(self, params={}):
399
399
  """
400
+ see https://docs.upbit.com/reference/%EB%A7%88%EC%BC%93-%EC%BD%94%EB%93%9C-%EC%A1%B0%ED%9A%8C
400
401
  retrieves data on all markets for upbit
401
402
  :param dict params: extra parameters specific to the exchange api endpoint
402
403
  :returns [dict]: an array of objects representing market data
@@ -489,6 +490,7 @@ class upbit(Exchange):
489
490
 
490
491
  async def fetch_balance(self, params={}):
491
492
  """
493
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EA%B3%84%EC%A2%8C-%EC%A1%B0%ED%9A%8C
492
494
  query for balance and get the amount of funds available for trading or funds locked in orders
493
495
  :param dict params: extra parameters specific to the upbit api endpoint
494
496
  :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
@@ -511,6 +513,7 @@ class upbit(Exchange):
511
513
 
512
514
  async def fetch_order_books(self, symbols: Optional[List[str]] = None, limit: Optional[int] = None, params={}):
513
515
  """
516
+ see https://docs.upbit.com/reference/%ED%98%B8%EA%B0%80-%EC%A0%95%EB%B3%B4-%EC%A1%B0%ED%9A%8C
514
517
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data for multiple markets
515
518
  :param [str]|None symbols: list of unified market symbols, all symbols fetched if None, default is None
516
519
  :param int|None limit: not used by upbit fetchOrderBooks()
@@ -578,6 +581,7 @@ class upbit(Exchange):
578
581
 
579
582
  async def fetch_order_book(self, symbol: str, limit: Optional[int] = None, params={}):
580
583
  """
584
+ see https://docs.upbit.com/reference/%ED%98%B8%EA%B0%80-%EC%A0%95%EB%B3%B4-%EC%A1%B0%ED%9A%8C
581
585
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
582
586
  :param str symbol: unified symbol of the market to fetch the order book for
583
587
  :param int|None limit: the maximum amount of order book entries to return
@@ -645,6 +649,7 @@ class upbit(Exchange):
645
649
 
646
650
  async def fetch_tickers(self, symbols: Optional[List[str]] = None, params={}):
647
651
  """
652
+ see https://docs.upbit.com/reference/ticker%ED%98%84%EC%9E%AC%EA%B0%80-%EC%A0%95%EB%B3%B4
648
653
  fetches price tickers for multiple markets, statistical calculations with the information calculated over the past 24 hours each market
649
654
  :param [str]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
650
655
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -703,6 +708,7 @@ class upbit(Exchange):
703
708
 
704
709
  async def fetch_ticker(self, symbol: str, params={}):
705
710
  """
711
+ see https://docs.upbit.com/reference/ticker%ED%98%84%EC%9E%AC%EA%B0%80-%EC%A0%95%EB%B3%B4
706
712
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
707
713
  :param str symbol: unified symbol of the market to fetch the ticker for
708
714
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -781,6 +787,7 @@ class upbit(Exchange):
781
787
 
782
788
  async def fetch_trades(self, symbol: str, since: Optional[int] = None, limit: Optional[int] = None, params={}):
783
789
  """
790
+ see https://docs.upbit.com/reference/%EC%B5%9C%EA%B7%BC-%EC%B2%B4%EA%B2%B0-%EB%82%B4%EC%97%AD
784
791
  get the list of most recent trades for a particular symbol
785
792
  :param str symbol: unified symbol of the market to fetch trades for
786
793
  :param int|None since: timestamp in ms of the earliest trade to fetch
@@ -823,6 +830,7 @@ class upbit(Exchange):
823
830
 
824
831
  async def fetch_trading_fee(self, symbol: str, params={}):
825
832
  """
833
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EA%B0%80%EB%8A%A5-%EC%A0%95%EB%B3%B4
826
834
  fetch the trading fees for a market
827
835
  :param str symbol: unified market symbol
828
836
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -910,6 +918,7 @@ class upbit(Exchange):
910
918
 
911
919
  async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Optional[int] = None, limit: Optional[int] = None, params={}):
912
920
  """
921
+ see https://docs.upbit.com/reference/%EB%B6%84minute-%EC%BA%94%EB%93%A4-1
913
922
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
914
923
  :param str symbol: unified symbol of the market to fetch OHLCV data for
915
924
  :param str timeframe: the length of time each candle represents
@@ -972,6 +981,7 @@ class upbit(Exchange):
972
981
 
973
982
  async def create_order(self, symbol: str, type, side: OrderSide, amount, price=None, params={}):
974
983
  """
984
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8%ED%95%98%EA%B8%B0
975
985
  create a trade order
976
986
  :param str symbol: unified symbol of the market to create an order in
977
987
  :param str type: 'market' or 'limit'
@@ -1042,6 +1052,7 @@ class upbit(Exchange):
1042
1052
 
1043
1053
  async def cancel_order(self, id: str, symbol: Optional[str] = None, params={}):
1044
1054
  """
1055
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EC%B7%A8%EC%86%8C
1045
1056
  cancels an open order
1046
1057
  :param str id: order id
1047
1058
  :param str|None symbol: not used by upbit cancelOrder()
@@ -1076,6 +1087,7 @@ class upbit(Exchange):
1076
1087
 
1077
1088
  async def fetch_deposits(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1078
1089
  """
1090
+ see https://docs.upbit.com/reference/%EC%9E%85%EA%B8%88-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1079
1091
  fetch all deposits made to an account
1080
1092
  :param str|None code: unified currency code
1081
1093
  :param int|None since: the earliest time in ms to fetch deposits for
@@ -1115,6 +1127,7 @@ class upbit(Exchange):
1115
1127
 
1116
1128
  async def fetch_withdrawals(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1117
1129
  """
1130
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EC%B6%9C%EA%B8%88-%EC%A1%B0%ED%9A%8C
1118
1131
  fetch all withdrawals made from an account
1119
1132
  :param str|None code: unified currency code
1120
1133
  :param int|None since: the earliest time in ms to fetch withdrawals for
@@ -1403,6 +1416,7 @@ class upbit(Exchange):
1403
1416
 
1404
1417
  async def fetch_open_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1405
1418
  """
1419
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1406
1420
  fetch all unfilled currently open orders
1407
1421
  :param str|None symbol: unified market symbol
1408
1422
  :param int|None since: the earliest time in ms to fetch open orders for
@@ -1414,6 +1428,7 @@ class upbit(Exchange):
1414
1428
 
1415
1429
  async def fetch_closed_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1416
1430
  """
1431
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1417
1432
  fetches information on multiple closed orders made by the user
1418
1433
  :param str|None symbol: unified market symbol of the market orders were made in
1419
1434
  :param int|None since: the earliest time in ms to fetch orders for
@@ -1425,6 +1440,7 @@ class upbit(Exchange):
1425
1440
 
1426
1441
  async def fetch_canceled_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1427
1442
  """
1443
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1428
1444
  fetches information on multiple canceled orders made by the user
1429
1445
  :param str|None symbol: unified market symbol of the market orders were made in
1430
1446
  :param int|None since: timestamp in ms of the earliest order, default is None
@@ -1436,6 +1452,7 @@ class upbit(Exchange):
1436
1452
 
1437
1453
  async def fetch_order(self, id: str, symbol: Optional[str] = None, params={}):
1438
1454
  """
1455
+ see https://docs.upbit.com/reference/%EA%B0%9C%EB%B3%84-%EC%A3%BC%EB%AC%B8-%EC%A1%B0%ED%9A%8C
1439
1456
  fetches information on an order made by the user
1440
1457
  :param str|None symbol: not used by upbit fetchOrder
1441
1458
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1493,6 +1510,7 @@ class upbit(Exchange):
1493
1510
 
1494
1511
  async def fetch_deposit_addresses(self, codes=None, params={}):
1495
1512
  """
1513
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EC%9E%85%EA%B8%88-%EC%A3%BC%EC%86%8C-%EC%A1%B0%ED%9A%8C
1496
1514
  fetch deposit addresses for multiple currencies and chain types
1497
1515
  :param [str]|None codes: list of unified currency codes, default is None
1498
1516
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1544,6 +1562,7 @@ class upbit(Exchange):
1544
1562
 
1545
1563
  async def fetch_deposit_address(self, code: str, params={}):
1546
1564
  """
1565
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EC%9E%85%EA%B8%88-%EC%A3%BC%EC%86%8C-%EC%A1%B0%ED%9A%8C
1547
1566
  fetch the deposit address for a currency associated with self account
1548
1567
  :param str code: unified currency code
1549
1568
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1565,6 +1584,7 @@ class upbit(Exchange):
1565
1584
 
1566
1585
  async def create_deposit_address(self, code: str, params={}):
1567
1586
  """
1587
+ see https://docs.upbit.com/reference/%EC%9E%85%EA%B8%88-%EC%A3%BC%EC%86%8C-%EC%83%9D%EC%84%B1-%EC%9A%94%EC%B2%AD
1568
1588
  create a currency deposit address
1569
1589
  :param str code: unified currency code of the currency for the deposit address
1570
1590
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1599,6 +1619,7 @@ class upbit(Exchange):
1599
1619
 
1600
1620
  async def withdraw(self, code: str, amount, address, tag=None, params={}):
1601
1621
  """
1622
+ see https://docs.upbit.com/reference/%EC%9B%90%ED%99%94-%EC%B6%9C%EA%B8%88%ED%95%98%EA%B8%B0
1602
1623
  make a withdrawal
1603
1624
  :param str code: unified currency code
1604
1625
  :param float amount: the amount to withdraw
@@ -301,6 +301,7 @@ class zonda(Exchange):
301
301
 
302
302
  async def fetch_markets(self, params={}):
303
303
  """
304
+ see https://docs.zonda.exchange/reference/ticker-1
304
305
  retrieves data on all markets for zonda
305
306
  :param dict params: extra parameters specific to the exchange api endpoint
306
307
  :returns [dict]: an array of objects representing market data
@@ -398,6 +399,7 @@ class zonda(Exchange):
398
399
 
399
400
  async def fetch_open_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
400
401
  """
402
+ see https://docs.zonda.exchange/reference/active-orders
401
403
  fetch all unfilled currently open orders
402
404
  :param str|None symbol: not used by zonda fetchOpenOrders
403
405
  :param int|None since: the earliest time in ms to fetch open orders for
@@ -463,6 +465,7 @@ class zonda(Exchange):
463
465
 
464
466
  async def fetch_my_trades(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
465
467
  """
468
+ see https://docs.zonda.exchange/reference/transactions-history
466
469
  fetch all trades made by the user
467
470
  :param str|None symbol: unified market symbol
468
471
  :param int|None since: the earliest time in ms to fetch trades for
@@ -521,6 +524,7 @@ class zonda(Exchange):
521
524
 
522
525
  async def fetch_balance(self, params={}):
523
526
  """
527
+ see https://docs.zonda.exchange/reference/list-of-wallets
524
528
  query for balance and get the amount of funds available for trading or funds locked in orders
525
529
  :param dict params: extra parameters specific to the zonda api endpoint
526
530
  :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
@@ -531,6 +535,7 @@ class zonda(Exchange):
531
535
 
532
536
  async def fetch_order_book(self, symbol: str, limit: Optional[int] = None, params={}):
533
537
  """
538
+ see https://docs.zonda.exchange/reference/orderbook-2
534
539
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
535
540
  :param str symbol: unified symbol of the market to fetch the order book for
536
541
  :param int|None limit: the maximum amount of order book entries to return
@@ -614,6 +619,7 @@ class zonda(Exchange):
614
619
 
615
620
  async def fetch_ticker(self, symbol: str, params={}):
616
621
  """
622
+ see https://docs.zonda.exchange/reference/market-statistics
617
623
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
618
624
  :param str symbol: unified symbol of the market to fetch the ticker for
619
625
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -642,6 +648,7 @@ class zonda(Exchange):
642
648
 
643
649
  async def fetch_tickers(self, symbols: Optional[List[str]] = None, params={}):
644
650
  """
651
+ see https://docs.zonda.exchange/reference/market-statistics
645
652
  fetches price tickers for multiple markets, statistical calculations with the information calculated over the past 24 hours each market
646
653
  :param [str]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
647
654
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -668,6 +675,7 @@ class zonda(Exchange):
668
675
 
669
676
  async def fetch_ledger(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
670
677
  """
678
+ see https://docs.zonda.exchange/reference/operations-history
671
679
  fetch the history of changes, actions done by the user or operations that altered balance of the user
672
680
  :param str|None code: unified currency code, default is None
673
681
  :param int|None since: timestamp in ms of the earliest ledger entry, default is None
@@ -1035,6 +1043,7 @@ class zonda(Exchange):
1035
1043
 
1036
1044
  async def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Optional[int] = None, limit: Optional[int] = None, params={}):
1037
1045
  """
1046
+ see https://docs.zonda.exchange/reference/candles-chart
1038
1047
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
1039
1048
  :param str symbol: unified symbol of the market to fetch OHLCV data for
1040
1049
  :param str timeframe: the length of time each candle represents
@@ -1152,6 +1161,7 @@ class zonda(Exchange):
1152
1161
 
1153
1162
  async def fetch_trades(self, symbol: str, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1154
1163
  """
1164
+ see https://docs.zonda.exchange/reference/last-transactions
1155
1165
  get the list of most recent trades for a particular symbol
1156
1166
  :param str symbol: unified symbol of the market to fetch trades for
1157
1167
  :param int|None since: timestamp in ms of the earliest trade to fetch
@@ -1295,6 +1305,7 @@ class zonda(Exchange):
1295
1305
 
1296
1306
  async def cancel_order(self, id: str, symbol: Optional[str] = None, params={}):
1297
1307
  """
1308
+ see https://docs.zonda.exchange/reference/cancel-order
1298
1309
  cancels an open order
1299
1310
  :param str id: order id
1300
1311
  :param str symbol: unified symbol of the market the order was made in
@@ -1351,6 +1362,7 @@ class zonda(Exchange):
1351
1362
 
1352
1363
  async def fetch_deposit_address(self, code: str, params={}):
1353
1364
  """
1365
+ see https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1354
1366
  fetch the deposit address for a currency associated with self account
1355
1367
  :param str code: unified currency code
1356
1368
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -1382,6 +1394,7 @@ class zonda(Exchange):
1382
1394
 
1383
1395
  async def fetch_deposit_addresses(self, codes=None, params={}):
1384
1396
  """
1397
+ see https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1385
1398
  fetch deposit addresses for multiple currencies and chain types
1386
1399
  :param [str]|None codes: zonda does not support filtering filtering by multiple codes and will ignore self parameter.
1387
1400
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -1407,6 +1420,7 @@ class zonda(Exchange):
1407
1420
 
1408
1421
  async def transfer(self, code: str, amount, fromAccount, toAccount, params={}):
1409
1422
  """
1423
+ see https://docs.zonda.exchange/reference/internal-transfer
1410
1424
  transfer currency internally between wallets on the same account
1411
1425
  :param str code: unified currency code
1412
1426
  :param float amount: amount to transfer
@@ -1515,6 +1529,7 @@ class zonda(Exchange):
1515
1529
 
1516
1530
  async def withdraw(self, code: str, amount, address, tag=None, params={}):
1517
1531
  """
1532
+ see https://docs.zonda.exchange/reference/crypto-withdrawal-1
1518
1533
  make a withdrawal
1519
1534
  :param str code: unified currency code
1520
1535
  :param float amount: the amount to withdraw
ccxt/base/exchange.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # -----------------------------------------------------------------------------
6
6
 
7
- __version__ = '3.0.80'
7
+ __version__ = '3.0.81'
8
8
 
9
9
  # -----------------------------------------------------------------------------
10
10
 
@@ -2236,30 +2236,24 @@ class Exchange(object):
2236
2236
  raise ArgumentsRequired(self.id + ' calculateFee() - you have provided incompatible arguments - "market" type order can not be "maker". Change either the "type" or the "takerOrMaker" argument to calculate the fee.')
2237
2237
  market = self.markets[symbol]
2238
2238
  feeSide = self.safe_string(market, 'feeSide', 'quote')
2239
- key = 'quote'
2240
- cost = None
2241
- amountString = self.number_to_string(amount)
2242
- priceString = self.number_to_string(price)
2243
- if feeSide == 'quote':
2244
- # the fee is always in quote currency
2245
- cost = Precise.string_mul(amountString, priceString)
2246
- elif feeSide == 'base':
2247
- # the fee is always in base currency
2248
- cost = amountString
2249
- elif feeSide == 'get':
2239
+ useQuote = None
2240
+ if feeSide == 'get':
2250
2241
  # the fee is always in the currency you get
2251
- cost = amountString
2252
- if side == 'sell':
2253
- cost = Precise.string_mul(cost, priceString)
2254
- else:
2255
- key = 'base'
2242
+ useQuote = side == 'sell'
2256
2243
  elif feeSide == 'give':
2257
2244
  # the fee is always in the currency you give
2258
- cost = amountString
2259
- if side == 'buy':
2260
- cost = Precise.string_mul(cost, priceString)
2261
- else:
2262
- key = 'base'
2245
+ useQuote = side == 'buy'
2246
+ else:
2247
+ # the fee is always in feeSide currency
2248
+ useQuote = feeSide == 'quote'
2249
+ cost = self.number_to_string(amount)
2250
+ key = None
2251
+ if useQuote:
2252
+ priceString = self.number_to_string(price)
2253
+ cost = Precise.string_mul(cost, priceString)
2254
+ key = 'quote'
2255
+ else:
2256
+ key = 'base'
2263
2257
  # for derivatives, the fee is in 'settle' currency
2264
2258
  if not market['spot']:
2265
2259
  key = 'settle'
@@ -2267,8 +2261,7 @@ class Exchange(object):
2267
2261
  if type == 'market':
2268
2262
  takerOrMaker = 'taker'
2269
2263
  rate = self.safe_string(market, takerOrMaker)
2270
- if cost is not None:
2271
- cost = Precise.string_mul(cost, rate)
2264
+ cost = Precise.string_mul(cost, rate)
2272
2265
  return {
2273
2266
  'type': takerOrMaker,
2274
2267
  'currency': market[key],
ccxt/krakenfutures.py CHANGED
@@ -81,8 +81,8 @@ class krakenfutures(Exchange):
81
81
  },
82
82
  'urls': {
83
83
  'test': {
84
- 'public': 'https://demo-futures.kraken.com/derivatives',
85
- 'private': 'https://demo-futures.kraken.com/derivatives',
84
+ 'public': 'https://demo-futures.kraken.com/derivatives/api/',
85
+ 'private': 'https://demo-futures.kraken.com/derivatives/api/',
86
86
  'www': 'https://demo-futures.kraken.com',
87
87
  },
88
88
  'logo': 'https://user-images.githubusercontent.com/24300605/81436764-b22fd580-9172-11ea-9703-742783e6376d.jpg',
ccxt/pro/__init__.py CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  # ----------------------------------------------------------------------------
6
6
 
7
- __version__ = '3.0.80'
7
+ __version__ = '3.0.81'
8
8
 
9
9
  # ----------------------------------------------------------------------------
10
10
 
@@ -67,7 +67,6 @@ from ccxt.pro.upbit import upbit # noqa
67
67
  from ccxt.pro.wazirx import wazirx # noqa: F401
68
68
  from ccxt.pro.whitebit import whitebit # noqa: F401
69
69
  from ccxt.pro.woo import woo # noqa: F401
70
- from ccxt.pro.zb import zb # noqa: F401
71
70
 
72
71
  exchanges = [
73
72
  'alpaca',
@@ -125,5 +124,4 @@ exchanges = [
125
124
  'wazirx',
126
125
  'whitebit',
127
126
  'woo',
128
- 'zb',
129
127
  ]
ccxt/pro/bybit.py CHANGED
@@ -170,7 +170,8 @@ class bybit(ccxt.async_support.bybit):
170
170
  """
171
171
  await self.load_markets()
172
172
  market = self.market(symbol)
173
- messageHash = 'ticker:' + market['symbol']
173
+ symbol = market['symbol']
174
+ messageHash = 'ticker:' + symbol
174
175
  url = self.get_url_by_market_type(symbol, False, params)
175
176
  params = self.clean_params(params)
176
177
  options = self.safe_value(self.options, 'watchTicker', {})
ccxt/pro/woo.py CHANGED
@@ -491,11 +491,14 @@ class woo(ccxt.async_support.woo):
491
491
  'cost': cost,
492
492
  'currency': self.safe_string(order, 'feeAsset'),
493
493
  }
494
- price = self.safe_float(order, 'price')
494
+ price = self.safe_number(order, 'price')
495
+ avgPrice = self.safe_number(order, 'avgPrice')
496
+ if (price == 0) and (avgPrice is not None):
497
+ price = avgPrice
495
498
  amount = self.safe_float(order, 'quantity')
496
499
  side = self.safe_string_lower(order, 'side')
497
500
  type = self.safe_string_lower(order, 'type')
498
- filled = self.safe_float(order, 'executedQuantity')
501
+ filled = self.safe_number(order, 'totalExecutedQuantity')
499
502
  totalExecQuantity = self.safe_float(order, 'totalExecutedQuantity')
500
503
  remaining = amount
501
504
  if amount >= totalExecQuantity:
@@ -504,7 +507,7 @@ class woo(ccxt.async_support.woo):
504
507
  status = self.parse_order_status(rawStatus)
505
508
  trades = None
506
509
  clientOrderId = self.safe_string(order, 'clientOrderId')
507
- return {
510
+ return self.safe_order({
508
511
  'info': order,
509
512
  'symbol': symbol,
510
513
  'id': orderId,
@@ -527,7 +530,7 @@ class woo(ccxt.async_support.woo):
527
530
  'status': status,
528
531
  'fee': fee,
529
532
  'trades': trades,
530
- }
533
+ })
531
534
 
532
535
  def handle_order_update(self, client: Client, message):
533
536
  #
ccxt/upbit.py CHANGED
@@ -397,6 +397,7 @@ class upbit(Exchange):
397
397
 
398
398
  def fetch_markets(self, params={}):
399
399
  """
400
+ see https://docs.upbit.com/reference/%EB%A7%88%EC%BC%93-%EC%BD%94%EB%93%9C-%EC%A1%B0%ED%9A%8C
400
401
  retrieves data on all markets for upbit
401
402
  :param dict params: extra parameters specific to the exchange api endpoint
402
403
  :returns [dict]: an array of objects representing market data
@@ -489,6 +490,7 @@ class upbit(Exchange):
489
490
 
490
491
  def fetch_balance(self, params={}):
491
492
  """
493
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EA%B3%84%EC%A2%8C-%EC%A1%B0%ED%9A%8C
492
494
  query for balance and get the amount of funds available for trading or funds locked in orders
493
495
  :param dict params: extra parameters specific to the upbit api endpoint
494
496
  :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
@@ -511,6 +513,7 @@ class upbit(Exchange):
511
513
 
512
514
  def fetch_order_books(self, symbols: Optional[List[str]] = None, limit: Optional[int] = None, params={}):
513
515
  """
516
+ see https://docs.upbit.com/reference/%ED%98%B8%EA%B0%80-%EC%A0%95%EB%B3%B4-%EC%A1%B0%ED%9A%8C
514
517
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data for multiple markets
515
518
  :param [str]|None symbols: list of unified market symbols, all symbols fetched if None, default is None
516
519
  :param int|None limit: not used by upbit fetchOrderBooks()
@@ -578,6 +581,7 @@ class upbit(Exchange):
578
581
 
579
582
  def fetch_order_book(self, symbol: str, limit: Optional[int] = None, params={}):
580
583
  """
584
+ see https://docs.upbit.com/reference/%ED%98%B8%EA%B0%80-%EC%A0%95%EB%B3%B4-%EC%A1%B0%ED%9A%8C
581
585
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
582
586
  :param str symbol: unified symbol of the market to fetch the order book for
583
587
  :param int|None limit: the maximum amount of order book entries to return
@@ -645,6 +649,7 @@ class upbit(Exchange):
645
649
 
646
650
  def fetch_tickers(self, symbols: Optional[List[str]] = None, params={}):
647
651
  """
652
+ see https://docs.upbit.com/reference/ticker%ED%98%84%EC%9E%AC%EA%B0%80-%EC%A0%95%EB%B3%B4
648
653
  fetches price tickers for multiple markets, statistical calculations with the information calculated over the past 24 hours each market
649
654
  :param [str]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
650
655
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -703,6 +708,7 @@ class upbit(Exchange):
703
708
 
704
709
  def fetch_ticker(self, symbol: str, params={}):
705
710
  """
711
+ see https://docs.upbit.com/reference/ticker%ED%98%84%EC%9E%AC%EA%B0%80-%EC%A0%95%EB%B3%B4
706
712
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
707
713
  :param str symbol: unified symbol of the market to fetch the ticker for
708
714
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -781,6 +787,7 @@ class upbit(Exchange):
781
787
 
782
788
  def fetch_trades(self, symbol: str, since: Optional[int] = None, limit: Optional[int] = None, params={}):
783
789
  """
790
+ see https://docs.upbit.com/reference/%EC%B5%9C%EA%B7%BC-%EC%B2%B4%EA%B2%B0-%EB%82%B4%EC%97%AD
784
791
  get the list of most recent trades for a particular symbol
785
792
  :param str symbol: unified symbol of the market to fetch trades for
786
793
  :param int|None since: timestamp in ms of the earliest trade to fetch
@@ -823,6 +830,7 @@ class upbit(Exchange):
823
830
 
824
831
  def fetch_trading_fee(self, symbol: str, params={}):
825
832
  """
833
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EA%B0%80%EB%8A%A5-%EC%A0%95%EB%B3%B4
826
834
  fetch the trading fees for a market
827
835
  :param str symbol: unified market symbol
828
836
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -910,6 +918,7 @@ class upbit(Exchange):
910
918
 
911
919
  def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Optional[int] = None, limit: Optional[int] = None, params={}):
912
920
  """
921
+ see https://docs.upbit.com/reference/%EB%B6%84minute-%EC%BA%94%EB%93%A4-1
913
922
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
914
923
  :param str symbol: unified symbol of the market to fetch OHLCV data for
915
924
  :param str timeframe: the length of time each candle represents
@@ -972,6 +981,7 @@ class upbit(Exchange):
972
981
 
973
982
  def create_order(self, symbol: str, type, side: OrderSide, amount, price=None, params={}):
974
983
  """
984
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8%ED%95%98%EA%B8%B0
975
985
  create a trade order
976
986
  :param str symbol: unified symbol of the market to create an order in
977
987
  :param str type: 'market' or 'limit'
@@ -1042,6 +1052,7 @@ class upbit(Exchange):
1042
1052
 
1043
1053
  def cancel_order(self, id: str, symbol: Optional[str] = None, params={}):
1044
1054
  """
1055
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EC%B7%A8%EC%86%8C
1045
1056
  cancels an open order
1046
1057
  :param str id: order id
1047
1058
  :param str|None symbol: not used by upbit cancelOrder()
@@ -1076,6 +1087,7 @@ class upbit(Exchange):
1076
1087
 
1077
1088
  def fetch_deposits(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1078
1089
  """
1090
+ see https://docs.upbit.com/reference/%EC%9E%85%EA%B8%88-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1079
1091
  fetch all deposits made to an account
1080
1092
  :param str|None code: unified currency code
1081
1093
  :param int|None since: the earliest time in ms to fetch deposits for
@@ -1115,6 +1127,7 @@ class upbit(Exchange):
1115
1127
 
1116
1128
  def fetch_withdrawals(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1117
1129
  """
1130
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EC%B6%9C%EA%B8%88-%EC%A1%B0%ED%9A%8C
1118
1131
  fetch all withdrawals made from an account
1119
1132
  :param str|None code: unified currency code
1120
1133
  :param int|None since: the earliest time in ms to fetch withdrawals for
@@ -1403,6 +1416,7 @@ class upbit(Exchange):
1403
1416
 
1404
1417
  def fetch_open_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1405
1418
  """
1419
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1406
1420
  fetch all unfilled currently open orders
1407
1421
  :param str|None symbol: unified market symbol
1408
1422
  :param int|None since: the earliest time in ms to fetch open orders for
@@ -1414,6 +1428,7 @@ class upbit(Exchange):
1414
1428
 
1415
1429
  def fetch_closed_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1416
1430
  """
1431
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1417
1432
  fetches information on multiple closed orders made by the user
1418
1433
  :param str|None symbol: unified market symbol of the market orders were made in
1419
1434
  :param int|None since: the earliest time in ms to fetch orders for
@@ -1425,6 +1440,7 @@ class upbit(Exchange):
1425
1440
 
1426
1441
  def fetch_canceled_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1427
1442
  """
1443
+ see https://docs.upbit.com/reference/%EC%A3%BC%EB%AC%B8-%EB%A6%AC%EC%8A%A4%ED%8A%B8-%EC%A1%B0%ED%9A%8C
1428
1444
  fetches information on multiple canceled orders made by the user
1429
1445
  :param str|None symbol: unified market symbol of the market orders were made in
1430
1446
  :param int|None since: timestamp in ms of the earliest order, default is None
@@ -1436,6 +1452,7 @@ class upbit(Exchange):
1436
1452
 
1437
1453
  def fetch_order(self, id: str, symbol: Optional[str] = None, params={}):
1438
1454
  """
1455
+ see https://docs.upbit.com/reference/%EA%B0%9C%EB%B3%84-%EC%A3%BC%EB%AC%B8-%EC%A1%B0%ED%9A%8C
1439
1456
  fetches information on an order made by the user
1440
1457
  :param str|None symbol: not used by upbit fetchOrder
1441
1458
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1493,6 +1510,7 @@ class upbit(Exchange):
1493
1510
 
1494
1511
  def fetch_deposit_addresses(self, codes=None, params={}):
1495
1512
  """
1513
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EC%9E%85%EA%B8%88-%EC%A3%BC%EC%86%8C-%EC%A1%B0%ED%9A%8C
1496
1514
  fetch deposit addresses for multiple currencies and chain types
1497
1515
  :param [str]|None codes: list of unified currency codes, default is None
1498
1516
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1544,6 +1562,7 @@ class upbit(Exchange):
1544
1562
 
1545
1563
  def fetch_deposit_address(self, code: str, params={}):
1546
1564
  """
1565
+ see https://docs.upbit.com/reference/%EC%A0%84%EC%B2%B4-%EC%9E%85%EA%B8%88-%EC%A3%BC%EC%86%8C-%EC%A1%B0%ED%9A%8C
1547
1566
  fetch the deposit address for a currency associated with self account
1548
1567
  :param str code: unified currency code
1549
1568
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1565,6 +1584,7 @@ class upbit(Exchange):
1565
1584
 
1566
1585
  def create_deposit_address(self, code: str, params={}):
1567
1586
  """
1587
+ see https://docs.upbit.com/reference/%EC%9E%85%EA%B8%88-%EC%A3%BC%EC%86%8C-%EC%83%9D%EC%84%B1-%EC%9A%94%EC%B2%AD
1568
1588
  create a currency deposit address
1569
1589
  :param str code: unified currency code of the currency for the deposit address
1570
1590
  :param dict params: extra parameters specific to the upbit api endpoint
@@ -1599,6 +1619,7 @@ class upbit(Exchange):
1599
1619
 
1600
1620
  def withdraw(self, code: str, amount, address, tag=None, params={}):
1601
1621
  """
1622
+ see https://docs.upbit.com/reference/%EC%9B%90%ED%99%94-%EC%B6%9C%EA%B8%88%ED%95%98%EA%B8%B0
1602
1623
  make a withdrawal
1603
1624
  :param str code: unified currency code
1604
1625
  :param float amount: the amount to withdraw
ccxt/zonda.py CHANGED
@@ -301,6 +301,7 @@ class zonda(Exchange):
301
301
 
302
302
  def fetch_markets(self, params={}):
303
303
  """
304
+ see https://docs.zonda.exchange/reference/ticker-1
304
305
  retrieves data on all markets for zonda
305
306
  :param dict params: extra parameters specific to the exchange api endpoint
306
307
  :returns [dict]: an array of objects representing market data
@@ -398,6 +399,7 @@ class zonda(Exchange):
398
399
 
399
400
  def fetch_open_orders(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
400
401
  """
402
+ see https://docs.zonda.exchange/reference/active-orders
401
403
  fetch all unfilled currently open orders
402
404
  :param str|None symbol: not used by zonda fetchOpenOrders
403
405
  :param int|None since: the earliest time in ms to fetch open orders for
@@ -463,6 +465,7 @@ class zonda(Exchange):
463
465
 
464
466
  def fetch_my_trades(self, symbol: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
465
467
  """
468
+ see https://docs.zonda.exchange/reference/transactions-history
466
469
  fetch all trades made by the user
467
470
  :param str|None symbol: unified market symbol
468
471
  :param int|None since: the earliest time in ms to fetch trades for
@@ -521,6 +524,7 @@ class zonda(Exchange):
521
524
 
522
525
  def fetch_balance(self, params={}):
523
526
  """
527
+ see https://docs.zonda.exchange/reference/list-of-wallets
524
528
  query for balance and get the amount of funds available for trading or funds locked in orders
525
529
  :param dict params: extra parameters specific to the zonda api endpoint
526
530
  :returns dict: a `balance structure <https://docs.ccxt.com/en/latest/manual.html?#balance-structure>`
@@ -531,6 +535,7 @@ class zonda(Exchange):
531
535
 
532
536
  def fetch_order_book(self, symbol: str, limit: Optional[int] = None, params={}):
533
537
  """
538
+ see https://docs.zonda.exchange/reference/orderbook-2
534
539
  fetches information on open orders with bid(buy) and ask(sell) prices, volumes and other data
535
540
  :param str symbol: unified symbol of the market to fetch the order book for
536
541
  :param int|None limit: the maximum amount of order book entries to return
@@ -614,6 +619,7 @@ class zonda(Exchange):
614
619
 
615
620
  def fetch_ticker(self, symbol: str, params={}):
616
621
  """
622
+ see https://docs.zonda.exchange/reference/market-statistics
617
623
  fetches a price ticker, a statistical calculation with the information calculated over the past 24 hours for a specific market
618
624
  :param str symbol: unified symbol of the market to fetch the ticker for
619
625
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -642,6 +648,7 @@ class zonda(Exchange):
642
648
 
643
649
  def fetch_tickers(self, symbols: Optional[List[str]] = None, params={}):
644
650
  """
651
+ see https://docs.zonda.exchange/reference/market-statistics
645
652
  fetches price tickers for multiple markets, statistical calculations with the information calculated over the past 24 hours each market
646
653
  :param [str]|None symbols: unified symbols of the markets to fetch the ticker for, all market tickers are returned if not assigned
647
654
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -668,6 +675,7 @@ class zonda(Exchange):
668
675
 
669
676
  def fetch_ledger(self, code: Optional[str] = None, since: Optional[int] = None, limit: Optional[int] = None, params={}):
670
677
  """
678
+ see https://docs.zonda.exchange/reference/operations-history
671
679
  fetch the history of changes, actions done by the user or operations that altered balance of the user
672
680
  :param str|None code: unified currency code, default is None
673
681
  :param int|None since: timestamp in ms of the earliest ledger entry, default is None
@@ -1035,6 +1043,7 @@ class zonda(Exchange):
1035
1043
 
1036
1044
  def fetch_ohlcv(self, symbol: str, timeframe='1m', since: Optional[int] = None, limit: Optional[int] = None, params={}):
1037
1045
  """
1046
+ see https://docs.zonda.exchange/reference/candles-chart
1038
1047
  fetches historical candlestick data containing the open, high, low, and close price, and the volume of a market
1039
1048
  :param str symbol: unified symbol of the market to fetch OHLCV data for
1040
1049
  :param str timeframe: the length of time each candle represents
@@ -1152,6 +1161,7 @@ class zonda(Exchange):
1152
1161
 
1153
1162
  def fetch_trades(self, symbol: str, since: Optional[int] = None, limit: Optional[int] = None, params={}):
1154
1163
  """
1164
+ see https://docs.zonda.exchange/reference/last-transactions
1155
1165
  get the list of most recent trades for a particular symbol
1156
1166
  :param str symbol: unified symbol of the market to fetch trades for
1157
1167
  :param int|None since: timestamp in ms of the earliest trade to fetch
@@ -1295,6 +1305,7 @@ class zonda(Exchange):
1295
1305
 
1296
1306
  def cancel_order(self, id: str, symbol: Optional[str] = None, params={}):
1297
1307
  """
1308
+ see https://docs.zonda.exchange/reference/cancel-order
1298
1309
  cancels an open order
1299
1310
  :param str id: order id
1300
1311
  :param str symbol: unified symbol of the market the order was made in
@@ -1351,6 +1362,7 @@ class zonda(Exchange):
1351
1362
 
1352
1363
  def fetch_deposit_address(self, code: str, params={}):
1353
1364
  """
1365
+ see https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1354
1366
  fetch the deposit address for a currency associated with self account
1355
1367
  :param str code: unified currency code
1356
1368
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -1382,6 +1394,7 @@ class zonda(Exchange):
1382
1394
 
1383
1395
  def fetch_deposit_addresses(self, codes=None, params={}):
1384
1396
  """
1397
+ see https://docs.zonda.exchange/reference/deposit-addresses-for-crypto
1385
1398
  fetch deposit addresses for multiple currencies and chain types
1386
1399
  :param [str]|None codes: zonda does not support filtering filtering by multiple codes and will ignore self parameter.
1387
1400
  :param dict params: extra parameters specific to the zonda api endpoint
@@ -1407,6 +1420,7 @@ class zonda(Exchange):
1407
1420
 
1408
1421
  def transfer(self, code: str, amount, fromAccount, toAccount, params={}):
1409
1422
  """
1423
+ see https://docs.zonda.exchange/reference/internal-transfer
1410
1424
  transfer currency internally between wallets on the same account
1411
1425
  :param str code: unified currency code
1412
1426
  :param float amount: amount to transfer
@@ -1515,6 +1529,7 @@ class zonda(Exchange):
1515
1529
 
1516
1530
  def withdraw(self, code: str, amount, address, tag=None, params={}):
1517
1531
  """
1532
+ see https://docs.zonda.exchange/reference/crypto-withdrawal-1
1518
1533
  make a withdrawal
1519
1534
  :param str code: unified currency code
1520
1535
  :param float amount: the amount to withdraw
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 3.0.80
3
+ Version: 3.0.81
4
4
  Summary: A JavaScript / Python / PHP cryptocurrency trading library with support for 130+ exchanges
5
5
  Home-page: https://ccxt.com
6
6
  Author: Igor Kroitor
@@ -44,7 +44,7 @@ Requires-Dist: flake8 (==3.7.9) ; extra == 'qa'
44
44
 
45
45
  # CCXT – CryptoCurrency eXchange Trading Library
46
46
 
47
- [![Build Status](https://travis-ci.com/ccxt/ccxt.svg?branch=master)](https://travis-ci.com/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-113-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Twitter Follow](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://twitter.com/ccxt_official)
47
+ [![Build Status](https://travis-ci.com/ccxt/ccxt.svg?branch=master)](https://travis-ci.com/ccxt/ccxt) [![npm](https://img.shields.io/npm/v/ccxt.svg)](https://npmjs.com/package/ccxt) [![PyPI](https://img.shields.io/pypi/v/ccxt.svg)](https://pypi.python.org/pypi/ccxt) [![NPM Downloads](https://img.shields.io/npm/dy/ccxt.svg)](https://www.npmjs.com/package/ccxt) [![Discord](https://img.shields.io/discord/690203284119617602?logo=discord&logoColor=white)](https://discord.gg/ccxt) [![Supported Exchanges](https://img.shields.io/badge/exchanges-112-blue.svg)](https://github.com/ccxt/ccxt/wiki/Exchange-Markets) [![Twitter Follow](https://img.shields.io/twitter/follow/ccxt_official.svg?style=social&label=CCXT)](https://twitter.com/ccxt_official)
48
48
 
49
49
  A JavaScript / Python / PHP library for cryptocurrency trading and e-commerce with support for many bitcoin/ether/altcoin exchange markets and merchant APIs.
50
50
 
@@ -100,7 +100,7 @@ Current feature list:
100
100
 
101
101
  ## Supported Cryptocurrency Exchange Markets
102
102
 
103
- The CCXT library currently supports the following 106 cryptocurrency exchange markets and trading APIs:
103
+ The CCXT library currently supports the following 105 cryptocurrency exchange markets and trading APIs:
104
104
 
105
105
  | logo | id | name | ver | certified | pro |
106
106
  |-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------------|---------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------:|-----------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------|
@@ -208,7 +208,6 @@ The CCXT library currently supports the following 106 cryptocurrency exchange ma
208
208
  | [![xt](https://user-images.githubusercontent.com/14319357/232636712-466df2fc-560a-4ca4-aab2-b1d954a58e24.jpg)](https://www.xt.com/en/accounts/register?ref=9PTM9VW) | xt | [XT](https://www.xt.com/en/accounts/register?ref=9PTM9VW) | [![API Version 4](https://img.shields.io/badge/4-lightgray)](https://doc.xt.com/) | | |
209
209
  | [![yobit](https://user-images.githubusercontent.com/1294454/27766910-cdcbfdae-5eea-11e7-9859-03fea873272d.jpg)](https://www.yobit.net) | yobit | [YoBit](https://www.yobit.net) | [![API Version 3](https://img.shields.io/badge/3-lightgray)](https://www.yobit.net/en/api/) | | |
210
210
  | [![zaif](https://user-images.githubusercontent.com/1294454/27766927-39ca2ada-5eeb-11e7-972f-1b4199518ca6.jpg)](https://zaif.jp) | zaif | [Zaif](https://zaif.jp) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://techbureau-api-document.readthedocs.io/ja/latest/index.html) | | |
211
- | [![zb](https://user-images.githubusercontent.com/1294454/32859187-cd5214f0-ca5e-11e7-967d-96568e2e2bd1.jpg)](https://www.zb.com/en/register?ref=4301lera) | zb | [ZB](https://www.zb.com/en/register?ref=4301lera) | [![API Version 1](https://img.shields.io/badge/1-lightgray)](https://www.zb.com/i/developer) | | [![CCXT Pro](https://img.shields.io/badge/CCXT-Pro-black)](https://ccxt.pro) |
212
211
  | [![zonda](https://user-images.githubusercontent.com/1294454/159202310-a0e38007-5e7c-4ba9-a32f-c8263a0291fe.jpg)](https://auth.zondaglobal.com/ref/jHlbB4mIkdS1) | zonda | [Zonda](https://auth.zondaglobal.com/ref/jHlbB4mIkdS1) | [![API Version *](https://img.shields.io/badge/*-lightgray)](https://docs.zonda.exchange/) | | |
213
212
 
214
213
  The list above is updated frequently, new crypto markets, exchanges, bug fixes, and API endpoints are introduced on a regular basis. See the [Manual](https://docs.ccxt.com/#/README) for more details. If you can't find a cryptocurrency exchange in the list above and want it to be added, post a link to it by opening an issue here on GitHub or send us an email.
@@ -266,13 +265,13 @@ console.log(version, Object.keys(exchanges));
266
265
 
267
266
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
268
267
 
269
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@3.0.80/dist/ccxt.browser.js
270
- * unpkg: https://unpkg.com/ccxt@3.0.80/dist/ccxt.browser.js
268
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@3.0.81/dist/ccxt.browser.js
269
+ * unpkg: https://unpkg.com/ccxt@3.0.81/dist/ccxt.browser.js
271
270
 
272
271
  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.
273
272
 
274
273
  ```HTML
275
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@3.0.80/dist/ccxt.browser.js"></script>
274
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@3.0.81/dist/ccxt.browser.js"></script>
276
275
  ```
277
276
 
278
277
  Creates a global `ccxt` object:
@@ -1,4 +1,4 @@
1
- ccxt/__init__.py,sha256=Ph3omsog7OcCm19AEev0UzSQG6yvWUYbGWAMcZC2qik,16104
1
+ ccxt/__init__.py,sha256=uJfzKqlkK1zPhgKSpPuZ9KW975Y9RRqFyTOh9juaFKY,16011
2
2
  ccxt/ace.py,sha256=Q2acjWK_iEzK3VPi8nlzsrnSbdALkcpFDe7Db46GSBE,41274
3
3
  ccxt/alpaca.py,sha256=pCq-FQZ5zGb7buHo3afgxyeLgSbrsr9S6gRwpB52iKQ,33103
4
4
  ccxt/ascendex.py,sha256=iDBsx-rUYqrLIG3I8iDBlH_aToUmr9Ocb6qfXHyU2tU,127608
@@ -73,7 +73,7 @@ ccxt/independentreserve.py,sha256=ahjFsF5ER9N7pLoXdtLibEi6A0A4NQATebkridOfmuM,29
73
73
  ccxt/indodax.py,sha256=TVyb2Hnvv548B4m7U6XZsz-L1ys65LsPQavoCD4kD-s,42378
74
74
  ccxt/itbit.py,sha256=raVWHPOc3hNcpmTB9VymcPH8I3su9V3DLuuCTj5EAgY,34960
75
75
  ccxt/kraken.py,sha256=1L7aJXVH2rVpBfB-D7k7TSEIY1cncWabs9yXgwnVRoU,101346
76
- ccxt/krakenfutures.py,sha256=j6tA_r0H-pkmsqSiUmqUUPcDl2YjaKHCa25Sy5_Ewgk,81541
76
+ ccxt/krakenfutures.py,sha256=4szzqP_2_OPjQsfWNVmBiXhDdXlZBaeTTF9neWGNi88,81551
77
77
  ccxt/kucoin.py,sha256=KMlchJqk3zXwLek1zV-b7LSXxHTJ1o6hkrFXtzhm5X4,160224
78
78
  ccxt/kucoinfutures.py,sha256=9XEqg3BB6NLGplZ3FFPrCxYMxvdgFjHAtvWe2dKW08Y,92241
79
79
  ccxt/kuna.py,sha256=1n3qKR9s4p4db3x2iTvVERKmVmTPUV9EPlp6sR974Pg,37694
@@ -102,7 +102,7 @@ ccxt/stex.py,sha256=TOG35NsYDp_BH4bKhTnzbL0KA-lq6rtbiDSXyThzlG4,115224
102
102
  ccxt/tidex.py,sha256=VKZIXvl1a2TXgbRpWtb0RQtH0bqv66SohPwcBaTTGLU,42350
103
103
  ccxt/timex.py,sha256=NE2xk9o9w9YoUnuTrDQtMmCAxLT9RhRKmVZEmHpBXJg,65299
104
104
  ccxt/tokocrypto.py,sha256=2NF_VtHuPU65aoUr9umuCsdFBm050uutJgluO0ZH5bA,117662
105
- ccxt/upbit.py,sha256=Ts_2JibYy7zUlPb-Z9HSIvzQ_E98BF99N6TVfCTsnMk,73307
105
+ ccxt/upbit.py,sha256=CNpMblxG3n6M7Wwiw025h5vTnn3cU9SbW6xLWo-B_WQ,75474
106
106
  ccxt/wavesexchange.py,sha256=_zQ0iV9m4MkAV5C2wQ4jxzB5YRqeSu0qSN9CFsOkfec,103388
107
107
  ccxt/wazirx.py,sha256=KW1YzWQr1FpG3GTcEKtS7aeBO5p2j7wYvpJLL2d0v-U,34646
108
108
  ccxt/whitebit.py,sha256=EGQaoXDSfnJU8n1V7mYALnqimQm0hQOTqV20XYUmeWc,91826
@@ -111,8 +111,8 @@ ccxt/xt.py,sha256=Po2QrGcz17AZAynP9CrF8UuLmoRrstTbSCw95LEFhug,187438
111
111
  ccxt/yobit.py,sha256=RneZFaVsrpZyXZm5-FnMl8XS15v3kV6AGcvr0lhL3Fw,50719
112
112
  ccxt/zaif.py,sha256=gOT3ZeyX4mBXTTTHcafk8_V-l1Ge3VTfUUXIuc4_zvM,27873
113
113
  ccxt/zb.py,sha256=8fNNN13jKixNRGQWr9KFZbOvAVU7E__XIM92urdyA08,183857
114
- ccxt/zonda.py,sha256=1wZrIrVQQ5mj4DulIrpyCIOKz-wBLw-6jrjfACRzFWk,72961
115
- ccxt/async_support/__init__.py,sha256=bEGfBvm3XhEnaoV96bQecpfZ3fdhwjkkM3IYrXUThVs,15957
114
+ ccxt/zonda.py,sha256=F8VoG5X-uKpSR3PlKwYz4u8CFv-cWcqXEeo5g8fZZ5o,73979
115
+ ccxt/async_support/__init__.py,sha256=Y68jU14ZCg5ocsCM52dY5-LfekWCmGMdMi3kB0GTK9k,15854
116
116
  ccxt/async_support/ace.py,sha256=3M1YVkg9dY41oNGApTDNrVa-fW8nnL282tQyYU39KAM,41498
117
117
  ccxt/async_support/alpaca.py,sha256=EZJOhFRNn1B7dYFOGXLTTkv9hQu0DO2uYWl2T2eC4cs,33249
118
118
  ccxt/async_support/ascendex.py,sha256=8SUoDluuPnT7xQkAgV2yOonQ-YyFBmra_y7lcTlxDsU,128222
@@ -187,7 +187,7 @@ ccxt/async_support/independentreserve.py,sha256=V0PKqATSIt8-DOM2TUuh0G-gq0OFIk8r
187
187
  ccxt/async_support/indodax.py,sha256=Fn8uTqtr25XqP30S33m_5q4pLhddRyZmCJtlRrhHicc,42650
188
188
  ccxt/async_support/itbit.py,sha256=nSiSPygyEAiDm5kcpRYFJGXjx631XB3oGK6M8zGoiDs,35208
189
189
  ccxt/async_support/kraken.py,sha256=vJuOMXrFAQ4Dn09B9WZlDsihBcwV7VD-mY50jvSgWd0,101888
190
- ccxt/async_support/krakenfutures.py,sha256=o-zT2BIMJO26P00u3kNUkx49vqc4MED42tQAYtq2LxE,81843
190
+ ccxt/async_support/krakenfutures.py,sha256=1FfAbyCyeqHgixJJIQ5dB97QCF_OQCBxH3rkAhPqdUc,81853
191
191
  ccxt/async_support/kucoin.py,sha256=AnjZFeY3Y2pTqPx3U8MV6XyJfX3A0ojUr2RsJXkk1T4,160838
192
192
  ccxt/async_support/kucoinfutures.py,sha256=xli4IaErxVtzsQk-E_sek0p53iTBUZ2XLo_TlBqQSog,92687
193
193
  ccxt/async_support/kuna.py,sha256=bFuHuBrOQ1gId10LWThr9Sit_iEMP_d3NtfIGgGiGhM,37942
@@ -216,7 +216,7 @@ ccxt/async_support/stex.py,sha256=la6NV2LAQ6fDNpOEc--mxPHBJt3pac6vIgf5e4R58ac,11
216
216
  ccxt/async_support/tidex.py,sha256=0Oi8rhjB8SYbwRpUO51MstxpEBqalAGhGqgvJLo9-wE,42598
217
217
  ccxt/async_support/timex.py,sha256=ry8cokF1uk2uMYAmCspoWVhw4ROjF_sD10xshf9a3pU,65631
218
218
  ccxt/async_support/tokocrypto.py,sha256=CZfcBsIJYCe0utI4TZnilyeZqJJaLkmwJa8jyyjp6BM,118006
219
- ccxt/async_support/upbit.py,sha256=3rz1wXOhMfK7MpRWi_1Pa9LetDoqDFlXWnTYcXG59uw,73741
219
+ ccxt/async_support/upbit.py,sha256=9dISQeUwNHY-vywIOpRE0pIFcGJgbEb0U9Kiaqs4jf8,75908
220
220
  ccxt/async_support/wavesexchange.py,sha256=2J2iZn4rKqy5UKmtAh3K_7cvyfSLtJKmlH3ktJps-6k,103882
221
221
  ccxt/async_support/wazirx.py,sha256=Mm1Y4XQmRS2fvEup32rFGQxvpu5SNTCxEXnL9WwREas,34894
222
222
  ccxt/async_support/whitebit.py,sha256=zKGssk6kdgmxmVmKzsIoZZSuBziQ44FOwsHtDfMwLaQ,92278
@@ -225,9 +225,9 @@ ccxt/async_support/xt.py,sha256=NrQq0SGnqpxbOtlvJ8MhRKDSCGN1ZnOV_V-ftSt3wOc,1885
225
225
  ccxt/async_support/yobit.py,sha256=j4GA9G3bK9XXrDPESuLroNASqXIqssEbAH0Knq5qPuw,51003
226
226
  ccxt/async_support/zaif.py,sha256=_S6uihCQHfdqJ_oUzn2qfVq15xlGTojWUfQFEwhxb8c,28055
227
227
  ccxt/async_support/zb.py,sha256=W8HHyssjCLTugSRs80TnAwGJl85vp7nyNPOn9RLpXFk,184533
228
- ccxt/async_support/zonda.py,sha256=mJ9_5W_dh8Euycbpn4HdwUOJDMaTmGUqQSrZTDYp4kE,73251
228
+ ccxt/async_support/zonda.py,sha256=r6UHRFjnuLWxz-UakesVzeIYlAOQ8h14luYjSmZVsR8,74269
229
229
  ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
230
- ccxt/async_support/base/exchange.py,sha256=g75hu0xDgwCPFi62gjJ4DJJ9yvWb9IfV8gnPJwSC1Pc,126531
230
+ ccxt/async_support/base/exchange.py,sha256=fTx5zPauXiTPKDVOP98Wa2U-j-PwnCrXWNSnlEECRJQ,126219
231
231
  ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
232
232
  ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
233
233
  ccxt/async_support/base/ws/aiohttp_client.py,sha256=xmlZV30Vb9Kq7JCm3D5FuEmuj1zp5H4F4hrz8-Y-Ir4,4999
@@ -241,10 +241,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GH-475Ni0mLOx7mUDnz4jjzaGkh
241
241
  ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
242
242
  ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
243
243
  ccxt/base/errors.py,sha256=-LVeTNyXvu3QEgb-p-KzMpcBgzHlvFTwDzmZK7Gfc14,3401
244
- ccxt/base/exchange.py,sha256=7vg-yONsscj5wgasWSIxZDFvWN_FSnF-inYsiLhvWVk,172257
244
+ ccxt/base/exchange.py,sha256=8GKfNrUnJAQWwfxJ5R_xQY7uSuxcwgWXVyrrjHqXt7s,171945
245
245
  ccxt/base/precise.py,sha256=_xfu54sV0vWNnOfGTKRFykeuWP8mn4K1m9lk1tcllX4,8565
246
246
  ccxt/base/types.py,sha256=Qt9lk3li4YY8-EoOhDqUew86jcjeBGDwExV4Pwna_g8,416
247
- ccxt/pro/__init__.py,sha256=lnJqNd3pdcIhEXAvXNiNr9hW6SZR4V46OA8dLXrm4k0,6128
247
+ ccxt/pro/__init__.py,sha256=kvDPQSZdgZoA2J8nS-1YUONMyJnAaKCAWaG506TQyBI,6031
248
248
  ccxt/pro/alpaca.py,sha256=j9EpnOJEzZN7uP2HQhHYGVNYxJybn3HUI25hp8NoIbg,26692
249
249
  ccxt/pro/ascendex.py,sha256=grd7zUYM3y9u7juiIvCfGTW2Bmxxb0NUdTqeI4Sj4js,34571
250
250
  ccxt/pro/bequant.py,sha256=qz8JjnpkAQY_CFiFSKGqrjjgZ2167_TBKjSJOb9NeDw,1081
@@ -264,7 +264,7 @@ ccxt/pro/bitstamp.py,sha256=HglqOpjMJQRR_bSb3i7tmZ0MGmlGoBjQ_o0hth4Wsz8,20796
264
264
  ccxt/pro/bittrex.py,sha256=GH2OcIkLmEVRBoINPgtrgaWxB5kCD-aUBDMPb9Wp8Yw,36729
265
265
  ccxt/pro/bitvavo.py,sha256=hocFZhE8DOJ7IGC7LkXRTjOx2SsstfF2P8tsmPfewmo,26033
266
266
  ccxt/pro/btcex.py,sha256=oqbCzyNQ5hKFsSmuDndK27fdLpwa1rhrvs9tMMKUsNU,31156
267
- ccxt/pro/bybit.py,sha256=2mSpyTX88ckgLwQC4nfw9q2H4AAzMxpRkxJweN4kTO0,60648
267
+ ccxt/pro/bybit.py,sha256=b3EuPsdcVuRDzPdkjQOwj9gNyipVi__6--vy5Rt1ITQ,60672
268
268
  ccxt/pro/cex.py,sha256=CzZZF3ujYLva8lt1DmXwcurtEnvTNoKzbCQXv_aqto0,44916
269
269
  ccxt/pro/coinbaseprime.py,sha256=d5lgKZ8TKAOnYCGAD9e7AYjGQhtkWoNX7Q3eUGx0zEw,1121
270
270
  ccxt/pro/coinbasepro.py,sha256=lK_HgCPBTN1C7IC_ew_3edDvx52J-B-1MJiV3O0bMKM,29093
@@ -299,7 +299,7 @@ ccxt/pro/ripio.py,sha256=YfkBjaAe-Es4ohqr4iilgi-MHP2cLrz-FuRF_7kl3CQ,12104
299
299
  ccxt/pro/upbit.py,sha256=yJMxsOxs5Pnr20rJ8y-5i0LxbNSEOr_5kl7xsQYKRrk,9479
300
300
  ccxt/pro/wazirx.py,sha256=ESXhV6VT9-wdxTPMsUBip_B25MtclCAQ8Tx6QpmUX6I,29886
301
301
  ccxt/pro/whitebit.py,sha256=o_7JghOfacou3M7ZVgijd9kt8FTD6-QapT9zpoMjL-M,34303
302
- ccxt/pro/woo.py,sha256=JdwPm0laodC1pEZuFTVEaZX4DjlrzoiT_lbXSCdvh9c,24888
302
+ ccxt/pro/woo.py,sha256=KIU8LgArqDEjoiFiCUStml9pcqSUxvejVrylPhGOcdo,25048
303
303
  ccxt/pro/zb.py,sha256=Jq0sgbb8-wzI96xFd7hDS4aNpNeE8sCRe4-9-71kXPQ,21557
304
304
  ccxt/static_dependencies/__init__.py,sha256=rFJ_bcTL4-KqFz1Sb1OsVUrJxlpdJiKwc_FLu7HENFg,30
305
305
  ccxt/static_dependencies/ecdsa/__init__.py,sha256=Xaj0G79BLtBt2YZcOOMV8qOlQZ7fIJznNiHhiEEZfQA,594
@@ -349,7 +349,7 @@ ccxt/test/base/test_ticker.py,sha256=WAyiRzelQe7nxyFPcJWS84_EQh7hv9HaYmiBKZ6-Hwk
349
349
  ccxt/test/base/test_trade.py,sha256=w8CPWfyqXxQCgPfk2vpdKnJpDF2ZFiKDjmna7WZVQzw,1850
350
350
  ccxt/test/base/test_trading_fee.py,sha256=l9QJXlV9R6GTIcpCavbUqgZdHQosRrBVxqGQWIxyftQ,1081
351
351
  ccxt/test/base/test_transaction.py,sha256=BTbB4UHHXkrvYgwbrhh867nVRlevmIkIrz1W_odlQJI,1434
352
- ccxt-3.0.80.dist-info/METADATA,sha256=JkxQ8ZRZNql8xV9B3dtpSEPlhhw23pQX97ZwDotCTc0,111796
353
- ccxt-3.0.80.dist-info/WHEEL,sha256=bb2Ot9scclHKMOLDEHY6B2sicWOgugjFKaJsT7vwMQo,110
354
- ccxt-3.0.80.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
355
- ccxt-3.0.80.dist-info/RECORD,,
352
+ ccxt-3.0.81.dist-info/METADATA,sha256=-PItCUhfear0TlRRyYca64lgAc0LMxwx4A96KyMaESY,111103
353
+ ccxt-3.0.81.dist-info/WHEEL,sha256=bb2Ot9scclHKMOLDEHY6B2sicWOgugjFKaJsT7vwMQo,110
354
+ ccxt-3.0.81.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
355
+ ccxt-3.0.81.dist-info/RECORD,,
File without changes