ccxt 4.4.15__py2.py3-none-any.whl → 4.4.16__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.
Files changed (145) hide show
  1. ccxt/__init__.py +1 -1
  2. ccxt/ascendex.py +5 -5
  3. ccxt/async_support/__init__.py +1 -1
  4. ccxt/async_support/ascendex.py +5 -5
  5. ccxt/async_support/base/exchange.py +1 -1
  6. ccxt/async_support/bigone.py +6 -4
  7. ccxt/async_support/binance.py +58 -7
  8. ccxt/async_support/bingx.py +7 -6
  9. ccxt/async_support/bit2c.py +6 -4
  10. ccxt/async_support/bitbank.py +6 -4
  11. ccxt/async_support/bitbns.py +6 -4
  12. ccxt/async_support/bitfinex.py +4 -2
  13. ccxt/async_support/bitfinex2.py +4 -2
  14. ccxt/async_support/bitget.py +6 -5
  15. ccxt/async_support/bitmart.py +5 -4
  16. ccxt/async_support/bitmex.py +4 -4
  17. ccxt/async_support/bitso.py +5 -4
  18. ccxt/async_support/bitstamp.py +6 -4
  19. ccxt/async_support/bitvavo.py +6 -4
  20. ccxt/async_support/blockchaincom.py +11 -8
  21. ccxt/async_support/blofin.py +21 -0
  22. ccxt/async_support/bybit.py +6 -6
  23. ccxt/async_support/cex.py +5 -4
  24. ccxt/async_support/coinbase.py +4 -4
  25. ccxt/async_support/coinex.py +5 -5
  26. ccxt/async_support/coinone.py +6 -3
  27. ccxt/async_support/coinsph.py +5 -5
  28. ccxt/async_support/cryptocom.py +5 -4
  29. ccxt/async_support/currencycom.py +5 -5
  30. ccxt/async_support/delta.py +7 -5
  31. ccxt/async_support/deribit.py +6 -4
  32. ccxt/async_support/digifinex.py +6 -4
  33. ccxt/async_support/exmo.py +6 -4
  34. ccxt/async_support/gate.py +5 -4
  35. ccxt/async_support/gemini.py +4 -3
  36. ccxt/async_support/hashkey.py +7 -5
  37. ccxt/async_support/hitbtc.py +6 -5
  38. ccxt/async_support/hollaex.py +6 -5
  39. ccxt/async_support/htx.py +15 -5
  40. ccxt/async_support/hyperliquid.py +8 -7
  41. ccxt/async_support/idex.py +4 -4
  42. ccxt/async_support/independentreserve.py +4 -4
  43. ccxt/async_support/indodax.py +3 -3
  44. ccxt/async_support/kraken.py +7 -5
  45. ccxt/async_support/kucoin.py +6 -5
  46. ccxt/async_support/kucoinfutures.py +5 -3
  47. ccxt/async_support/kuna.py +5 -3
  48. ccxt/async_support/lbank.py +14 -12
  49. ccxt/async_support/lykke.py +6 -4
  50. ccxt/async_support/mexc.py +6 -6
  51. ccxt/async_support/ndax.py +33 -5
  52. ccxt/async_support/oceanex.py +4 -4
  53. ccxt/async_support/okcoin.py +8 -6
  54. ccxt/async_support/okx.py +17 -6
  55. ccxt/async_support/onetrading.py +6 -5
  56. ccxt/async_support/oxfun.py +6 -6
  57. ccxt/async_support/paymium.py +6 -5
  58. ccxt/async_support/phemex.py +8 -6
  59. ccxt/async_support/poloniex.py +6 -4
  60. ccxt/async_support/probit.py +7 -6
  61. ccxt/async_support/timex.py +4 -4
  62. ccxt/async_support/tokocrypto.py +5 -5
  63. ccxt/async_support/upbit.py +7 -6
  64. ccxt/async_support/wavesexchange.py +9 -9
  65. ccxt/async_support/wazirx.py +24 -4
  66. ccxt/async_support/whitebit.py +6 -4
  67. ccxt/async_support/woo.py +6 -4
  68. ccxt/async_support/xt.py +7 -5
  69. ccxt/async_support/yobit.py +32 -23
  70. ccxt/async_support/zonda.py +31 -6
  71. ccxt/base/exchange.py +2 -2
  72. ccxt/base/types.py +8 -0
  73. ccxt/bigone.py +6 -4
  74. ccxt/binance.py +58 -7
  75. ccxt/bingx.py +7 -6
  76. ccxt/bit2c.py +6 -4
  77. ccxt/bitbank.py +6 -4
  78. ccxt/bitbns.py +6 -4
  79. ccxt/bitfinex.py +4 -2
  80. ccxt/bitfinex2.py +4 -2
  81. ccxt/bitget.py +6 -5
  82. ccxt/bitmart.py +5 -4
  83. ccxt/bitmex.py +4 -4
  84. ccxt/bitso.py +5 -4
  85. ccxt/bitstamp.py +6 -4
  86. ccxt/bitvavo.py +6 -4
  87. ccxt/blockchaincom.py +11 -8
  88. ccxt/blofin.py +21 -0
  89. ccxt/bybit.py +6 -6
  90. ccxt/cex.py +5 -4
  91. ccxt/coinbase.py +4 -4
  92. ccxt/coinex.py +5 -5
  93. ccxt/coinone.py +6 -3
  94. ccxt/coinsph.py +5 -5
  95. ccxt/cryptocom.py +5 -4
  96. ccxt/currencycom.py +5 -5
  97. ccxt/delta.py +7 -5
  98. ccxt/deribit.py +6 -4
  99. ccxt/digifinex.py +6 -4
  100. ccxt/exmo.py +6 -4
  101. ccxt/gate.py +5 -4
  102. ccxt/gemini.py +4 -3
  103. ccxt/hashkey.py +7 -5
  104. ccxt/hitbtc.py +6 -5
  105. ccxt/hollaex.py +6 -5
  106. ccxt/htx.py +15 -5
  107. ccxt/hyperliquid.py +8 -7
  108. ccxt/idex.py +4 -4
  109. ccxt/independentreserve.py +4 -4
  110. ccxt/indodax.py +3 -3
  111. ccxt/kraken.py +7 -5
  112. ccxt/kucoin.py +6 -5
  113. ccxt/kucoinfutures.py +5 -3
  114. ccxt/kuna.py +5 -3
  115. ccxt/lbank.py +14 -12
  116. ccxt/lykke.py +6 -4
  117. ccxt/mexc.py +6 -6
  118. ccxt/ndax.py +33 -5
  119. ccxt/oceanex.py +4 -4
  120. ccxt/okcoin.py +8 -6
  121. ccxt/okx.py +17 -6
  122. ccxt/onetrading.py +6 -5
  123. ccxt/oxfun.py +6 -6
  124. ccxt/paymium.py +6 -5
  125. ccxt/phemex.py +8 -6
  126. ccxt/poloniex.py +6 -4
  127. ccxt/pro/__init__.py +1 -1
  128. ccxt/probit.py +7 -6
  129. ccxt/test/tests_async.py +1 -0
  130. ccxt/test/tests_sync.py +1 -0
  131. ccxt/timex.py +4 -4
  132. ccxt/tokocrypto.py +5 -5
  133. ccxt/upbit.py +7 -6
  134. ccxt/wavesexchange.py +9 -9
  135. ccxt/wazirx.py +24 -4
  136. ccxt/whitebit.py +6 -4
  137. ccxt/woo.py +6 -4
  138. ccxt/xt.py +7 -5
  139. ccxt/yobit.py +32 -23
  140. ccxt/zonda.py +31 -6
  141. {ccxt-4.4.15.dist-info → ccxt-4.4.16.dist-info}/METADATA +4 -4
  142. {ccxt-4.4.15.dist-info → ccxt-4.4.16.dist-info}/RECORD +145 -145
  143. {ccxt-4.4.15.dist-info → ccxt-4.4.16.dist-info}/LICENSE.txt +0 -0
  144. {ccxt-4.4.15.dist-info → ccxt-4.4.16.dist-info}/WHEEL +0 -0
  145. {ccxt-4.4.15.dist-info → ccxt-4.4.16.dist-info}/top_level.txt +0 -0
ccxt/woo.py CHANGED
@@ -6,7 +6,7 @@
6
6
  from ccxt.base.exchange import Exchange
7
7
  from ccxt.abstract.woo import ImplicitAPI
8
8
  import hashlib
9
- from ccxt.base.types import Account, Balances, Bool, Conversion, Currencies, Currency, Int, LedgerEntry, Leverage, MarginModification, Market, MarketType, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, FundingRate, FundingRates, Trade, TradingFees, Transaction, TransferEntry
9
+ from ccxt.base.types import Account, Balances, Bool, Conversion, Currencies, Currency, DepositAddress, Int, LedgerEntry, Leverage, MarginModification, Market, MarketType, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, FundingRate, FundingRates, Trade, TradingFees, Transaction, TransferEntry
10
10
  from typing import List
11
11
  from typing import Any
12
12
  from ccxt.base.errors import ExchangeError
@@ -76,6 +76,8 @@ class woo(Exchange, ImplicitAPI):
76
76
  'fetchConvertTradeHistory': True,
77
77
  'fetchCurrencies': True,
78
78
  'fetchDepositAddress': True,
79
+ 'fetchDepositAddresses': False,
80
+ 'fetchDepositAddressesByNetwork': False,
79
81
  'fetchDeposits': True,
80
82
  'fetchDepositsWithdrawals': True,
81
83
  'fetchFundingHistory': True,
@@ -1906,7 +1908,7 @@ class woo(Exchange, ImplicitAPI):
1906
1908
  result[code] = account
1907
1909
  return self.safe_balance(result)
1908
1910
 
1909
- def fetch_deposit_address(self, code: str, params={}):
1911
+ def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
1910
1912
  """
1911
1913
  fetch the deposit address for a currency associated with self account
1912
1914
  :see: https://docs.woo.org/#get-token-deposit-address
@@ -1934,11 +1936,11 @@ class woo(Exchange, ImplicitAPI):
1934
1936
  address = self.safe_string(response, 'address')
1935
1937
  self.check_address(address)
1936
1938
  return {
1939
+ 'info': response,
1937
1940
  'currency': code,
1941
+ 'network': networkCode,
1938
1942
  'address': address,
1939
1943
  'tag': tag,
1940
- 'network': networkCode,
1941
- 'info': response,
1942
1944
  }
1943
1945
 
1944
1946
  def get_asset_history_rows(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> Any:
ccxt/xt.py CHANGED
@@ -6,7 +6,7 @@
6
6
  from ccxt.base.exchange import Exchange
7
7
  from ccxt.abstract.xt import ImplicitAPI
8
8
  import hashlib
9
- from ccxt.base.types import Currencies, Currency, Int, LedgerEntry, LeverageTier, MarginModification, Market, Num, Order, OrderSide, OrderType, Str, Tickers, FundingRate, Transaction, TransferEntry
9
+ from ccxt.base.types import Currencies, Currency, DepositAddress, Int, LedgerEntry, LeverageTier, MarginModification, Market, Num, Order, OrderSide, OrderType, Str, Tickers, FundingRate, Transaction, TransferEntry
10
10
  from typing import List
11
11
  from ccxt.base.errors import ExchangeError
12
12
  from ccxt.base.errors import AuthenticationError
@@ -72,6 +72,8 @@ class xt(Exchange, ImplicitAPI):
72
72
  'fetchCurrencies': True,
73
73
  'fetchDeposit': False,
74
74
  'fetchDepositAddress': True,
75
+ 'fetchDepositAddresses': False,
76
+ 'fetchDepositAddressesByNetwork': False,
75
77
  'fetchDeposits': True,
76
78
  'fetchDepositWithdrawals': False,
77
79
  'fetchDepositWithdrawFee': False,
@@ -3421,7 +3423,7 @@ class xt(Exchange, ImplicitAPI):
3421
3423
  }
3422
3424
  return self.safe_string(ledgerType, type, type)
3423
3425
 
3424
- def fetch_deposit_address(self, code: str, params={}):
3426
+ def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
3425
3427
  """
3426
3428
  fetch the deposit address for a currency associated with self account
3427
3429
  :see: https://doc.xt.com/#deposit_withdrawaldepositAddressGet
@@ -3455,7 +3457,7 @@ class xt(Exchange, ImplicitAPI):
3455
3457
  result = self.safe_value(response, 'result', {})
3456
3458
  return self.parse_deposit_address(result, currency)
3457
3459
 
3458
- def parse_deposit_address(self, depositAddress, currency=None):
3460
+ def parse_deposit_address(self, depositAddress, currency=None) -> DepositAddress:
3459
3461
  #
3460
3462
  # {
3461
3463
  # "address": "0x7f7173cf29d3846d20ca5a3aec1120b93dbd157a",
@@ -3465,11 +3467,11 @@ class xt(Exchange, ImplicitAPI):
3465
3467
  address = self.safe_string(depositAddress, 'address')
3466
3468
  self.check_address(address)
3467
3469
  return {
3470
+ 'info': depositAddress,
3468
3471
  'currency': self.safe_currency_code(None, currency),
3472
+ 'network': None,
3469
3473
  'address': address,
3470
3474
  'tag': self.safe_string(depositAddress, 'memo'),
3471
- 'network': None,
3472
- 'info': depositAddress,
3473
3475
  }
3474
3476
 
3475
3477
  def fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
ccxt/yobit.py CHANGED
@@ -6,7 +6,7 @@
6
6
  from ccxt.base.exchange import Exchange
7
7
  from ccxt.abstract.yobit import ImplicitAPI
8
8
  import hashlib
9
- from ccxt.base.types import Balances, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees
9
+ from ccxt.base.types import Balances, DepositAddress, Int, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, TradingFees
10
10
  from typing import List
11
11
  from ccxt.base.errors import ExchangeError
12
12
  from ccxt.base.errors import AuthenticationError
@@ -51,27 +51,48 @@ class yobit(Exchange, ImplicitAPI):
51
51
  'createStopMarketOrder': False,
52
52
  'createStopOrder': False,
53
53
  'fetchBalance': True,
54
+ 'fetchBorrowInterest': False,
55
+ 'fetchBorrowRate': False,
54
56
  'fetchBorrowRateHistories': False,
55
57
  'fetchBorrowRateHistory': False,
58
+ 'fetchBorrowRates': False,
59
+ 'fetchBorrowRatesPerSymbol': False,
56
60
  'fetchCrossBorrowRate': False,
57
61
  'fetchCrossBorrowRates': False,
58
62
  'fetchDepositAddress': True,
63
+ 'fetchDepositAddresses': False,
64
+ 'fetchDepositAddressesByNetwork': False,
59
65
  'fetchDeposits': False,
60
66
  'fetchFundingHistory': False,
67
+ 'fetchFundingInterval': False,
68
+ 'fetchFundingIntervals': False,
61
69
  'fetchFundingRate': False,
62
70
  'fetchFundingRateHistory': False,
63
71
  'fetchFundingRates': False,
72
+ 'fetchGreeks': False,
64
73
  'fetchIndexOHLCV': False,
65
74
  'fetchIsolatedBorrowRate': False,
66
75
  'fetchIsolatedBorrowRates': False,
76
+ 'fetchIsolatedPositions': False,
67
77
  'fetchLeverage': False,
78
+ 'fetchLeverages': False,
68
79
  'fetchLeverageTiers': False,
80
+ 'fetchLiquidations': False,
81
+ 'fetchMarginAdjustmentHistory': False,
69
82
  'fetchMarginMode': False,
83
+ 'fetchMarginModes': False,
84
+ 'fetchMarketLeverageTiers': False,
70
85
  'fetchMarkets': True,
71
86
  'fetchMarkOHLCV': False,
87
+ 'fetchMarkPrices': False,
88
+ 'fetchMyLiquidations': False,
89
+ 'fetchMySettlementHistory': False,
72
90
  'fetchMyTrades': True,
91
+ 'fetchOpenInterest': False,
73
92
  'fetchOpenInterestHistory': False,
74
93
  'fetchOpenOrders': True,
94
+ 'fetchOption': False,
95
+ 'fetchOptionChain': False,
75
96
  'fetchOrder': True,
76
97
  'fetchOrderBook': True,
77
98
  'fetchOrderBooks': True,
@@ -83,6 +104,7 @@ class yobit(Exchange, ImplicitAPI):
83
104
  'fetchPositionsHistory': False,
84
105
  'fetchPositionsRisk': False,
85
106
  'fetchPremiumIndexOHLCV': False,
107
+ 'fetchSettlementHistory': False,
86
108
  'fetchTicker': True,
87
109
  'fetchTickers': True,
88
110
  'fetchTrades': True,
@@ -91,9 +113,14 @@ class yobit(Exchange, ImplicitAPI):
91
113
  'fetchTransactions': False,
92
114
  'fetchTransfer': False,
93
115
  'fetchTransfers': False,
116
+ 'fetchUnderlyingAssets': False,
117
+ 'fetchVolatilityHistory': False,
94
118
  'fetchWithdrawals': False,
95
119
  'reduceMargin': False,
120
+ 'repayCrossMargin': False,
121
+ 'repayIsolatedMargin': False,
96
122
  'setLeverage': False,
123
+ 'setMargin': False,
97
124
  'setMarginMode': False,
98
125
  'setPositionMode': False,
99
126
  'transfer': False,
@@ -1125,10 +1152,10 @@ class yobit(Exchange, ImplicitAPI):
1125
1152
  'info': response['info'],
1126
1153
  }
1127
1154
 
1128
- def fetch_deposit_address(self, code: str, params={}):
1155
+ def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
1129
1156
  """
1130
- :see: https://yobit.net/en/api
1131
1157
  fetch the deposit address for a currency associated with self account
1158
+ :see: https://yobit.net/en/api
1132
1159
  :param str code: unified currency code
1133
1160
  :param dict [params]: extra parameters specific to the exchange API endpoint
1134
1161
  :returns dict: an `address structure <https://docs.ccxt.com/#/?id=address-structure>`
@@ -1151,29 +1178,11 @@ class yobit(Exchange, ImplicitAPI):
1151
1178
  address = self.safe_string(response['return'], 'address')
1152
1179
  self.check_address(address)
1153
1180
  return {
1154
- 'id': None,
1181
+ 'info': response,
1155
1182
  'currency': code,
1183
+ 'network': None,
1156
1184
  'address': address,
1157
1185
  'tag': None,
1158
- 'network': None,
1159
- 'info': response,
1160
- 'txid': None,
1161
- 'type': None,
1162
- 'amount': None,
1163
- 'status': None,
1164
- 'timestamp': None,
1165
- 'datetime': None,
1166
- 'addressFrom': None,
1167
- 'addressTo': None,
1168
- 'tagFrom': None,
1169
- 'tagTo': None,
1170
- 'updated': None,
1171
- 'comment': None,
1172
- 'fee': {
1173
- 'currency': None,
1174
- 'cost': None,
1175
- 'rate': None,
1176
- },
1177
1186
  }
1178
1187
 
1179
1188
  def withdraw(self, code: str, amount: float, address: str, tag=None, params={}):
ccxt/zonda.py CHANGED
@@ -6,7 +6,7 @@
6
6
  from ccxt.base.exchange import Exchange
7
7
  from ccxt.abstract.zonda import ImplicitAPI
8
8
  import hashlib
9
- from ccxt.base.types import Balances, Currency, Int, LedgerEntry, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
9
+ from ccxt.base.types import Balances, Currency, DepositAddress, Int, LedgerEntry, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
10
10
  from typing import List
11
11
  from ccxt.base.errors import ExchangeError
12
12
  from ccxt.base.errors import AuthenticationError
@@ -50,32 +50,52 @@ class zonda(Exchange, ImplicitAPI):
50
50
  'createOrder': True,
51
51
  'createReduceOnlyOrder': False,
52
52
  'fetchBalance': True,
53
+ 'fetchBorrowInterest': False,
54
+ 'fetchBorrowRate': False,
53
55
  'fetchBorrowRateHistories': False,
54
56
  'fetchBorrowRateHistory': False,
57
+ 'fetchBorrowRates': False,
58
+ 'fetchBorrowRatesPerSymbol': False,
55
59
  'fetchCrossBorrowRate': False,
56
60
  'fetchCrossBorrowRates': False,
57
61
  'fetchDeposit': False,
58
62
  'fetchDepositAddress': True,
59
63
  'fetchDepositAddresses': True,
64
+ 'fetchDepositAddressesByNetwork': False,
60
65
  'fetchDeposits': None,
61
66
  'fetchFundingHistory': False,
67
+ 'fetchFundingInterval': False,
68
+ 'fetchFundingIntervals': False,
62
69
  'fetchFundingRate': False,
63
70
  'fetchFundingRateHistory': False,
64
71
  'fetchFundingRates': False,
72
+ 'fetchGreeks': False,
65
73
  'fetchIndexOHLCV': False,
66
74
  'fetchIsolatedBorrowRate': False,
67
75
  'fetchIsolatedBorrowRates': False,
76
+ 'fetchIsolatedPositions': False,
68
77
  'fetchLedger': True,
69
78
  'fetchLeverage': False,
79
+ 'fetchLeverages': False,
70
80
  'fetchLeverageTiers': False,
81
+ 'fetchLiquidations': False,
82
+ 'fetchMarginAdjustmentHistory': False,
71
83
  'fetchMarginMode': False,
84
+ 'fetchMarginModes': False,
85
+ 'fetchMarketLeverageTiers': False,
72
86
  'fetchMarkets': True,
73
87
  'fetchMarkOHLCV': False,
88
+ 'fetchMarkPrices': False,
89
+ 'fetchMyLiquidations': False,
90
+ 'fetchMySettlementHistory': False,
74
91
  'fetchMyTrades': True,
75
92
  'fetchOHLCV': True,
93
+ 'fetchOpenInterest': False,
76
94
  'fetchOpenInterestHistory': False,
77
95
  'fetchOpenOrder': False,
78
96
  'fetchOpenOrders': True,
97
+ 'fetchOption': False,
98
+ 'fetchOptionChain': False,
79
99
  'fetchOrderBook': True,
80
100
  'fetchOrderBooks': False,
81
101
  'fetchPosition': False,
@@ -83,6 +103,7 @@ class zonda(Exchange, ImplicitAPI):
83
103
  'fetchPositions': False,
84
104
  'fetchPositionsRisk': False,
85
105
  'fetchPremiumIndexOHLCV': False,
106
+ 'fetchSettlementHistory': False,
86
107
  'fetchTicker': True,
87
108
  'fetchTickers': True,
88
109
  'fetchTime': False,
@@ -93,9 +114,13 @@ class zonda(Exchange, ImplicitAPI):
93
114
  'fetchTransactionFees': False,
94
115
  'fetchTransactions': None,
95
116
  'fetchTransfer': False,
117
+ 'fetchUnderlyingAssets': False,
118
+ 'fetchVolatilityHistory': False,
96
119
  'fetchWithdrawal': False,
97
120
  'fetchWithdrawals': None,
98
121
  'reduceMargin': False,
122
+ 'repayCrossMargin': False,
123
+ 'repayIsolatedMargin': False,
99
124
  'setLeverage': False,
100
125
  'setMargin': False,
101
126
  'setMarginMode': False,
@@ -1476,7 +1501,7 @@ class zonda(Exchange, ImplicitAPI):
1476
1501
  }
1477
1502
  return self.safe_bool(fiatCurrencies, currency, False)
1478
1503
 
1479
- def parse_deposit_address(self, depositAddress, currency: Currency = None):
1504
+ def parse_deposit_address(self, depositAddress, currency: Currency = None) -> DepositAddress:
1480
1505
  #
1481
1506
  # {
1482
1507
  # "address": "33u5YAEhQbYfjHHPsfMfCoSdEjfwYjVcBE",
@@ -1490,14 +1515,14 @@ class zonda(Exchange, ImplicitAPI):
1490
1515
  address = self.safe_string(depositAddress, 'address')
1491
1516
  self.check_address(address)
1492
1517
  return {
1518
+ 'info': depositAddress,
1493
1519
  'currency': self.safe_currency_code(currencyId, currency),
1520
+ 'network': None,
1494
1521
  'address': address,
1495
1522
  'tag': self.safe_string(depositAddress, 'tag'),
1496
- 'network': None,
1497
- 'info': depositAddress,
1498
1523
  }
1499
1524
 
1500
- def fetch_deposit_address(self, code: str, params={}):
1525
+ def fetch_deposit_address(self, code: str, params={}) -> DepositAddress:
1501
1526
  """
1502
1527
  :see: https://docs.zondacrypto.exchange/reference/deposit-addresses-for-crypto
1503
1528
  fetch the deposit address for a currency associated with self account
@@ -1529,7 +1554,7 @@ class zonda(Exchange, ImplicitAPI):
1529
1554
  first = self.safe_dict(data, 0)
1530
1555
  return self.parse_deposit_address(first, currency)
1531
1556
 
1532
- def fetch_deposit_addresses(self, codes: Strings = None, params={}):
1557
+ def fetch_deposit_addresses(self, codes: Strings = None, params={}) -> List[DepositAddress]:
1533
1558
  """
1534
1559
  :see: https://docs.zondacrypto.exchange/reference/deposit-addresses-for-crypto
1535
1560
  fetch deposit addresses for multiple currencies and chain types
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: ccxt
3
- Version: 4.4.15
3
+ Version: 4.4.16
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
@@ -271,13 +271,13 @@ console.log(version, Object.keys(exchanges));
271
271
 
272
272
  All-in-one browser bundle (dependencies included), served from a CDN of your choice:
273
273
 
274
- * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.15/dist/ccxt.browser.min.js
275
- * unpkg: https://unpkg.com/ccxt@4.4.15/dist/ccxt.browser.min.js
274
+ * jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.16/dist/ccxt.browser.min.js
275
+ * unpkg: https://unpkg.com/ccxt@4.4.16/dist/ccxt.browser.min.js
276
276
 
277
277
  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.
278
278
 
279
279
  ```HTML
280
- <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.15/dist/ccxt.browser.min.js"></script>
280
+ <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.16/dist/ccxt.browser.min.js"></script>
281
281
  ```
282
282
 
283
283
  Creates a global `ccxt` object: