ccxt 4.4.3__py2.py3-none-any.whl → 4.4.4__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 +24 -13
- ccxt/async_support/base/ws/cache.py +1 -0
- ccxt/async_support/binance.py +40 -15
- ccxt/async_support/bingx.py +1 -0
- ccxt/async_support/bitfinex2.py +10 -9
- ccxt/async_support/bitget.py +13 -9
- ccxt/async_support/bitmex.py +14 -13
- ccxt/async_support/bitso.py +8 -7
- ccxt/async_support/bitstamp.py +12 -12
- ccxt/async_support/blofin.py +24 -26
- ccxt/async_support/bybit.py +24 -23
- ccxt/async_support/coinbase.py +31 -10
- ccxt/async_support/coinbaseexchange.py +14 -14
- ccxt/async_support/coinlist.py +9 -8
- ccxt/async_support/coinmetro.py +6 -6
- ccxt/async_support/cryptocom.py +10 -8
- ccxt/async_support/currencycom.py +9 -9
- ccxt/async_support/delta.py +8 -8
- ccxt/async_support/digifinex.py +11 -9
- ccxt/async_support/gate.py +9 -8
- ccxt/async_support/hashkey.py +12 -10
- ccxt/async_support/htx.py +16 -19
- ccxt/async_support/hyperliquid.py +70 -117
- ccxt/async_support/kraken.py +12 -10
- ccxt/async_support/kucoin.py +12 -11
- ccxt/async_support/luno.py +13 -12
- ccxt/async_support/mexc.py +34 -2
- ccxt/async_support/ndax.py +9 -8
- ccxt/async_support/okcoin.py +21 -30
- ccxt/async_support/okx.py +21 -29
- ccxt/async_support/woo.py +10 -9
- ccxt/async_support/woofipro.py +11 -9
- ccxt/async_support/xt.py +7 -6
- ccxt/async_support/zonda.py +9 -8
- ccxt/base/exchange.py +3 -1
- ccxt/binance.py +40 -15
- ccxt/bingx.py +1 -0
- ccxt/bitfinex2.py +10 -9
- ccxt/bitget.py +13 -9
- ccxt/bitmex.py +14 -13
- ccxt/bitso.py +8 -7
- ccxt/bitstamp.py +12 -12
- ccxt/blofin.py +24 -26
- ccxt/bybit.py +24 -23
- ccxt/coinbase.py +31 -10
- ccxt/coinbaseexchange.py +14 -14
- ccxt/coinlist.py +9 -8
- ccxt/coinmetro.py +6 -6
- ccxt/cryptocom.py +10 -8
- ccxt/currencycom.py +9 -9
- ccxt/delta.py +8 -8
- ccxt/digifinex.py +11 -9
- ccxt/gate.py +9 -8
- ccxt/hashkey.py +12 -10
- ccxt/htx.py +16 -19
- ccxt/hyperliquid.py +70 -117
- ccxt/kraken.py +12 -10
- ccxt/kucoin.py +12 -11
- ccxt/luno.py +13 -12
- ccxt/mexc.py +33 -2
- ccxt/ndax.py +9 -8
- ccxt/okcoin.py +21 -30
- ccxt/okx.py +21 -29
- ccxt/pro/__init__.py +1 -1
- ccxt/pro/bybit.py +51 -0
- ccxt/pro/mexc.py +78 -0
- ccxt/test/tests_async.py +1 -1
- ccxt/test/tests_sync.py +1 -1
- ccxt/woo.py +10 -9
- ccxt/woofipro.py +11 -9
- ccxt/xt.py +7 -6
- ccxt/zonda.py +9 -8
- {ccxt-4.4.3.dist-info → ccxt-4.4.4.dist-info}/METADATA +5 -5
- {ccxt-4.4.3.dist-info → ccxt-4.4.4.dist-info}/RECORD +79 -79
- {ccxt-4.4.3.dist-info → ccxt-4.4.4.dist-info}/LICENSE.txt +0 -0
- {ccxt-4.4.3.dist-info → ccxt-4.4.4.dist-info}/WHEEL +0 -0
- {ccxt-4.4.3.dist-info → ccxt-4.4.4.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, Leverage, MarginModification, Market, MarketType, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Trade, TradingFees, Transaction, TransferEntry
|
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, Trade, TradingFees, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from typing import Any
|
12
12
|
from ccxt.base.errors import ExchangeError
|
@@ -1991,29 +1991,31 @@ class woo(Exchange, ImplicitAPI):
|
|
1991
1991
|
# }
|
1992
1992
|
return [currency, self.safe_list(response, 'rows', [])]
|
1993
1993
|
|
1994
|
-
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
1994
|
+
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[LedgerEntry]:
|
1995
1995
|
"""
|
1996
1996
|
fetch the history of changes, actions done by the user or operations that altered balance of the user
|
1997
1997
|
:see: https://docs.woo.org/#get-asset-history
|
1998
|
-
:param str code: unified currency code, default is None
|
1998
|
+
:param str [code]: unified currency code, default is None
|
1999
1999
|
:param int [since]: timestamp in ms of the earliest ledger entry, default is None
|
2000
|
-
:param int [limit]: max number of ledger
|
2000
|
+
:param int [limit]: max number of ledger entries to return, default is None
|
2001
2001
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2002
2002
|
:returns dict: a `ledger structure <https://docs.ccxt.com/#/?id=ledger-structure>`
|
2003
2003
|
"""
|
2004
2004
|
currency, rows = self.get_asset_history_rows(code, since, limit, params)
|
2005
2005
|
return self.parse_ledger(rows, currency, since, limit, params)
|
2006
2006
|
|
2007
|
-
def parse_ledger_entry(self, item: dict, currency: Currency = None):
|
2007
|
+
def parse_ledger_entry(self, item: dict, currency: Currency = None) -> LedgerEntry:
|
2008
2008
|
networkizedCode = self.safe_string(item, 'token')
|
2009
2009
|
currencyDefined = self.get_currency_from_chaincode(networkizedCode, currency)
|
2010
2010
|
code = currencyDefined['code']
|
2011
|
+
currency = self.safe_currency(code, currency)
|
2011
2012
|
amount = self.safe_number(item, 'amount')
|
2012
2013
|
side = self.safe_string(item, 'token_side')
|
2013
2014
|
direction = 'in' if (side == 'DEPOSIT') else 'out'
|
2014
2015
|
timestamp = self.safe_timestamp(item, 'created_time')
|
2015
2016
|
fee = self.parse_token_and_fee_temp(item, 'fee_token', 'fee_amount')
|
2016
|
-
return {
|
2017
|
+
return self.safe_ledger_entry({
|
2018
|
+
'info': item,
|
2017
2019
|
'id': self.safe_string(item, 'id'),
|
2018
2020
|
'currency': code,
|
2019
2021
|
'account': self.safe_string(item, 'account'),
|
@@ -2023,13 +2025,12 @@ class woo(Exchange, ImplicitAPI):
|
|
2023
2025
|
'amount': amount,
|
2024
2026
|
'before': None,
|
2025
2027
|
'after': None,
|
2026
|
-
'fee': fee,
|
2027
2028
|
'direction': direction,
|
2028
2029
|
'timestamp': timestamp,
|
2029
2030
|
'datetime': self.iso8601(timestamp),
|
2030
2031
|
'type': self.parse_ledger_entry_type(self.safe_string(item, 'type')),
|
2031
|
-
'
|
2032
|
-
}
|
2032
|
+
'fee': fee,
|
2033
|
+
}, currency)
|
2033
2034
|
|
2034
2035
|
def parse_ledger_entry_type(self, type):
|
2035
2036
|
types: dict = {
|
ccxt/woofipro.py
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
from ccxt.base.exchange import Exchange
|
7
7
|
from ccxt.abstract.woofipro import ImplicitAPI
|
8
|
-
from ccxt.base.types import Balances, Currencies, Currency, Int, Leverage, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Trade, TradingFees, Transaction
|
8
|
+
from ccxt.base.types import Balances, Currencies, Currency, Int, LedgerEntry, Leverage, Market, Num, Order, OrderBook, OrderRequest, OrderSide, OrderType, Str, Strings, Trade, TradingFees, Transaction
|
9
9
|
from typing import List
|
10
10
|
from typing import Any
|
11
11
|
from ccxt.base.errors import ExchangeError
|
@@ -1987,14 +1987,16 @@ class woofipro(Exchange, ImplicitAPI):
|
|
1987
1987
|
data = self.safe_dict(response, 'data', {})
|
1988
1988
|
return [currency, self.safe_list(data, 'rows', [])]
|
1989
1989
|
|
1990
|
-
def parse_ledger_entry(self, item: dict, currency: Currency = None):
|
1991
|
-
|
1990
|
+
def parse_ledger_entry(self, item: dict, currency: Currency = None) -> LedgerEntry:
|
1991
|
+
currencyId = self.safe_string(item, 'token')
|
1992
|
+
code = self.safe_currency_code(currencyId, currency)
|
1993
|
+
currency = self.safe_currency(currencyId, currency)
|
1992
1994
|
amount = self.safe_number(item, 'amount')
|
1993
1995
|
side = self.safe_string(item, 'token_side')
|
1994
1996
|
direction = 'in' if (side == 'DEPOSIT') else 'out'
|
1995
1997
|
timestamp = self.safe_integer(item, 'created_time')
|
1996
1998
|
fee = self.parse_token_and_fee_temp(item, 'fee_token', 'fee_amount')
|
1997
|
-
return {
|
1999
|
+
return self.safe_ledger_entry({
|
1998
2000
|
'id': self.safe_string(item, 'id'),
|
1999
2001
|
'currency': code,
|
2000
2002
|
'account': self.safe_string(item, 'account'),
|
@@ -2010,7 +2012,7 @@ class woofipro(Exchange, ImplicitAPI):
|
|
2010
2012
|
'datetime': self.iso8601(timestamp),
|
2011
2013
|
'type': self.parse_ledger_entry_type(self.safe_string(item, 'type')),
|
2012
2014
|
'info': item,
|
2013
|
-
}
|
2015
|
+
}, currency)
|
2014
2016
|
|
2015
2017
|
def parse_ledger_entry_type(self, type):
|
2016
2018
|
types: dict = {
|
@@ -2019,13 +2021,13 @@ class woofipro(Exchange, ImplicitAPI):
|
|
2019
2021
|
}
|
2020
2022
|
return self.safe_string(types, type, type)
|
2021
2023
|
|
2022
|
-
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
2024
|
+
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[LedgerEntry]:
|
2023
2025
|
"""
|
2024
|
-
fetch the history of changes, actions done by the user or operations that altered balance of the user
|
2026
|
+
fetch the history of changes, actions done by the user or operations that altered the balance of the user
|
2025
2027
|
:see: https://orderly.network/docs/build-on-evm/evm-api/restful-api/private/get-asset-history
|
2026
|
-
:param str code: unified currency code, default is None
|
2028
|
+
:param str [code]: unified currency code, default is None
|
2027
2029
|
:param int [since]: timestamp in ms of the earliest ledger entry, default is None
|
2028
|
-
:param int [limit]: max number of ledger
|
2030
|
+
:param int [limit]: max number of ledger entries to return, default is None
|
2029
2031
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
2030
2032
|
:returns dict: a `ledger structure <https://docs.ccxt.com/#/?id=ledger-structure>`
|
2031
2033
|
"""
|
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, LeverageTier, MarginModification, Market, Num, Order, OrderSide, OrderType, Str, Tickers, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Currencies, Currency, Int, LedgerEntry, LeverageTier, MarginModification, Market, Num, Order, OrderSide, OrderType, Str, Tickers, Transaction, TransferEntry
|
10
10
|
from typing import List
|
11
11
|
from ccxt.base.errors import ExchangeError
|
12
12
|
from ccxt.base.errors import AuthenticationError
|
@@ -3310,7 +3310,7 @@ class xt(Exchange, ImplicitAPI):
|
|
3310
3310
|
}
|
3311
3311
|
return self.safe_string(statuses, status, status)
|
3312
3312
|
|
3313
|
-
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
3313
|
+
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[LedgerEntry]:
|
3314
3314
|
"""
|
3315
3315
|
fetch the history of changes, actions done by the user or operations that altered the balance of the user
|
3316
3316
|
:see: https://doc.xt.com/#futures_usergetBalanceBill
|
@@ -3367,7 +3367,7 @@ class xt(Exchange, ImplicitAPI):
|
|
3367
3367
|
ledger = self.safe_value(data, 'items', [])
|
3368
3368
|
return self.parse_ledger(ledger, currency, since, limit)
|
3369
3369
|
|
3370
|
-
def parse_ledger_entry(self, item, currency=None):
|
3370
|
+
def parse_ledger_entry(self, item, currency=None) -> LedgerEntry:
|
3371
3371
|
#
|
3372
3372
|
# {
|
3373
3373
|
# "id": "207260567109387524",
|
@@ -3383,8 +3383,10 @@ class xt(Exchange, ImplicitAPI):
|
|
3383
3383
|
side = self.safe_string(item, 'side')
|
3384
3384
|
direction = 'in' if (side == 'ADD') else 'out'
|
3385
3385
|
currencyId = self.safe_string(item, 'coin')
|
3386
|
+
currency = self.safe_currency(currencyId, currency)
|
3386
3387
|
timestamp = self.safe_integer(item, 'createdTime')
|
3387
|
-
return {
|
3388
|
+
return self.safe_ledger_entry({
|
3389
|
+
'info': item,
|
3388
3390
|
'id': self.safe_string(item, 'id'),
|
3389
3391
|
'direction': direction,
|
3390
3392
|
'account': None,
|
@@ -3402,8 +3404,7 @@ class xt(Exchange, ImplicitAPI):
|
|
3402
3404
|
'currency': None,
|
3403
3405
|
'cost': None,
|
3404
3406
|
},
|
3405
|
-
|
3406
|
-
}
|
3407
|
+
}, currency)
|
3407
3408
|
|
3408
3409
|
def parse_ledger_entry_type(self, type):
|
3409
3410
|
ledgerType = {
|
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, Market, Num, Order, OrderBook, OrderSide, OrderType, Str, Strings, Ticker, Tickers, Trade, Transaction, TransferEntry
|
9
|
+
from ccxt.base.types import Balances, Currency, 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
|
@@ -804,13 +804,13 @@ class zonda(Exchange, ImplicitAPI):
|
|
804
804
|
items = self.safe_dict(response, 'items')
|
805
805
|
return self.parse_tickers(items, symbols)
|
806
806
|
|
807
|
-
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}):
|
807
|
+
def fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={}) -> List[LedgerEntry]:
|
808
808
|
"""
|
809
|
+
fetch the history of changes, actions done by the user or operations that altered the balance of the user
|
809
810
|
:see: https://docs.zondacrypto.exchange/reference/operations-history
|
810
|
-
|
811
|
-
:param str code: unified currency code, default is None
|
811
|
+
:param str [code]: unified currency code, default is None
|
812
812
|
:param int [since]: timestamp in ms of the earliest ledger entry, default is None
|
813
|
-
:param int [limit]: max number of ledger
|
813
|
+
:param int [limit]: max number of ledger entries to return, default is None
|
814
814
|
:param dict [params]: extra parameters specific to the exchange API endpoint
|
815
815
|
:returns dict: a `ledger structure <https://docs.ccxt.com/#/?id=ledger-structure>`
|
816
816
|
"""
|
@@ -830,7 +830,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
830
830
|
items = response['items']
|
831
831
|
return self.parse_ledger(items, None, since, limit)
|
832
832
|
|
833
|
-
def parse_ledger_entry(self, item: dict, currency: Currency = None):
|
833
|
+
def parse_ledger_entry(self, item: dict, currency: Currency = None) -> LedgerEntry:
|
834
834
|
#
|
835
835
|
# FUNDS_MIGRATION
|
836
836
|
# {
|
@@ -1101,6 +1101,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1101
1101
|
timestamp = self.safe_integer(item, 'time')
|
1102
1102
|
balance = self.safe_value(item, 'balance', {})
|
1103
1103
|
currencyId = self.safe_string(balance, 'currency')
|
1104
|
+
currency = self.safe_currency(currencyId, currency)
|
1104
1105
|
change = self.safe_value(item, 'change', {})
|
1105
1106
|
amount = self.safe_string(change, 'total')
|
1106
1107
|
direction = 'in'
|
@@ -1111,7 +1112,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1111
1112
|
# that can be used to enrich the transfers with txid, address etc(you need to use info.detailId parameter)
|
1112
1113
|
fundsBefore = self.safe_value(item, 'fundsBefore', {})
|
1113
1114
|
fundsAfter = self.safe_value(item, 'fundsAfter', {})
|
1114
|
-
return {
|
1115
|
+
return self.safe_ledger_entry({
|
1115
1116
|
'info': item,
|
1116
1117
|
'id': self.safe_string(item, 'historyId'),
|
1117
1118
|
'direction': direction,
|
@@ -1127,7 +1128,7 @@ class zonda(Exchange, ImplicitAPI):
|
|
1127
1128
|
'timestamp': timestamp,
|
1128
1129
|
'datetime': self.iso8601(timestamp),
|
1129
1130
|
'fee': None,
|
1130
|
-
}
|
1131
|
+
}, currency)
|
1131
1132
|
|
1132
1133
|
def parse_ledger_entry_type(self, type):
|
1133
1134
|
types: dict = {
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: ccxt
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.4
|
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
|
@@ -70,7 +70,7 @@ Current feature list:
|
|
70
70
|
|
71
71
|
|
72
72
|
## Sponsored Promotion
|
73
|
-
[](https://www.bitmart.com/activity/BitMartxCCXT/en-US)
|
74
74
|
|
75
75
|
## See Also
|
76
76
|
|
@@ -272,13 +272,13 @@ console.log(version, Object.keys(exchanges));
|
|
272
272
|
|
273
273
|
All-in-one browser bundle (dependencies included), served from a CDN of your choice:
|
274
274
|
|
275
|
-
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
276
|
-
* unpkg: https://unpkg.com/ccxt@4.4.
|
275
|
+
* jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.4/dist/ccxt.browser.min.js
|
276
|
+
* unpkg: https://unpkg.com/ccxt@4.4.4/dist/ccxt.browser.min.js
|
277
277
|
|
278
278
|
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.
|
279
279
|
|
280
280
|
```HTML
|
281
|
-
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.
|
281
|
+
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.4/dist/ccxt.browser.min.js"></script>
|
282
282
|
```
|
283
283
|
|
284
284
|
Creates a global `ccxt` object:
|
@@ -1,91 +1,91 @@
|
|
1
|
-
ccxt/__init__.py,sha256=
|
1
|
+
ccxt/__init__.py,sha256=VGYrnaGWMipIUBZd5H-OMymrhGcM3mgHdf30YwvFCu8,16485
|
2
2
|
ccxt/ace.py,sha256=3KFlbRm6N9hXsKUsgZbQCFPZT5WGLm4HOjR19Q3uPts,42419
|
3
3
|
ccxt/alpaca.py,sha256=nVQJ8vG4JrjEvMlu_nPoyR2lBq41j9Z2smPq95nDhng,47504
|
4
4
|
ccxt/ascendex.py,sha256=qYzddORwUgXBOuvuRi3AtaH2srPYr21MOT2THdrXyLE,151540
|
5
5
|
ccxt/bequant.py,sha256=RBiAmaTbL35DgiV3Hl6uchLUd78V0z1T9riTlNsrpdc,1174
|
6
6
|
ccxt/bigone.py,sha256=RiEDQutD2BtvKfwVvAo2T9_DPqr0oa6ZJFDXph_g1UI,93122
|
7
|
-
ccxt/binance.py,sha256=
|
7
|
+
ccxt/binance.py,sha256=3-JKhCTxdWvazr3QAwqYckNXz4HOv3sMUQJ0whTrZwc,645809
|
8
8
|
ccxt/binancecoinm.py,sha256=arFnEh8mErSyi23eVPWE4iwoT7PWQyxGGVJCKCy6UJY,1702
|
9
9
|
ccxt/binanceus.py,sha256=hdcT4OnadcdFFFjF3GtM0nWv90jqojqwdVS3xWGuW40,9163
|
10
10
|
ccxt/binanceusdm.py,sha256=bAPcJj5HLxoCdPolriM8sJpoTBwbV78vBTbKRmWhNP4,2632
|
11
|
-
ccxt/bingx.py,sha256=
|
11
|
+
ccxt/bingx.py,sha256=VFoOkLEKdbg7NDeYS8YdnnawYVTAsSBG0tkeViBBPaY,245419
|
12
12
|
ccxt/bit2c.py,sha256=nJgmrsEpOaYB0ylSIVhzf-tbyLCa3g4yxpmF3BSz3Qk,37097
|
13
13
|
ccxt/bitbank.py,sha256=rROws6WlMgzgGQiKT7vqHxOQjy-DI_-uwSxUhXzMxjY,43570
|
14
14
|
ccxt/bitbay.py,sha256=xAIjzGRDVGwoy-Gygd99H0YN4wiaz_0lR0Z14oxaaxc,478
|
15
15
|
ccxt/bitbns.py,sha256=BxvljEPDCGPnaFGaWIIPF_xs079B2OnnbGWNfYlraHE,48269
|
16
16
|
ccxt/bitcoincom.py,sha256=PyWIl4nC4jp5Uba2lI1At0N_hhNyWD0DoZC_MSyL_s4,502
|
17
17
|
ccxt/bitfinex.py,sha256=w3t0YAwtOfCwLy5_w2wTq90qkTgUUyn0sqdO22zD-9U,73527
|
18
|
-
ccxt/bitfinex2.py,sha256=
|
18
|
+
ccxt/bitfinex2.py,sha256=FJl_MGt3bSB-MAsAZJkCFfsLs2EGaMub0wZfnfBfgN0,161026
|
19
19
|
ccxt/bitflyer.py,sha256=A5Qtxec8uuhL0M2CIm908XFG_dauGoPetkGvglFUbrE,41719
|
20
|
-
ccxt/bitget.py,sha256=
|
20
|
+
ccxt/bitget.py,sha256=ScSF4QO1RiMaV9huP-3LwaKYS08Xx8oS_e5_3rxxqcU,425254
|
21
21
|
ccxt/bithumb.py,sha256=8oTnFWi8Ai9fnm5FPXvNmaUAVJEOqYi-18VC23cWmXY,47935
|
22
22
|
ccxt/bitmart.py,sha256=UvMcyukXM55F-bFNd32nCXEwkP4BaUV4gezZcOb5msk,211937
|
23
|
-
ccxt/bitmex.py,sha256=
|
23
|
+
ccxt/bitmex.py,sha256=nin86XryLDdB4b_tfedvQBikP6Hm606qyCG12GMquzM,127173
|
24
24
|
ccxt/bitopro.py,sha256=XV878befM45AOnlSRpMYTnaBol342JAYWbFshvJ9fvs,69358
|
25
25
|
ccxt/bitpanda.py,sha256=aiwPkx9lKbVzt4ggoYdq_mIbMGtg5ZtGl2yRHO5xyz8,471
|
26
26
|
ccxt/bitrue.py,sha256=zYYTU3OME7zBJ3d63nE8C4EiR4IYLVdoyIWfE36-DQw,136749
|
27
|
-
ccxt/bitso.py,sha256=
|
28
|
-
ccxt/bitstamp.py,sha256=
|
27
|
+
ccxt/bitso.py,sha256=P2-G0AX8vLK-7g2z37xPMEmFFxXKgqou8Uw2ZqzGUFA,71694
|
28
|
+
ccxt/bitstamp.py,sha256=EeMNiKSWK18FU_1F8dsMdx-eJtFOgp5FKG4Lh6-G7pA,93298
|
29
29
|
ccxt/bitteam.py,sha256=S5gDVlmAqoK_bOuCUmfyStFAApq2kDxQaUHHDf4byQM,102264
|
30
30
|
ccxt/bitvavo.py,sha256=rfAWhNB2PB_C7RtayWh0HEufMGVjul-xOUZhuG9z9GI,91809
|
31
31
|
ccxt/bl3p.py,sha256=9i67YpJBrD-6pocvqq9ZyKjYXoOIwlJKuNHIW_jgmmM,20648
|
32
32
|
ccxt/blockchaincom.py,sha256=pelfaNH5kcRUUen8y2ncIzUA6ZSgwbfi7aJmyHX1W4s,48831
|
33
|
-
ccxt/blofin.py,sha256=
|
33
|
+
ccxt/blofin.py,sha256=bNfZN7mT27GXbcRMxuv1xBWOJqBpyx6AfFUyMcWXJZw,101511
|
34
34
|
ccxt/btcalpha.py,sha256=plU5SSsJn0ZMLW7I8sXb_L0Woc3-kamGMSlqPGujUzE,36751
|
35
35
|
ccxt/btcbox.py,sha256=lvY7cgoe4tglaQiTJZ4vILmzvoEjAWxgswRuB2iYzmE,27780
|
36
36
|
ccxt/btcmarkets.py,sha256=WDDbtbUQ9I0odVZp8nJdIjc4-zv4li49EDSt8EqQbRU,52733
|
37
37
|
ccxt/btcturk.py,sha256=jSA4UnD1GiJu24gXNkfb94f-zXifP5By_Ptery_cMnY,37024
|
38
|
-
ccxt/bybit.py,sha256=
|
38
|
+
ccxt/bybit.py,sha256=03xe-XqnMye6SY-9pcefTPNKJSzGnwK-UBoe4YnxqU4,420058
|
39
39
|
ccxt/cex.py,sha256=WkzjeUi22kVFNU_f2PB7SwGiddOulKS6DDzmxdVDkXs,70120
|
40
|
-
ccxt/coinbase.py,sha256=
|
40
|
+
ccxt/coinbase.py,sha256=ht6-KYQHQV83Zjh01nayGQ6JktKc1U40xgMUl_YDpRg,218620
|
41
41
|
ccxt/coinbaseadvanced.py,sha256=d5g6nRx-NCcCwZDdtp8FsI2D-pRjSvnAP9ISSKY_nCQ,538
|
42
|
-
ccxt/coinbaseexchange.py,sha256=
|
42
|
+
ccxt/coinbaseexchange.py,sha256=hSqkZw0y3EELtpsbJaMQXzc2nCbevVjHw6LDPcGH7_Y,79031
|
43
43
|
ccxt/coinbaseinternational.py,sha256=JHciYqg_ZcVXWAUBj_zlcaUKfSjOL6CQmoAtO8ZbtSE,97484
|
44
44
|
ccxt/coincheck.py,sha256=SeNvZm_3p01IsW8y6b3rw67qiMu29S59HHPG6Jma_T4,35942
|
45
45
|
ccxt/coinex.py,sha256=__ESSoFpz01uydvyK5uslqwQxTt-jqCbDErK-4BgN50,257309
|
46
|
-
ccxt/coinlist.py,sha256=
|
46
|
+
ccxt/coinlist.py,sha256=KI49yKisargPm5nApMMfWfFs3e0Uxbx9yMRibY9n7Tw,104273
|
47
47
|
ccxt/coinmate.py,sha256=BkPcT92OQFeUQtnLDIkl-Sg0PcLrQ87RfHMFIybJoWk,46190
|
48
|
-
ccxt/coinmetro.py,sha256=
|
48
|
+
ccxt/coinmetro.py,sha256=sVDcyA3ZC3MBEvslnkOepbYGlnonbf8K5MRoLIIQ2-k,80647
|
49
49
|
ccxt/coinone.py,sha256=qwsxTXTSxDS_zwIfmaB-acS4DWOlw6KY6eBkbTu8-mU,46708
|
50
50
|
ccxt/coinsph.py,sha256=DIqcTDjosc3kufV78oUfFPer5bWC4MjRrl2oiBIUQkw,90858
|
51
51
|
ccxt/coinspot.py,sha256=-9oRdHdc6iWrkxXxcVF9zBashNcRJSoFORwHRa9scMc,23876
|
52
|
-
ccxt/cryptocom.py,sha256=
|
53
|
-
ccxt/currencycom.py,sha256=
|
54
|
-
ccxt/delta.py,sha256=
|
52
|
+
ccxt/cryptocom.py,sha256=GynfGZljVT46rwFJ5Z8WGJYrWvBP55NVoOPtjhvubp8,136635
|
53
|
+
ccxt/currencycom.py,sha256=d0TR2rxlv5sre1A5R00XxF7rME6aCeuympMsCUVEaTQ,87128
|
54
|
+
ccxt/delta.py,sha256=GEh09HM_Sn1sraTGkAswGqDIDXGqzPfZQkj402YFRqY,150922
|
55
55
|
ccxt/deribit.py,sha256=hs6yUT8s7sfmO-GJ9RZ9nQC7Y9vnp_2puTRrd9r1Plw,161350
|
56
|
-
ccxt/digifinex.py,sha256=
|
56
|
+
ccxt/digifinex.py,sha256=0WZ9Kw7s70JjRxas3dN_70pUmuqimkWxzwWvfcvIeJI,169464
|
57
57
|
ccxt/exmo.py,sha256=KlQqGZey31br-SVwhQg6mWIESyeM_wiIKRDOzIekuSs,114638
|
58
58
|
ccxt/fmfwio.py,sha256=RbVLvzPwnqfDsE7Ea-N13ISCC82eJVPsXYjrleASmew,1236
|
59
|
-
ccxt/gate.py,sha256=
|
59
|
+
ccxt/gate.py,sha256=g1LWrW53cxmxoho3SDjFuQHn8eu0cYG32tiYwTvGuAc,327903
|
60
60
|
ccxt/gateio.py,sha256=86AETJWODl_vA5VNeQRHZprmpNIY1HAxCddKZcnKSi8,445
|
61
61
|
ccxt/gemini.py,sha256=qWLpJE-Ue3F-KhFfzhAteAMMJOr35duwdI-exBrRTEo,80950
|
62
|
-
ccxt/hashkey.py,sha256=
|
62
|
+
ccxt/hashkey.py,sha256=vXsIxy_ba5qG1IGlyP9DJf2UanyrHlksgpklHJlN0wQ,191920
|
63
63
|
ccxt/hitbtc.py,sha256=5peKNygeAdvaH4GZ7mQebFQKcjN2N7S9GL7HhMLYd5g,153469
|
64
64
|
ccxt/hitbtc3.py,sha256=qRAr4Zvaju9IQWRZUohdoN7xRnzIMPq8AyYb3gPv-Is,455
|
65
65
|
ccxt/hollaex.py,sha256=2KIbenZ3vcBDN_rs2CxG5_foKLaYxJd73vVV7M8n_8E,76140
|
66
|
-
ccxt/htx.py,sha256=
|
66
|
+
ccxt/htx.py,sha256=IjwiV1DRZA3Gqq5cfkbNzAhyu-pt2-cgre3afX4hIOQ,427929
|
67
67
|
ccxt/huobi.py,sha256=4vaG7IRN7fyjaJ_ac6S-njlHOfSEN5de7aq0noznxYw,438
|
68
68
|
ccxt/huobijp.py,sha256=m9rYCCApGDtpbiqCK6Gw4GDd5EskEmho4xSemGbY1kY,89852
|
69
|
-
ccxt/hyperliquid.py,sha256=
|
69
|
+
ccxt/hyperliquid.py,sha256=3rj8I7SLZYNwjvBlVaIGy1_lcmkaeTPZf22mNoFmxFw,122833
|
70
70
|
ccxt/idex.py,sha256=P2jNsxiwIlMgrfPKbtmjLJQrzFcWp_TjgJaLq793oco,73255
|
71
71
|
ccxt/independentreserve.py,sha256=k2T7rA1zcvlHC8QpmkKYO7ik44SayiElaSpW0EsTevA,37847
|
72
72
|
ccxt/indodax.py,sha256=o5YLVpQzm1LFWPAsvUOnvJxeBEWtaB_jQCvCOmXEw1Y,54758
|
73
|
-
ccxt/kraken.py,sha256=
|
73
|
+
ccxt/kraken.py,sha256=DlN7OME3CyDY9cfOe-yXUI5ICPKwZUlq06nhT5yakBI,133614
|
74
74
|
ccxt/krakenfutures.py,sha256=_-bbgzshifKnbyOB1pSs_bRfRepkRAdiDlsLDRiAw9w,119597
|
75
|
-
ccxt/kucoin.py,sha256=
|
75
|
+
ccxt/kucoin.py,sha256=NK7oSNcJ3aXf-7w4ikyTGC-_VvfTzFTBOjYhKRGQaHw,229802
|
76
76
|
ccxt/kucoinfutures.py,sha256=KNh4biqkvaVzgQ2DGUTnNf5853iwF628jKWk3rdOcB4,125860
|
77
77
|
ccxt/kuna.py,sha256=GnIMk8R_IL84FTUHDNP6jHxd2FKNX9YwfoCXoYG83uA,96157
|
78
78
|
ccxt/latoken.py,sha256=wBhaMcTEsB316nFCxm_WbLRZ_G2Q0Vi1FK-850Q07D0,79516
|
79
79
|
ccxt/lbank.py,sha256=Glx9CN_jdQMiUngJLYioxzwDfgFTdusdOfK53_Bg6A8,116045
|
80
|
-
ccxt/luno.py,sha256=
|
80
|
+
ccxt/luno.py,sha256=P3cZ_CnVyjMjDFn5e7jaev-pqs_rgmWQTsiJThRtffE,46353
|
81
81
|
ccxt/lykke.py,sha256=RqjZ8TXHN_Bok2gXNsJX5jgMDb7GqMbpPPqBMHiLb0E,51408
|
82
82
|
ccxt/mercado.py,sha256=LWCh89IzXu-yhPGqhkdPW6wqOqfO8nmbSQhAyYiSH8U,35710
|
83
|
-
ccxt/mexc.py,sha256=
|
84
|
-
ccxt/ndax.py,sha256=
|
83
|
+
ccxt/mexc.py,sha256=No_1G8KlnGJnauUfi-eYivg-8lOQUYLb_Pse7srR-4U,243756
|
84
|
+
ccxt/ndax.py,sha256=m9MhE8i8JmaSf7Lc-I_CcvUpQ5VNTRcfYZLrFEwk3UI,109097
|
85
85
|
ccxt/novadax.py,sha256=_xFkuZ72vHhpJb1N9h_MQHRD05GDWlqUeLQQcOp43BM,64436
|
86
86
|
ccxt/oceanex.py,sha256=DrsNIW-eXvaSHCB2l1valmiU9xMztxm1VNBJodMkWIY,38021
|
87
|
-
ccxt/okcoin.py,sha256=
|
88
|
-
ccxt/okx.py,sha256=
|
87
|
+
ccxt/okcoin.py,sha256=nKWsJTRprIODYHUTIoXRz6eANM2zdRPF7BHY86ExEyQ,151126
|
88
|
+
ccxt/okx.py,sha256=urOG4bj8v3LXzNx0npChkhrkPu8lAWeHyi6AkYptB6g,379285
|
89
89
|
ccxt/onetrading.py,sha256=evWWr4z7-HglV2ma2z-R34_JYJqlr6LQT0rV_OyWKGs,88375
|
90
90
|
ccxt/oxfun.py,sha256=2d8Tr3c5SC2okb7mEWi3Y1lq9UC-enln54ydtDClCnY,124657
|
91
91
|
ccxt/p2b.py,sha256=iPzHv663K8F1F0uTWEYpfQBcaqowY8MQ5tZt2ZNpoQE,54290
|
@@ -103,12 +103,12 @@ ccxt/vertex.py,sha256=r-ucPKA3DKb4Ke7u-OJxAXkHIS_ysF357R5-9dcYFHI,121797
|
|
103
103
|
ccxt/wavesexchange.py,sha256=vmzv9h1QjthvpKUGajQn_tdCJ5tWmzEA6r7ow_y6ASY,114980
|
104
104
|
ccxt/wazirx.py,sha256=LVHNdononi8FrZpT0pYiJoS-NrNi7_uIZ6Qbu8dJRPc,52405
|
105
105
|
ccxt/whitebit.py,sha256=stDtMdsAZV2NVOmuTGjIZoYSHvfw3hAW73X8hUhCZgE,119365
|
106
|
-
ccxt/woo.py,sha256=
|
107
|
-
ccxt/woofipro.py,sha256=
|
108
|
-
ccxt/xt.py,sha256=
|
106
|
+
ccxt/woo.py,sha256=qDt1osuHKga3tZt4Xd1i5ZG6C_Hpn4xwHaXJNDBkQlw,153359
|
107
|
+
ccxt/woofipro.py,sha256=01iIiEQhpV2c45T6IEQNwjaK2E9rHe3QMQAX-lxMPRc,115717
|
108
|
+
ccxt/xt.py,sha256=HjDeTjvaXgPDOsBbbNIGOkdfsoUyX-NqGJH7bcDDrIg,202942
|
109
109
|
ccxt/yobit.py,sha256=NeQpnOTzkjRKj5gVfI-riru5cNltagRH-DSfEEfByLw,54584
|
110
110
|
ccxt/zaif.py,sha256=LgeOsvAo4ShQW1s-RidgUYK4DnRU-Dk0eJG0Ca6M_9U,28862
|
111
|
-
ccxt/zonda.py,sha256=
|
111
|
+
ccxt/zonda.py,sha256=Jlw64ZVzM-PRj1faeiJc76jO-y1I18rnW16g2kph_Z8,81569
|
112
112
|
ccxt/abstract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
113
113
|
ccxt/abstract/ace.py,sha256=2-jmtQUedebJ-M88oI3WhmenPElcRlOQHe-gfHjL5BQ,1448
|
114
114
|
ccxt/abstract/alpaca.py,sha256=vgzqnRTvEnAbLYgfDzGpmVUZxRLWC8BWA6nQ16m-xXY,10382
|
@@ -218,94 +218,94 @@ ccxt/abstract/xt.py,sha256=JkWvsic3L2O968BCr9H5Wd5NIbRE9aTT2A-9WbAtl0c,27146
|
|
218
218
|
ccxt/abstract/yobit.py,sha256=8ycfCO8ORFly9hc0Aa47sZyX4_ZKPXS9h9yJzI-uQ7Q,1339
|
219
219
|
ccxt/abstract/zaif.py,sha256=m15WHdl3gYy0GOXNZ8NEH8eE7sVh8c0T_ITNuU8vXeU,3935
|
220
220
|
ccxt/abstract/zonda.py,sha256=X-hCW0SdX3YKZWixDyW-O2211M58Rno8kKJ6quY7rw4,7183
|
221
|
-
ccxt/async_support/__init__.py,sha256=
|
221
|
+
ccxt/async_support/__init__.py,sha256=8_28P9ZGvegMnRJKsryOPw5VmB-lTbs_fmNVN-WNh6Q,16288
|
222
222
|
ccxt/async_support/ace.py,sha256=ucCkKaWRkILAIK9g4iEi1Q_-zmn0V89-rX8Al4WdK8s,42643
|
223
223
|
ccxt/async_support/alpaca.py,sha256=HxonsP_MzbE7Z9r6hZ1rgmf_jPcP4H7H3z1YQgCv4qc,47716
|
224
224
|
ccxt/async_support/ascendex.py,sha256=Yj4_0UHGd-cYY8s3vqu_zEwa6BLmqPYy6ztKapkuEaw,152353
|
225
225
|
ccxt/async_support/bequant.py,sha256=1hTwHovo1bW1XTIc8ZKjvJ-Xg6LfmpGdzT7TepykaVM,1188
|
226
226
|
ccxt/async_support/bigone.py,sha256=A7AjX0iWl2twYRwOc-2tKUbnI4KNmO2QVetMaAJujpg,93576
|
227
|
-
ccxt/async_support/binance.py,sha256=
|
227
|
+
ccxt/async_support/binance.py,sha256=l9Swf3fxSW3WZ3c_mCYErrAyCa2YrPCS_unsqsIi1ac,648560
|
228
228
|
ccxt/async_support/binancecoinm.py,sha256=yeE73xG5UXD_X3VPul6DMGnV_mgJfWYskpas1BUDdCU,1740
|
229
229
|
ccxt/async_support/binanceus.py,sha256=c-K3Tk7LaRJjmYdCx8vBOqsx01uXrtvt0PC2ekBiD0g,9177
|
230
230
|
ccxt/async_support/binanceusdm.py,sha256=8ugRkx7vyYmn67wdkEEf2f-DFMGAoC4t09usKlPVNyw,2670
|
231
|
-
ccxt/async_support/bingx.py,sha256=
|
231
|
+
ccxt/async_support/bingx.py,sha256=yH5l5p3AAifywd6UE0e9T0dta8UFhCD9TH3rkmwfWhA,246689
|
232
232
|
ccxt/async_support/bit2c.py,sha256=Ix9TBLFXAlyCspEr707RGsSMsaRE22odMjdAYLfbbog,37309
|
233
233
|
ccxt/async_support/bitbank.py,sha256=ZicMgUF9fZMYZ5EXPnUWy9S0lHYEJCv_wt0t0JZFvPg,43830
|
234
234
|
ccxt/async_support/bitbay.py,sha256=jcaEXi2IhYTva8ezO_SfJhwxEZk7HST4J3NaxD16BQA,492
|
235
235
|
ccxt/async_support/bitbns.py,sha256=-z6MBwHpn0FXwfKffbOXSdZD2ZYEepMz1VU2ii84xN0,48523
|
236
236
|
ccxt/async_support/bitcoincom.py,sha256=RiqwhK3RfxQ_PXTa860fphDCvwA8dalL-_rXlK85-8A,516
|
237
237
|
ccxt/async_support/bitfinex.py,sha256=pzyfQzUSxFYd6Ted0hNLgL545S8rFCrsoJc9Odk3zoo,73993
|
238
|
-
ccxt/async_support/bitfinex2.py,sha256=
|
238
|
+
ccxt/async_support/bitfinex2.py,sha256=NWo6uDEbN7uYUILeMaVSPVXhBoLnza9wxXjTXrlc4RM,161780
|
239
239
|
ccxt/async_support/bitflyer.py,sha256=9tRLLI8tHyp0T1yj3-3F-MVoHB8Jq81qx_vQ-N00PJI,42027
|
240
|
-
ccxt/async_support/bitget.py,sha256=
|
240
|
+
ccxt/async_support/bitget.py,sha256=3ydWC9dKUQIialFmVvlPoQwcbatR90kA6DVaOJqCcw8,426878
|
241
241
|
ccxt/async_support/bithumb.py,sha256=Q0Cx_cRKZRfdpBAhQyINm63Qw3M6BRYQRiF0UqYzfis,48214
|
242
242
|
ccxt/async_support/bitmart.py,sha256=x101GZEWKKzElxYak0gkMM_wKbPbOuFxnir273_fGKo,212893
|
243
|
-
ccxt/async_support/bitmex.py,sha256=
|
243
|
+
ccxt/async_support/bitmex.py,sha256=ic-p8b1grOmWLlwYbOYsLxisveWxDJWXYZei45wD6Ik,127751
|
244
244
|
ccxt/async_support/bitopro.py,sha256=uWrH_HdRkf0UCs-N_JE1hCN6eWYWwXpc8VXMb0niM78,69762
|
245
245
|
ccxt/async_support/bitpanda.py,sha256=2k3URBWrpnh2xHa7JiYenI7_4MW5UeOPGzetlmRkR4U,485
|
246
246
|
ccxt/async_support/bitrue.py,sha256=iWjylMVLphkxj4jEeFh00pK-S4SuRosVdOtKHi5c3UI,137407
|
247
|
-
ccxt/async_support/bitso.py,sha256=
|
248
|
-
ccxt/async_support/bitstamp.py,sha256=
|
247
|
+
ccxt/async_support/bitso.py,sha256=VOiEplt8E6CzEq3wb8LfseqQEz489q4sqQBHFT7OScc,72080
|
248
|
+
ccxt/async_support/bitstamp.py,sha256=RBklYsUMAgZi7NDVg2Xek2lJFfNLuMew7s0jBtl2Reg,93798
|
249
249
|
ccxt/async_support/bitteam.py,sha256=vPMTVr0bDCd5okV_tFA9gVVW4a5NmsabvEplOm2-uOo,102596
|
250
250
|
ccxt/async_support/bitvavo.py,sha256=X0zQ6ARbJLrGLWwhQYvWZXfFAfvjBGHRjnrj_SeiAMg,92243
|
251
251
|
ccxt/async_support/bl3p.py,sha256=6K1wuBI0uFjoN0N7V6Bps_jKeNCJUQrsXO9tubuZlyU,20776
|
252
252
|
ccxt/async_support/blockchaincom.py,sha256=az3QVyh4Tln9F5HD219if4_pzgNJYOnivEVygEGElrY,49223
|
253
|
-
ccxt/async_support/blofin.py,sha256=
|
253
|
+
ccxt/async_support/blofin.py,sha256=Y7i8lGZ4mO_HRvFEXTlz4MmeUKi2y8J8FacQzk0PaVE,102095
|
254
254
|
ccxt/async_support/btcalpha.py,sha256=8OefA3GsJ27eAL44yQQcRNOruHXAwTemjTPkpLKwjEE,37029
|
255
255
|
ccxt/async_support/btcbox.py,sha256=rBXxuvdQaku5QYseQ4XSvMrCkohDefYmf-rGeS9W0IU,28004
|
256
256
|
ccxt/async_support/btcmarkets.py,sha256=fTf_MDIM7NMwpbv6X5lYPLNg8tFKcviNiUB7N3yO6FI,53083
|
257
257
|
ccxt/async_support/btcturk.py,sha256=Uq9rXMoDkXIy0nw1rzmw2e8eeRepcNtXKNYuw-02tkM,37242
|
258
|
-
ccxt/async_support/bybit.py,sha256=
|
258
|
+
ccxt/async_support/bybit.py,sha256=JDB-fAhpWlnx9gxQfRddIIWgvzspfUgX1RBTy0EE6nk,421940
|
259
259
|
ccxt/async_support/cex.py,sha256=DPQ4-rrO4Ut3zHax7wOnk47rfF5zVh4AgheFQ05pWDs,70470
|
260
|
-
ccxt/async_support/coinbase.py,sha256=
|
260
|
+
ccxt/async_support/coinbase.py,sha256=IhPqnORizh_d1t0oYpYCC8GLxEELz7UjSvp8iieViIs,219774
|
261
261
|
ccxt/async_support/coinbaseadvanced.py,sha256=Kupwnuxiu_qTjwCNV2asacoDUNFQvcaHNAznUJPhdQs,552
|
262
|
-
ccxt/async_support/coinbaseexchange.py,sha256=
|
262
|
+
ccxt/async_support/coinbaseexchange.py,sha256=u4s7rt6wavGgwzvfGtKkVeiBphq0hCG8VODQCb9Phi0,79537
|
263
263
|
ccxt/async_support/coinbaseinternational.py,sha256=o7Fhezgb75wSyxzyH0hHYzRaNnQvkZtpylXdYYgRedo,98098
|
264
264
|
ccxt/async_support/coincheck.py,sha256=N_0cDMAiFRC4G--QgOmSH8esKDr_lEVZUpukc4QoHk8,36148
|
265
265
|
ccxt/async_support/coinex.py,sha256=Rdj2sthSVkATxJ9tAmPSWRnPf1gBpfNExm6j3lgPFgA,258567
|
266
|
-
ccxt/async_support/coinlist.py,sha256=
|
266
|
+
ccxt/async_support/coinlist.py,sha256=VOqcXFP1fpK5vXKALS8GcioZhb1o-VvhpOUym594xl8,104761
|
267
267
|
ccxt/async_support/coinmate.py,sha256=NI58zYMkuOL9lB3UFzyjUNbuFZGrtjZbb4PBFTOsbz4,46456
|
268
|
-
ccxt/async_support/coinmetro.py,sha256=
|
268
|
+
ccxt/async_support/coinmetro.py,sha256=7Ao4bkTg4xR1vD9EB9y9oI65_s5fXPB6u9k2wP9gSwo,80967
|
269
269
|
ccxt/async_support/coinone.py,sha256=i3zsrFAZZ1l5TStJWjt-C7TexFnr03dyKelhIfj4PIg,46950
|
270
270
|
ccxt/async_support/coinsph.py,sha256=q40WnrointhQKzu8uXvPdb9aMbYTMRJmacIG7kac-n4,91292
|
271
271
|
ccxt/async_support/coinspot.py,sha256=54ogK4qq8RNEnUIR17lpbGPIR9Ed1SXlDtxSKoxi1uQ,24034
|
272
|
-
ccxt/async_support/cryptocom.py,sha256=
|
273
|
-
ccxt/async_support/currencycom.py,sha256=
|
274
|
-
ccxt/async_support/delta.py,sha256=
|
272
|
+
ccxt/async_support/cryptocom.py,sha256=Y4LvablaPicd4Jo-E-yG3Lz8bSiOb0qoke4xYaCrweY,137243
|
273
|
+
ccxt/async_support/currencycom.py,sha256=1448gvEvLe04n6DHkGZK_B050IWz1iGF-Kpzz71OKVw,87550
|
274
|
+
ccxt/async_support/delta.py,sha256=lFmk13Dnx4LsYBck7p1s29RjHmt6eZPSDA7sJyeiKY8,151530
|
275
275
|
ccxt/async_support/deribit.py,sha256=JfdtFswWctlKE_GOjoxFIVKTNq-LUeuVik59MAx-u8s,162126
|
276
|
-
ccxt/async_support/digifinex.py,sha256=
|
276
|
+
ccxt/async_support/digifinex.py,sha256=I-7kK-vHDSk2y0XS_FmrEe3sn7ga9ieceLUtBQdL8Pc,170434
|
277
277
|
ccxt/async_support/exmo.py,sha256=uVJsy3mfNLpfbY0ndl2EF9hipUylEw8J58J3wCGyyA0,115270
|
278
278
|
ccxt/async_support/fmfwio.py,sha256=lzfSnPrB2ARcC3EIqAuBM4vyg6LJ6n8RE71Zvt3ez1s,1250
|
279
|
-
ccxt/async_support/gate.py,sha256=
|
279
|
+
ccxt/async_support/gate.py,sha256=_lFmyWqp6IFk72W2Q0E3-HEeEfLZ0q8Inau58byhtZc,329634
|
280
280
|
ccxt/async_support/gateio.py,sha256=6_t032F9p9x5KGTjtSuqGXITzFOx-XAQBYLpsuQjzxw,459
|
281
281
|
ccxt/async_support/gemini.py,sha256=nB8pdA9FAezRsRhF6_7w-T5keDtlahjPo9WPApEJbsY,81474
|
282
|
-
ccxt/async_support/hashkey.py,sha256=
|
282
|
+
ccxt/async_support/hashkey.py,sha256=3YMUW6NPIs-dHNl6JIIW6OX0dyKVd2CAZL9jk1MKp5Q,192762
|
283
283
|
ccxt/async_support/hitbtc.py,sha256=h3HTN7Z5glikA3YRunBQun0Tp1QVqiBQz4WWzZKRLdk,154515
|
284
284
|
ccxt/async_support/hitbtc3.py,sha256=dmSYoD2o4av_zzbZI8HNIoj8BWxA7QozsVpy8JaOXzU,469
|
285
285
|
ccxt/async_support/hollaex.py,sha256=msUnnbWLNeCxFW77BnfLoFWBdvQIDwV7Rtbi9TA4TYY,76574
|
286
|
-
ccxt/async_support/htx.py,sha256=
|
286
|
+
ccxt/async_support/htx.py,sha256=hB4b-Hvm0W5eUOcyoGEDfHFZdlNbYIIGmNpDGVDHNGo,430321
|
287
287
|
ccxt/async_support/huobi.py,sha256=fup0j6wQ1khAtfbb1H4CSyJAOzhxuoHMmrM6sgTuhr8,452
|
288
288
|
ccxt/async_support/huobijp.py,sha256=OeEHn0GXQ56YGeUM21zwRqsEm8d2LD_SDspBsQMlds4,90352
|
289
|
-
ccxt/async_support/hyperliquid.py,sha256=
|
289
|
+
ccxt/async_support/hyperliquid.py,sha256=U_l3fAmAZzE9UBUIkODXlmaUVTlRh9ft3IDYuxNNJLs,123497
|
290
290
|
ccxt/async_support/idex.py,sha256=UcAvdMc2CP_6E8lET4rmQiIP-RaUfZHSo6pQeA17v-g,73731
|
291
291
|
ccxt/async_support/independentreserve.py,sha256=-W-SMPkJwY9FMN5I6l5eL8cPwC0_UuqmfU5yMmyJoiw,38145
|
292
292
|
ccxt/async_support/indodax.py,sha256=-dcr5VdpSkcLgy2KUlumm0NhGs4_mNstysIlunhF2-4,55066
|
293
|
-
ccxt/async_support/kraken.py,sha256=
|
293
|
+
ccxt/async_support/kraken.py,sha256=dQBnuKmxxXvnwU-rXlnDYE1cO6T84eJken2wwwbasZ0,134264
|
294
294
|
ccxt/async_support/krakenfutures.py,sha256=stPhBne9pFVlgFkw4mwqtaaI6NTZCAcmOIFVlQSbl8I,120085
|
295
|
-
ccxt/async_support/kucoin.py,sha256=
|
295
|
+
ccxt/async_support/kucoin.py,sha256=Vj0pf1ig5BDM_L02WF-71LhfyIf_7hMzHZtRaI3qn_I,230945
|
296
296
|
ccxt/async_support/kucoinfutures.py,sha256=a2oRhfH61LsSnhSlhwSJM7yRUUsegkmQenOa_nPwHuA,126516
|
297
297
|
ccxt/async_support/kuna.py,sha256=QtzLgqgv8mLXECN2drWNVtdvm_vy-bawdxKvozDzbVE,96573
|
298
298
|
ccxt/async_support/latoken.py,sha256=9BUu8akWtbBtAzVr_c_cYLkiLQqcJdSdkJbHmuLee-Y,79992
|
299
299
|
ccxt/async_support/lbank.py,sha256=MeqPjECSmsplCtatu7Ns6sHRwzAGP_6S5MwB2BomnXk,116757
|
300
|
-
ccxt/async_support/luno.py,sha256=
|
300
|
+
ccxt/async_support/luno.py,sha256=WRQ5uH3Wr1HHZa9ZtcWCYdrmz-Y8proS5XOGZpBtiZo,46691
|
301
301
|
ccxt/async_support/lykke.py,sha256=UXQmNfWucuylickY0EBbrkahAoU-68B7k1B-EBNpC00,51722
|
302
302
|
ccxt/async_support/mercado.py,sha256=mb7ULqvEr9PQ7jBOpQxiufgYzwTeAfr0G2NZmrUeUgs,35952
|
303
|
-
ccxt/async_support/mexc.py,sha256=
|
304
|
-
ccxt/async_support/ndax.py,sha256=
|
303
|
+
ccxt/async_support/mexc.py,sha256=_PlI3zp5YjRfNGoDjIXgErrBQFPo3PNuqOzWtFEST88,244960
|
304
|
+
ccxt/async_support/ndax.py,sha256=IX7cFNjCELJIImof_jVsNzihXjCOmMyqRnlFHnzOq_w,109621
|
305
305
|
ccxt/async_support/novadax.py,sha256=YNKUM1CGFK7lpBwbxSSL1IAEJCRVsNxeITkwtw6VWCM,64804
|
306
306
|
ccxt/async_support/oceanex.py,sha256=85IHjCWsBZZXntKHPeuUpFYP9FV0Ik93gJsTlrGzhVA,38341
|
307
|
-
ccxt/async_support/okcoin.py,sha256=
|
308
|
-
ccxt/async_support/okx.py,sha256=
|
307
|
+
ccxt/async_support/okcoin.py,sha256=TV0xooV4DIw1M8DrMNQBsDv4fhSTEp7Xtb5WK-F9bvc,151650
|
308
|
+
ccxt/async_support/okx.py,sha256=Mys4Lz_IdH1AjNfblCCIRWfdlXg4XBWh4mRcrQ_cfDQ,380872
|
309
309
|
ccxt/async_support/onetrading.py,sha256=cZSvu7ZIavao-bqv1CgQatPfsrfXDgCt2UfxMtYsOMM,88827
|
310
310
|
ccxt/async_support/oxfun.py,sha256=_Pv8E4yIKS10iPOpPuCFQgBuqGDzxuwvxROdJjwrYvc,125201
|
311
311
|
ccxt/async_support/p2b.py,sha256=VKUX8u7gtHkKDwBjAyskScm2FEs6xxDuKLXE-jSHXwY,54532
|
@@ -323,18 +323,18 @@ ccxt/async_support/vertex.py,sha256=TSw1dmCXj2kIDV7uvj-kd3wPurRu90fg9mHWHoHjF_o,
|
|
323
323
|
ccxt/async_support/wavesexchange.py,sha256=wHxvsBQydDEYRgeAZKI9WO4TLBKmmSPTLm0eT0pKB5g,115530
|
324
324
|
ccxt/async_support/wazirx.py,sha256=bnUpw9be3o4l2Hxm3jcfNXn5bMyZlgqoG8BGPusuIzs,52707
|
325
325
|
ccxt/async_support/whitebit.py,sha256=zt8NkoziYOrYUR7K-SJW3qP7nP6pY6f334NiRdOKIZA,120015
|
326
|
-
ccxt/async_support/woo.py,sha256=
|
327
|
-
ccxt/async_support/woofipro.py,sha256=
|
328
|
-
ccxt/async_support/xt.py,sha256=
|
326
|
+
ccxt/async_support/woo.py,sha256=mKKm4Md1s53u1RXu6_GlIKKC-zVjhev-MJbgqRamM2I,154327
|
327
|
+
ccxt/async_support/woofipro.py,sha256=60ZusaUhwHzfuIpwmB0JuhPVYw0VknWmbkOxjPDVMHw,116397
|
328
|
+
ccxt/async_support/xt.py,sha256=KXrroygrwkdqToLVUGSzW7Sx-JUjiT8_ZHjw92hnJBg,204096
|
329
329
|
ccxt/async_support/yobit.py,sha256=GQhvYrsGHQrVdTrNHQxx9isEGqUABexlllzao9HL3f8,54912
|
330
330
|
ccxt/async_support/zaif.py,sha256=-ZTr8M2JaIRCL90VrbCDXBMAsZwbiwsFChSQ2rWODuQ,29044
|
331
|
-
ccxt/async_support/zonda.py,sha256=
|
331
|
+
ccxt/async_support/zonda.py,sha256=njWK4t42n7BowCvc3j5WKwCxEDc2Y8vi0d-yp296-q0,81883
|
332
332
|
ccxt/async_support/base/__init__.py,sha256=aVYSsFi--b4InRs9zDN_wtCpj8odosAB726JdUHavrk,67
|
333
|
-
ccxt/async_support/base/exchange.py,sha256=
|
333
|
+
ccxt/async_support/base/exchange.py,sha256=7w10x0-lnx8ddHr_Qd3vjhr4FQkQsyExV_hskj_3bGY,111254
|
334
334
|
ccxt/async_support/base/throttler.py,sha256=tvDVcdRUVYi8fZRlEcnqtgzcgB_KMUMRs5Pu8tuU-tU,1847
|
335
335
|
ccxt/async_support/base/ws/__init__.py,sha256=uockzpLuwntKGZbs5EOWFe-Zg-k6Cj7GhNJLc_RX0so,1791
|
336
336
|
ccxt/async_support/base/ws/aiohttp_client.py,sha256=5IEiT0elWI9a7Vr-KV0jgmlbpLJWBzIlrLaCkTKGaqY,5752
|
337
|
-
ccxt/async_support/base/ws/cache.py,sha256=
|
337
|
+
ccxt/async_support/base/ws/cache.py,sha256=Qf7a9t22vW6jfl387IUTl0lPmIejBW3VG38ge1Jh55g,8170
|
338
338
|
ccxt/async_support/base/ws/client.py,sha256=J5lTz3QGTaURZYeqW4R5xNw1orDlHYoOVXIJIX6d5Zc,8188
|
339
339
|
ccxt/async_support/base/ws/fast_client.py,sha256=WPXKqSi9OPDtpgAvt19T1EVtTg4BNk8WGSLtxUVMh08,3956
|
340
340
|
ccxt/async_support/base/ws/functions.py,sha256=qwvEnjtINWL5ZU-dbbeIunjyBxzFqbGWHfVhxqAcKug,1499
|
@@ -344,10 +344,10 @@ ccxt/async_support/base/ws/order_book_side.py,sha256=GhnGUt78pJ-AYL_Dq9produGjmB
|
|
344
344
|
ccxt/base/__init__.py,sha256=eTx1OE3HJjspFUQjGm6LBhaQiMKJnXjkdP-JUXknyQ0,1320
|
345
345
|
ccxt/base/decimal_to_precision.py,sha256=fgWRBzRTtsf3r2INyS4f7WHlzgjB5YM1ekiwqD21aac,6634
|
346
346
|
ccxt/base/errors.py,sha256=Pad-6ugvGUwhoYuKUliX-N7FTrcnKCQGFjsaq2tMn0I,4610
|
347
|
-
ccxt/base/exchange.py,sha256=
|
347
|
+
ccxt/base/exchange.py,sha256=cAdvBgpfKIJjkbhNky-bdHJP6Y8UodUX5Ne9tdCeG6Y,298397
|
348
348
|
ccxt/base/precise.py,sha256=koce64Yrp6vFbGijJtUt-QQ6XhJgeGTCksZ871FPp_A,8886
|
349
349
|
ccxt/base/types.py,sha256=Xw9wcYNDRmtUghkU2VIT496S868mRoUjxyuCM7TCAK4,9616
|
350
|
-
ccxt/pro/__init__.py,sha256=
|
350
|
+
ccxt/pro/__init__.py,sha256=WFwOu0L4RoEkj-IXcwmacktDHoNqPQOyrDtQTqrLn5Q,7709
|
351
351
|
ccxt/pro/alpaca.py,sha256=xh1yg1Ok-Zh_Mfx-MBjNrfJDs6MUU0exFfEj3GuQPC4,27631
|
352
352
|
ccxt/pro/ascendex.py,sha256=QueLgISoIxgGSOta2W7En4pwAsEXbTP5q5ef4UjpTQQ,37524
|
353
353
|
ccxt/pro/bequant.py,sha256=33OEUWBi4D9-2w8CmkwN3aF1qS-AlLqX3pxrWwNbXPY,1552
|
@@ -370,7 +370,7 @@ ccxt/pro/bitstamp.py,sha256=tysJpRxfVnZKp-_xgfIhsOVh3ilnQQhXjV-grzqz3QM,20964
|
|
370
370
|
ccxt/pro/bitvavo.py,sha256=407yoZbQh5G9bP4FMVywBB223dJFj0x7nxaEiobHVSI,56255
|
371
371
|
ccxt/pro/blockchaincom.py,sha256=yRJ4m0mTG5FSbkdH4QvuXNnBvLv9kDMGbAMwpcJnyDI,29648
|
372
372
|
ccxt/pro/blofin.py,sha256=Wjw0coQ4TO1qdVVnBGSdRDVtADsl-t-hkOo-uEDZTbc,28659
|
373
|
-
ccxt/pro/bybit.py,sha256=
|
373
|
+
ccxt/pro/bybit.py,sha256=PjSEQaOmO7BZNh5Df3USmVmhI1X6qVw0hXN8qfvcp9s,108243
|
374
374
|
ccxt/pro/cex.py,sha256=7HFtbjDOijpamdCv3ddlqkQ6exO2jN5MZ5dtXvRg2Og,58577
|
375
375
|
ccxt/pro/coinbase.py,sha256=hwd8lUuaW8WyQQOh9WvBVuiuOJTpmlCXU0hL3UE8UFQ,31411
|
376
376
|
ccxt/pro/coinbaseexchange.py,sha256=eoDBwYvGK__zGtC0yNRk2evWwQAD6XpjMHcpubjBt2U,39027
|
@@ -400,7 +400,7 @@ ccxt/pro/kucoin.py,sha256=pxU42TftiKQaggpViEZ-rWfdI7GgqV43rHIxMgwluhE,61038
|
|
400
400
|
ccxt/pro/kucoinfutures.py,sha256=DU5vLB0Oufffcn1Rv-aYqpV9Mx7gGlRdi7YC9hNO8sw,56277
|
401
401
|
ccxt/pro/lbank.py,sha256=p6Ynjmud9B3Yw1SGTPdTB36AW4KtyR1JOotqFBdyyxs,35083
|
402
402
|
ccxt/pro/luno.py,sha256=ThXkXNrLvp9BW8XXxRcbpRaw9QcLCS2f2tCqbF6qpEU,12384
|
403
|
-
ccxt/pro/mexc.py,sha256=
|
403
|
+
ccxt/pro/mexc.py,sha256=kVw1d5lOJlvU9lyo3545EM3j1sck3Gr5A3qznBH04Dk,50361
|
404
404
|
ccxt/pro/ndax.py,sha256=De7ohX5Dp2PSfFmt50mGH9cB9Me53Wb-B8S6N4_Flvk,22979
|
405
405
|
ccxt/pro/okcoin.py,sha256=h8niyeq67h-oBmxiMMy2JdNgOI0fBQuEC3QdUW4-NFs,31048
|
406
406
|
ccxt/pro/okx.py,sha256=xxUjojv8cxifjYEG-PwSHm4dV0M6D6VD8ZDOqW1MjrA,101068
|
@@ -646,12 +646,12 @@ ccxt/static_dependencies/toolz/curried/operator.py,sha256=ML92mknkAwzBl2NCm-4wer
|
|
646
646
|
ccxt/static_dependencies/typing_inspect/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
647
647
|
ccxt/static_dependencies/typing_inspect/typing_inspect.py,sha256=5gIWomLPfuDpgd3gX1GlnX0MuXM3VorR4j2W2qXORiQ,28269
|
648
648
|
ccxt/test/__init__.py,sha256=GKPbEcj0Rrz5HG-GUm-iY1IHhDYmlvcBXZAGk6-m2CI,141
|
649
|
-
ccxt/test/tests_async.py,sha256=
|
649
|
+
ccxt/test/tests_async.py,sha256=Hfdxrjw3nP7lGyjYs35ZgTBM7pF6UIJrkZWz-ycceRw,84579
|
650
650
|
ccxt/test/tests_helpers.py,sha256=xhOILoZ_x3RSfQjtKt6AQlkp9DkOtpTQe8GAUUZoM6s,10069
|
651
651
|
ccxt/test/tests_init.py,sha256=eVwwUHujX9t4rjgo4TqEeg7DDhR1Hb_e2SJN8NVGyl0,998
|
652
|
-
ccxt/test/tests_sync.py,sha256=
|
653
|
-
ccxt-4.4.
|
654
|
-
ccxt-4.4.
|
655
|
-
ccxt-4.4.
|
656
|
-
ccxt-4.4.
|
657
|
-
ccxt-4.4.
|
652
|
+
ccxt/test/tests_sync.py,sha256=tQNiZZi3ulprLY513aSadwieBCuNyzyRLE8nSTZIUvw,83641
|
653
|
+
ccxt-4.4.4.dist-info/LICENSE.txt,sha256=EIb9221AhMHV7xF1_55STFdKTFsnJVJYkRpY2Lnvo5w,1068
|
654
|
+
ccxt-4.4.4.dist-info/METADATA,sha256=AwWfUlkabvzBIwkZ0A2USbBdo0mgux4iRBezAwCFLhI,118611
|
655
|
+
ccxt-4.4.4.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
656
|
+
ccxt-4.4.4.dist-info/top_level.txt,sha256=CkQDuCTDKNcImPV60t36G6MdYfxsAPNiSaEwifVoVMo,5
|
657
|
+
ccxt-4.4.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|