crypticorn 2.2.3__py3-none-any.whl → 2.2.4__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.
- crypticorn/common/enums.py +26 -0
- {crypticorn-2.2.3.dist-info → crypticorn-2.2.4.dist-info}/METADATA +1 -1
- {crypticorn-2.2.3.dist-info → crypticorn-2.2.4.dist-info}/RECORD +5 -4
- {crypticorn-2.2.3.dist-info → crypticorn-2.2.4.dist-info}/WHEEL +0 -0
- {crypticorn-2.2.3.dist-info → crypticorn-2.2.4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,26 @@
|
|
1
|
+
from enum import StrEnum
|
2
|
+
|
3
|
+
|
4
|
+
class Exchange(StrEnum):
|
5
|
+
"""Supported exchanges for trading"""
|
6
|
+
|
7
|
+
KUCOIN = "kucoin"
|
8
|
+
BINGX = "bingx"
|
9
|
+
|
10
|
+
|
11
|
+
class InternalExchange(Exchange):
|
12
|
+
"""All exchanges we are using, including public (Exchange)"""
|
13
|
+
|
14
|
+
BINANCE = "binance"
|
15
|
+
BYBIT = "bybit"
|
16
|
+
HYPERLIQUID = "hyperliquid"
|
17
|
+
BITGET = "bitget"
|
18
|
+
|
19
|
+
|
20
|
+
class MarketType(StrEnum):
|
21
|
+
"""
|
22
|
+
Market types
|
23
|
+
"""
|
24
|
+
|
25
|
+
SPOT = "spot"
|
26
|
+
FUTURES = "futures"
|
@@ -56,6 +56,7 @@ crypticorn/auth/client/models/wallet_verified200_response.py,sha256=QILnTLsCKdI-
|
|
56
56
|
crypticorn/auth/client/models/whoami200_response.py,sha256=uehdq5epgeOphhrIR3tbrseflxcLAzGyKF-VW-o5cY8,2974
|
57
57
|
crypticorn/common/__init__.py,sha256=HToYJl9T76lzj_EkPUis5KUuwqWJOgsk18umHG7VYcY,193
|
58
58
|
crypticorn/common/auth.py,sha256=5aVNsl39ngsoFaR5xGuWERRccq4HibYbSp61Z4QOVew,7483
|
59
|
+
crypticorn/common/enums.py,sha256=wGdQh_29pH2ROW8GLWepOuX5wkqz3dqXwKY-x9bO2hg,443
|
59
60
|
crypticorn/common/errors.py,sha256=HZvd4J2HAN7TvqlZxWtp29XV0wbkacWNZzgdVO-YWpw,14197
|
60
61
|
crypticorn/common/pydantic.py,sha256=pmnGYCIrLv59wZkDbvPyK9NJmgPJWW74LXTdIWSjOkY,1063
|
61
62
|
crypticorn/common/scopes.py,sha256=ghFa7aa7c91zo-BQWSc130EiBnAugO8ewBAJOKlbyCI,1489
|
@@ -262,7 +263,7 @@ crypticorn/trade/client/models/tpsl.py,sha256=QGPhcgadjxAgyzpRSwlZJg_CDLnKxdZgse
|
|
262
263
|
crypticorn/trade/client/models/trading_action_type.py,sha256=jW0OsNz_ZNXlITxAfh979BH5U12oTXSr6qUVcKcGHhw,847
|
263
264
|
crypticorn/trade/client/models/validation_error.py,sha256=uTkvsKrOAt-21UC0YPqCdRl_OMsuu7uhPtWuwRSYvv0,3228
|
264
265
|
crypticorn/trade/client/models/validation_error_loc_inner.py,sha256=22ql-H829xTBgfxNQZsqd8fS3zQt9tLW1pj0iobo0jY,5131
|
265
|
-
crypticorn-2.2.
|
266
|
-
crypticorn-2.2.
|
267
|
-
crypticorn-2.2.
|
268
|
-
crypticorn-2.2.
|
266
|
+
crypticorn-2.2.4.dist-info/METADATA,sha256=ua9J5jln7d0iCb8KA2tqQNm8W5amTnfvt2dRVr61XEE,5393
|
267
|
+
crypticorn-2.2.4.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
268
|
+
crypticorn-2.2.4.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
|
269
|
+
crypticorn-2.2.4.dist-info/RECORD,,
|
File without changes
|
File without changes
|