exchanges-wrapper 2.1.35__tar.gz → 2.1.36__tar.gz
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.
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/PKG-INFO +1 -1
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/__init__.py +1 -1
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/exch_srv.py +2 -4
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/martin/__init__.py +0 -1
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/proto/martin.proto +0 -1
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/LICENSE.md +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/README.md +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/client.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/definitions.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/errors.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/events.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/exch_srv_cfg.toml.template +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/http_client.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/lib.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/parsers/bitfinex.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/parsers/bybit.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/parsers/huobi.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/parsers/okx.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/web_sockets.py +0 -0
- {exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/pyproject.toml +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: exchanges-wrapper
|
|
3
|
-
Version: 2.1.
|
|
3
|
+
Version: 2.1.36
|
|
4
4
|
Summary: REST API and WebSocket asyncio wrapper with grpc powered multiplexer server
|
|
5
5
|
Author-email: Thomas Marchand <thomas.marchand@tuta.io>, Jerry Fedorenko <jerry.fedorenko@yahoo.com>
|
|
6
6
|
Requires-Python: >=3.10
|
|
@@ -12,7 +12,7 @@ __maintainer__ = "Jerry Fedorenko"
|
|
|
12
12
|
__contact__ = "https://github.com/DogsTailFarmer"
|
|
13
13
|
__email__ = "jerry.fedorenko@yahoo.com"
|
|
14
14
|
__credits__ = ["https://github.com/DanyaSWorlD"]
|
|
15
|
-
__version__ = "2.1.
|
|
15
|
+
__version__ = "2.1.36"
|
|
16
16
|
|
|
17
17
|
from pathlib import Path
|
|
18
18
|
import shutil
|
|
@@ -261,8 +261,7 @@ class Martin(mr.MartinBase):
|
|
|
261
261
|
trade_id=request.trade_id,
|
|
262
262
|
symbol=request.symbol,
|
|
263
263
|
order_id=request.order_id,
|
|
264
|
-
origin_client_order_id=request.client_order_id
|
|
265
|
-
receive_window=None
|
|
264
|
+
origin_client_order_id=request.client_order_id
|
|
266
265
|
)
|
|
267
266
|
logger.debug(f"{msg_header}: {res}")
|
|
268
267
|
|
|
@@ -378,8 +377,7 @@ class Martin(mr.MartinBase):
|
|
|
378
377
|
request,
|
|
379
378
|
rate_limit=True,
|
|
380
379
|
asset=request.asset,
|
|
381
|
-
need_btc_valuation=request.need_btc_valuation
|
|
382
|
-
receive_window=request.receive_window
|
|
380
|
+
need_btc_valuation=request.need_btc_valuation
|
|
383
381
|
)
|
|
384
382
|
response.items = list(map(json.dumps, res))
|
|
385
383
|
return response
|
|
@@ -39,7 +39,6 @@ class FetchFundingWalletRequest(betterproto.Message):
|
|
|
39
39
|
trade_id: str = betterproto.string_field(2)
|
|
40
40
|
asset: str = betterproto.string_field(3)
|
|
41
41
|
need_btc_valuation: bool = betterproto.bool_field(4)
|
|
42
|
-
receive_window: int = betterproto.int64_field(5)
|
|
43
42
|
|
|
44
43
|
|
|
45
44
|
@dataclass(eq=False, repr=False)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{exchanges_wrapper-2.1.35 → exchanges_wrapper-2.1.36}/exchanges_wrapper/exch_srv_cfg.toml.template
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|