crypticorn 2.17.0rc1__py3-none-any.whl → 2.17.0rc3__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 (87) hide show
  1. crypticorn/__init__.py +2 -2
  2. crypticorn/auth/client/api/admin_api.py +415 -13
  3. crypticorn/auth/client/api/auth_api.py +2622 -113
  4. crypticorn/auth/client/api/service_api.py +258 -7
  5. crypticorn/auth/client/api/user_api.py +2485 -270
  6. crypticorn/auth/client/api/wallet_api.py +1518 -77
  7. crypticorn/auth/client/models/create_api_key_request.py +2 -1
  8. crypticorn/auth/client/models/get_api_keys200_response_inner.py +2 -1
  9. crypticorn/auth/client/rest.py +23 -4
  10. crypticorn/auth/main.py +8 -5
  11. crypticorn/client.py +227 -59
  12. crypticorn/common/__init__.py +0 -1
  13. crypticorn/common/auth.py +2 -1
  14. crypticorn/common/metrics.py +4 -6
  15. crypticorn/common/middleware.py +10 -5
  16. crypticorn/common/pagination.py +137 -18
  17. crypticorn/common/router/admin_router.py +1 -1
  18. crypticorn/common/utils.py +2 -1
  19. crypticorn/common/warnings.py +1 -0
  20. crypticorn/hive/client/api/admin_api.py +1234 -51
  21. crypticorn/hive/client/api/data_api.py +517 -13
  22. crypticorn/hive/client/api/models_api.py +1657 -83
  23. crypticorn/hive/client/api/status_api.py +415 -13
  24. crypticorn/hive/client/models/api_error_identifier.py +1 -1
  25. crypticorn/hive/client/rest.py +23 -4
  26. crypticorn/hive/main.py +99 -25
  27. crypticorn/klines/client/api/admin_api.py +1234 -51
  28. crypticorn/klines/client/api/change_in_timeframe_api.py +278 -7
  29. crypticorn/klines/client/api/funding_rates_api.py +324 -7
  30. crypticorn/klines/client/api/ohlcv_data_api.py +399 -7
  31. crypticorn/klines/client/api/status_api.py +415 -13
  32. crypticorn/klines/client/api/symbols_api.py +225 -7
  33. crypticorn/klines/client/api/udf_api.py +1393 -120
  34. crypticorn/klines/client/models/api_error_identifier.py +3 -1
  35. crypticorn/klines/client/rest.py +23 -4
  36. crypticorn/klines/main.py +89 -12
  37. crypticorn/metrics/client/api/admin_api.py +1234 -51
  38. crypticorn/metrics/client/api/exchanges_api.py +1405 -140
  39. crypticorn/metrics/client/api/indicators_api.py +640 -13
  40. crypticorn/metrics/client/api/logs_api.py +305 -7
  41. crypticorn/metrics/client/api/marketcap_api.py +1240 -60
  42. crypticorn/metrics/client/api/markets_api.py +352 -7
  43. crypticorn/metrics/client/api/quote_currencies_api.py +237 -7
  44. crypticorn/metrics/client/api/status_api.py +415 -13
  45. crypticorn/metrics/client/api/tokens_api.py +400 -13
  46. crypticorn/metrics/client/configuration.py +4 -2
  47. crypticorn/metrics/client/rest.py +23 -4
  48. crypticorn/metrics/main.py +113 -19
  49. crypticorn/pay/client/api/admin_api.py +1720 -126
  50. crypticorn/pay/client/api/now_payments_api.py +1013 -42
  51. crypticorn/pay/client/api/payments_api.py +580 -13
  52. crypticorn/pay/client/api/products_api.py +915 -25
  53. crypticorn/pay/client/api/status_api.py +415 -13
  54. crypticorn/pay/client/configuration.py +2 -2
  55. crypticorn/pay/client/models/api_error_identifier.py +7 -7
  56. crypticorn/pay/client/models/scope.py +1 -0
  57. crypticorn/pay/client/rest.py +23 -4
  58. crypticorn/pay/main.py +10 -6
  59. crypticorn/trade/client/__init__.py +2 -1
  60. crypticorn/trade/client/api/__init__.py +0 -1
  61. crypticorn/trade/client/api/admin_api.py +1718 -123
  62. crypticorn/trade/client/api/api_keys_api.py +1596 -103
  63. crypticorn/trade/client/api/bots_api.py +1106 -47
  64. crypticorn/trade/client/api/exchanges_api.py +592 -19
  65. crypticorn/trade/client/api/notifications_api.py +1340 -112
  66. crypticorn/trade/client/api/orders_api.py +240 -7
  67. crypticorn/trade/client/api/status_api.py +415 -13
  68. crypticorn/trade/client/api/strategies_api.py +1170 -69
  69. crypticorn/trade/client/api/trading_actions_api.py +650 -19
  70. crypticorn/trade/client/models/__init__.py +2 -0
  71. crypticorn/trade/client/models/exchange.py +6 -1
  72. crypticorn/trade/client/models/exchange_key_balance.py +111 -0
  73. crypticorn/trade/client/models/futures_balance.py +27 -25
  74. crypticorn/trade/client/models/spot_balance.py +110 -0
  75. crypticorn/trade/client/models/strategy.py +5 -3
  76. crypticorn/trade/client/models/strategy_create.py +6 -4
  77. crypticorn/trade/client/models/strategy_exchange_info.py +16 -4
  78. crypticorn/trade/client/models/strategy_update.py +2 -2
  79. crypticorn/trade/client/rest.py +23 -4
  80. crypticorn/trade/main.py +15 -12
  81. {crypticorn-2.17.0rc1.dist-info → crypticorn-2.17.0rc3.dist-info}/METADATA +64 -20
  82. {crypticorn-2.17.0rc1.dist-info → crypticorn-2.17.0rc3.dist-info}/RECORD +86 -85
  83. crypticorn/trade/client/api/futures_trading_panel_api.py +0 -1285
  84. {crypticorn-2.17.0rc1.dist-info → crypticorn-2.17.0rc3.dist-info}/WHEEL +0 -0
  85. {crypticorn-2.17.0rc1.dist-info → crypticorn-2.17.0rc3.dist-info}/entry_points.txt +0 -0
  86. {crypticorn-2.17.0rc1.dist-info → crypticorn-2.17.0rc3.dist-info}/licenses/LICENSE +0 -0
  87. {crypticorn-2.17.0rc1.dist-info → crypticorn-2.17.0rc3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: crypticorn
3
- Version: 2.17.0rc1
3
+ Version: 2.17.0rc3
4
4
  Summary: Maximise Your Crypto Trading Profits with Machine Learning
5
5
  Author-email: Crypticorn <timon@crypticorn.com>
6
6
  License-Expression: MIT
@@ -26,6 +26,7 @@ Requires-Dist: psutil<8.0.0,>=7.0.0
26
26
  Requires-Dist: setuptools<81.0.0,>=80.0.0
27
27
  Requires-Dist: strenum
28
28
  Requires-Dist: prometheus-client<1.0.0,>=0.22.0
29
+ Requires-Dist: asgiref<4.0.0,>=3.6.0
29
30
  Requires-Dist: urllib3<3.0.0,>=1.25.3
30
31
  Requires-Dist: python_dateutil<3.0.0,>=2.8.2
31
32
  Requires-Dist: aiohttp<4.0.0,>=3.8.4
@@ -50,6 +51,7 @@ Requires-Dist: pytest-asyncio==0.26.0; extra == "test"
50
51
  Requires-Dist: pytest-cov==6.1.1; extra == "test"
51
52
  Requires-Dist: python-dotenv==1.0.1; extra == "test"
52
53
  Requires-Dist: PyJWT==2.10.0; extra == "test"
54
+ Requires-Dist: httpx>=0.27.0; extra == "test"
53
55
  Provides-Extra: extra
54
56
  Requires-Dist: pandas<3.0.0,>=2.2.0; extra == "extra"
55
57
  Dynamic: license-file
@@ -79,11 +81,15 @@ You can install extra dependencies grouped in the extras `extra`, `dev` (develop
79
81
 
80
82
  ## Structure
81
83
 
82
- Our API is available as an asynchronous Python SDK. The main entry point you need is the `ApiClient` class, which you would import like this:
84
+ Our API is available as both an asynchronous and synchronous Python SDK. The main entry points are:
85
+
86
+ - `AsyncClient` - Asynchronous client for async/await usage
87
+ - `SyncClient` - Synchronous client for traditional blocking calls
88
+
83
89
  ```python
84
- from crypticorn import ApiClient
90
+ from crypticorn import AsyncClient, SyncClient
85
91
  ```
86
- The ApiClient serves as the central interface for API operations. It instantiates multiple API wrappers corresponding to our micro services. These are structured the following:
92
+ Both clients serve as the central interface for API operations and instantiate multiple API wrappers corresponding to our micro services. These are structured the following:
87
93
 
88
94
  <img src="static/pip-structure.svg" alt="pip package structure" />
89
95
 
@@ -111,20 +117,22 @@ There are scopes which don't follow this structure. Those are either scopes that
111
117
 
112
118
  ## Basic Usage
113
119
 
114
- You can use the client with the async context protocol...
120
+ ### Asynchronous Client
121
+
122
+ You can use the async client with the context manager protocol...
115
123
  ```python
116
- async with ApiClient(api_key="your-api-key") as client:
117
- await client.pay.products.get_products()
124
+ async with AsyncClient(api_key="your-api-key") as client:
125
+ await client.pay.products.get_products()
118
126
  ```
119
127
  ...or without it like this...
120
128
  ```python
121
- client = ApiClient(api_key="your-api-key")
122
- asyncio.run(client.pay.models.get_products())
129
+ client = AsyncClient(api_key="your-api-key")
130
+ asyncio.run(client.pay.products.get_products())
123
131
  asyncio.run(client.close())
124
132
  ```
125
133
  ...or this.
126
134
  ```python
127
- client = ApiClient(api_key="your-api-key")
135
+ client = AsyncClient(api_key="your-api-key")
128
136
 
129
137
  async def main():
130
138
  await client.pay.products.get_products()
@@ -133,6 +141,29 @@ asyncio.run(main())
133
141
  asyncio.run(client.close())
134
142
  ```
135
143
 
144
+ ### Synchronous Client
145
+
146
+ For traditional synchronous usage without async/await, use the `SyncClient`:
147
+
148
+ ```python
149
+ from crypticorn import SyncClient
150
+
151
+ # With context manager (recommended)
152
+ with SyncClient(api_key="your-api-key") as client:
153
+ products = client.pay.products.get_products()
154
+ status = client.trade.status.ping()
155
+
156
+ # Or without context manager
157
+ client = SyncClient(api_key="your-api-key")
158
+ try:
159
+ products = client.pay.products.get_products()
160
+ status = client.trade.status.ping()
161
+ finally:
162
+ client.close() # Manual cleanup required
163
+ ```
164
+
165
+ The sync client provides the same API surface as the async client, but all methods return results directly instead of coroutines. Under the hood, it uses `asgiref.async_to_sync` to bridge async operations to synchronous calls, ensuring reliable operation without requiring async/await syntax.
166
+
136
167
  ## Response Types
137
168
 
138
169
  There are three different available output formats you can choose from:
@@ -140,7 +171,10 @@ There are three different available output formats you can choose from:
140
171
  ### Serialized Response
141
172
  You can get fully serialized responses as pydantic models. Using this, you get the full benefits of pydantic's type checking.
142
173
  ```python
174
+ # Async client
143
175
  res = await client.pay.products.get_products()
176
+ # Sync client
177
+ res = client.pay.products.get_products()
144
178
  print(res)
145
179
  ```
146
180
  The output would look like this:
@@ -150,7 +184,10 @@ The output would look like this:
150
184
 
151
185
  ### Serialized Response with HTTP Info
152
186
  ```python
187
+ # Async client
153
188
  res = await client.pay.products.get_products_with_http_info()
189
+ # Sync client
190
+ res = client.pay.products.get_products_with_http_info()
154
191
  print(res)
155
192
  ```
156
193
  The output would look like this:
@@ -171,8 +208,12 @@ print(res.headers)
171
208
  ### JSON Response
172
209
  You can receive a classical JSON response by suffixing the function name with `_without_preload_content`
173
210
  ```python
211
+ # Async client
174
212
  response = await client.pay.products.get_products_without_preload_content()
175
213
  print(await response.json())
214
+
215
+ # Sync client - Note: use regular methods instead as response.json() returns a coroutine
216
+ response = client.pay.products.get_products_without_preload_content()
176
217
  ```
177
218
  The output would look like this:
178
219
  ```python
@@ -202,33 +243,34 @@ To override e.g. the host for the Hive client to connect to localhost:8000 inste
202
243
  from crypticorn.hive import Configuration as HiveConfig
203
244
  from crypticorn.common import Service
204
245
 
205
- async with ApiClient() as client:
246
+ # Async client
247
+ async with AsyncClient() as client:
248
+ client.configure(config=HiveConfig(host="http://localhost:8000"), service=Service.HIVE)
249
+
250
+ # Sync client
251
+ with SyncClient() as client:
206
252
  client.configure(config=HiveConfig(host="http://localhost:8000"), service=Service.HIVE)
207
253
  ```
208
254
 
209
255
  ### Session Management
210
256
 
211
- By default, `ApiClient` manages a single shared `aiohttp.ClientSession` for all service wrappers.
257
+ By default, `AsyncClient` manages a single shared `aiohttp.ClientSession` for all service wrappers.
212
258
  However, you can pass your own pre-configured `aiohttp.ClientSession` if you need advanced control — for example, to add retries, custom headers, logging, or mocking behavior.
213
259
 
214
260
  When you inject a custom session, you are responsible for managing its lifecycle, including closing when you're done.
215
261
 
216
262
  ```python
217
263
  import aiohttp
218
- from crypticorn import ApiClient
264
+ from crypticorn import AsyncClient
219
265
 
220
266
  async def main():
221
267
  custom_session = aiohttp.ClientSession()
222
- async with ApiClient(api_key="your-key", http_client=custom_session) as client:
268
+ async with AsyncClient(api_key="your-key", http_client=custom_session) as client:
223
269
  await client.trade.status.ping()
224
270
  await custom_session.close()
225
- # or
226
- custom_session = aiohttp.ClientSession()
227
- client = ApiClient(api_key="your-key", http_client=custom_session)
228
- await client.trade.status.ping()
229
- await custom_session.close()
271
+
230
272
  ```
231
- If you don’t pass a session, `ApiClient` will create and manage one internally. In that case, it will be automatically closed when using `async with` or when calling `await client.close()` manually.
273
+ If you don’t pass a session, `AsyncClient` will create and manage one internally. In that case, it will be automatically closed when using `async with` or when calling `await client.close()` manually.
232
274
 
233
275
  ### Disable Logging
234
276
 
@@ -238,3 +280,5 @@ In case you don't want any logging statements by the `crypticorn` logger to be l
238
280
  from crypticorn.common import disable_logging
239
281
  disable_logging()
240
282
  ```
283
+
284
+ **Note on Sync Client**: The `SyncClient` uses per-operation sessions (creates and closes a session for each API call) to ensure reliable synchronous behavior. Custom sessions are accepted but not used. This approach prevents event loop conflicts at the cost of slightly higher overhead per operation.
@@ -1,20 +1,20 @@
1
- crypticorn/__init__.py,sha256=ctrwe5CQtYhnetHYPgSmC0CIHa4xbDsLZvpY38tfEow,423
2
- crypticorn/client.py,sha256=eGEk-AuoVFCuXdygMXqCivj6G56O_I_JH14C8lKW3Dk,6062
1
+ crypticorn/__init__.py,sha256=mto1BnsxexPz9LTsUHnTADDIU06hr-zKHhRL9XzQ5hY,477
2
+ crypticorn/client.py,sha256=0svj2eesbTIDUT0Bv9utmoxlr_GeWzBdF_VcQjh2lXs,11225
3
3
  crypticorn/auth/__init__.py,sha256=JAl1tBLK9pYLr_-YKaj581c-c94PWLoqnatTIVAVvMM,81
4
- crypticorn/auth/main.py,sha256=FHLsAbp2mXDlmcPmLKc29qaD1dBev65V3DNKLyfz4Tw,1012
4
+ crypticorn/auth/main.py,sha256=NOkw7SVzLdKD_9LDB_2Ln8Whr8irA5BsmkAIe56sITY,1256
5
5
  crypticorn/auth/client/__init__.py,sha256=do16xS84uXvVoJuWERjb9RwlOaLy4UF4uKBZWczFC3c,5291
6
6
  crypticorn/auth/client/api_client.py,sha256=YumNsoI1ROiukpmDloiSfy7ZTd207khTmNLa7Dien5o,26888
7
7
  crypticorn/auth/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
8
8
  crypticorn/auth/client/configuration.py,sha256=hsdlmSIReQLV_-IlrOOZ7zI3XJ_8IrnkjWvNcKIBH18,18054
9
9
  crypticorn/auth/client/exceptions.py,sha256=h0Uf70boJaADhffgwDC5bXtOneCeiRyaxWZXgE8OlgM,6393
10
10
  crypticorn/auth/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- crypticorn/auth/client/rest.py,sha256=7ykLyiCyjtTiC1F-9JfrD79vaA831O_irNDmaRArnGg,6994
11
+ crypticorn/auth/client/rest.py,sha256=ug6xOI_h_Ci1uHsKu8QmbSeCxPNOD-4wrTwVaS3Vauk,7842
12
12
  crypticorn/auth/client/api/__init__.py,sha256=c-MlPvmOXSsk_ragrcUe8WkOuCPTTpJ8maSp2sER0EU,339
13
- crypticorn/auth/client/api/admin_api.py,sha256=SmChBoU6emc2q-AqH2yRAWFCsOKn2Uis2H9Z-_TGHwg,21215
14
- crypticorn/auth/client/api/auth_api.py,sha256=HsCzlkjFJjdJwNZ-toQhLaQnpH-o4fPJaf6xsO2ICiw,124272
15
- crypticorn/auth/client/api/service_api.py,sha256=rAnJOot2xLgKY9BAaEv_KtsSUgHXbOD58jypyry7Hkg,12403
16
- crypticorn/auth/client/api/user_api.py,sha256=1GdN2cfzY52SK_Qn_oGnzrAJVjI0capYuo-bHKOylE4,113273
17
- crypticorn/auth/client/api/wallet_api.py,sha256=_WRT6b5E1dEI8nd2XXjFsFFrbjbO9OdFrOooSBb6nGs,68907
13
+ crypticorn/auth/client/api/admin_api.py,sha256=Sb3Y_xRl4EyHe3tTnYuReO2x5VWyto6lwUkCQ2K3Oyg,36577
14
+ crypticorn/auth/client/api/auth_api.py,sha256=hXqLOukOawL26sEQx11UTsgAVvBi68_tO2je59IlNCE,218527
15
+ crypticorn/auth/client/api/service_api.py,sha256=CkqbMZKs66okin1ITcV45wpFcrkbry9nu7qmbwUGJYM,21920
16
+ crypticorn/auth/client/api/user_api.py,sha256=3WP2g-IxPs90LgRXf21gmrldnG_NGc7PMYddDITDQDU,198555
17
+ crypticorn/auth/client/api/wallet_api.py,sha256=hD0ABqofw5V4MXrkAPkipzoe0ZR8nGL7y0HzObI7T1E,124444
18
18
  crypticorn/auth/client/models/__init__.py,sha256=Y6t08mCcqpV7B1OIUZ5Vb5sgtr0s9sGy-0bhSh0DEgM,4383
19
19
  crypticorn/auth/client/models/add_wallet200_response.py,sha256=orw50N1bfr7qg9N8e73VmsvulFvBN0-8PMaR0ze79ks,2539
20
20
  crypticorn/auth/client/models/add_wallet_request.py,sha256=lap0RG_tbW6wq2RHlgUNugI4s0lQq50OO0tXOvK637I,3184
@@ -22,9 +22,9 @@ crypticorn/auth/client/models/authorize_user200_response.py,sha256=fstTaffARzCe7
22
22
  crypticorn/auth/client/models/authorize_user200_response_auth.py,sha256=OQzmKNICdr7tHrlhEDIxagDZx7XuW8VO2U3OMsWIJOA,3208
23
23
  crypticorn/auth/client/models/authorize_user_request.py,sha256=o_1Ms6npD_1dJQ6aYshEk9JPV7JIkmAmuRawDDPUoTc,3205
24
24
  crypticorn/auth/client/models/create_api_key200_response.py,sha256=UGjZwITv2EdS7bbt55D0w2an6_uO4u6gYr-GihL9m80,2459
25
- crypticorn/auth/client/models/create_api_key_request.py,sha256=mCdGZ4C7u73et_bv0pcRZgf1TU0cTmKty5idj9VaOqI,5627
25
+ crypticorn/auth/client/models/create_api_key_request.py,sha256=vn6OMjuPnGagFcwHxID43SSjHZIe59IYC1mCvGNP33I,5685
26
26
  crypticorn/auth/client/models/create_user_request.py,sha256=IyIlwn1F9arWEPrZRlL4ZmJOKOIRuxpe0gWodmxKuDk,2966
27
- crypticorn/auth/client/models/get_api_keys200_response_inner.py,sha256=6JGaM7NXn6C55s6VmAZSfzZHTFx5I5BCJ8eMJF1GlG4,6015
27
+ crypticorn/auth/client/models/get_api_keys200_response_inner.py,sha256=W9at4FX8OJk3gM3YFT0fLEvtM8Ubv7VtaeG3ZvQYIJ0,6073
28
28
  crypticorn/auth/client/models/list_wallets200_response.py,sha256=G2LQiThhtynkuDGFvIs-BowR38ut7cRbIeCzK4wMnPw,4732
29
29
  crypticorn/auth/client/models/list_wallets200_response_balances_inner.py,sha256=acTJa8B5U8j3_wS1TUYXnprptqF_T4dlV-wVaQ5ZXig,4023
30
30
  crypticorn/auth/client/models/list_wallets200_response_balances_inner_sale_round.py,sha256=KrCHFXXfc6U61nDFsq26gRtQQnc2_tSjL2fwQOnBfzI,3603
@@ -65,27 +65,27 @@ crypticorn/cli/templates/auth.py,sha256=i27-Ts-Eiyv6_WRshOp7NV5OYUNbw2-kiN5Ll0k2
65
65
  crypticorn/cli/templates/dependabot.yml,sha256=ct5ieB8KAV1KLzoYKUNm6dZ9wKG_P_JQHgRjZUfT54w,861
66
66
  crypticorn/cli/templates/merge-env.sh,sha256=BNPrDTihII0yG2gehBkWwWj0GqHmb6xwmrAgwFpl8dA,554
67
67
  crypticorn/cli/templates/ruff.yml,sha256=gWicFFTzC4nToSmRkIIGipos8CZ447YG0kebBCJhtJE,319
68
- crypticorn/common/__init__.py,sha256=Now08P5NDnIUQ2WWZ4MUo066FV58x7oOK95jpFT-kj8,793
68
+ crypticorn/common/__init__.py,sha256=3nv8Kfuqh15s9oTIqMQtDAqKGGNVC4BVHlHQFDmfg8I,792
69
69
  crypticorn/common/ansi_colors.py,sha256=-tMlUTE8NI7TPv7uj0kGRe-SI2hGaUNPKBFI_dfiZy0,1392
70
- crypticorn/common/auth.py,sha256=b7jhR8k7bQFfgokI_Eqji0MpfiyD4EhCoddefUSqs6Y,9925
70
+ crypticorn/common/auth.py,sha256=0YC6920_iyVq9OrZT0buJXoYzmjp5O4aTWXB-AVVthI,10022
71
71
  crypticorn/common/decorators.py,sha256=t5Y3vSJ-gt0n2vOYYjYN0dtzNXvZxrJs2SEItpzG8oo,1127
72
72
  crypticorn/common/enums.py,sha256=x-2xe0NUI8kB6DNg9GLjqAjYOsFAGwP-jdM1YgIt9AI,1381
73
73
  crypticorn/common/errors.py,sha256=qPCYpmxw0uZNmQw9RYj9vUsg-_R5aRn7fYE8qxTAnyA,30129
74
74
  crypticorn/common/exceptions.py,sha256=4oT58wcL9zQuqYU8op_36uZ1Kzt7JRCccu-o_usgqtU,6392
75
75
  crypticorn/common/logging.py,sha256=n-qaYreRNFVAFRUd91hzYoaTExNLysd9cgEXm-v6eJY,4440
76
- crypticorn/common/metrics.py,sha256=UDiWu9-B0BvePsCpcrN1EqxNRWxf_TimyUL8YfwJRco,461
77
- crypticorn/common/middleware.py,sha256=nclyrDEBF2Ypw7CTYYCU_PXDkmtWnQOt-hknBEYIf-4,2573
76
+ crypticorn/common/metrics.py,sha256=Hhl05p7UzcHWdv2l8UUfPlbCtQG0CDJ1DGEoKOiko7I,456
77
+ crypticorn/common/middleware.py,sha256=9J-Da1GNo14Xp7kPYkCPJFs9ozi4s1fHZ8ROuaQndHk,2599
78
78
  crypticorn/common/mixins.py,sha256=l7XQrBISaee6fDZXy96k0HnQ18XYocjTUXlNpVxhaOY,2206
79
79
  crypticorn/common/openapi.py,sha256=D8bCpCVVzYQptHrJ7SYOgCxI3R_d0cjW9KMOBq-x0xk,279
80
- crypticorn/common/pagination.py,sha256=eD4S8t-NHECWYCFTu3taeDv07_AzPBbopoKSZRBSiCM,2621
80
+ crypticorn/common/pagination.py,sha256=L4n6cf5itPB7qt0qzMgMcRuvDOhkTl_NSWFjyxnmyyE,7862
81
81
  crypticorn/common/scopes.py,sha256=ZreqkW_XshlyLJjciAfaIFmcy4HO6RnCsbbkjCw-fxc,2900
82
82
  crypticorn/common/urls.py,sha256=v23H2gevTNZ6HMRXDPiuc8znBbNdNqj0JTAdm5Hhms8,1223
83
- crypticorn/common/utils.py,sha256=LcWudhcjZtULg87yYghh5muTYdHvk3UmkEAXmX7xgLk,3073
84
- crypticorn/common/warnings.py,sha256=gg7_vqb30P91JWQfy3x8Ee9VrYUKuy6aEkeGuL6Mp7M,3083
85
- crypticorn/common/router/admin_router.py,sha256=BcA-zRL5Nb5saSoGFgWEuYtPOKM8PJ60KLY3yiD5S2E,4094
83
+ crypticorn/common/utils.py,sha256=5aWZmQEP6yKTeb7JbhfmXljUoNi2iR6F5GgG9aymTnM,3110
84
+ crypticorn/common/warnings.py,sha256=Ho2XmjsXbR0_8kTADG5PweWqOlrKlRwOr6Df-RKxDiU,3084
85
+ crypticorn/common/router/admin_router.py,sha256=pcGxNooWRoLmCPR8Dq7vC_1160Uwma7o1TGZ-WDJGAA,4095
86
86
  crypticorn/common/router/status_router.py,sha256=NpLaCF2a1jApo95iolKzzUKuyHbpf4Xwc0sM7dxQ9DE,873
87
87
  crypticorn/hive/__init__.py,sha256=hRfTlEzEql4msytdUC_04vfaHzVKG5CGZle1M-9QFgY,81
88
- crypticorn/hive/main.py,sha256=bSOY2PBi4VV_mvN1c0FQAI-En28f8HnmoZDm3g9X6lU,3103
88
+ crypticorn/hive/main.py,sha256=js63_J-Tvg1loyXxY9rmVGIak2slq3m4kmT4gOy-mWU,5589
89
89
  crypticorn/hive/utils.py,sha256=5T2GYnIFazXgAdUlO03xWqcMWhWkM82cfWvwsO8geHE,2040
90
90
  crypticorn/hive/client/__init__.py,sha256=Exioq01qeou_AXsWpEoLD-AhIlxmdTPF9hXhonk8d0s,2706
91
91
  crypticorn/hive/client/api_client.py,sha256=fDFsACK7hxXw_sgt3ZJVH2RplEdUhR0YZd4tsZA9P5Q,26869
@@ -93,14 +93,14 @@ crypticorn/hive/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1y
93
93
  crypticorn/hive/client/configuration.py,sha256=cQtPdorysVSBy2uXOof-GXozvJGdJFHRNoEhzCDPV1U,19125
94
94
  crypticorn/hive/client/exceptions.py,sha256=IKuM8sbMtr3T9z-fOuePTJmheUFahzmyZ8iamFaUpgM,6374
95
95
  crypticorn/hive/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- crypticorn/hive/client/rest.py,sha256=VhXkE7R3y1RD0QmbvIwmsk-LP_DmOei_zd9YiIXer28,6975
96
+ crypticorn/hive/client/rest.py,sha256=4BxLD0F8vamyjf-6OQB8M4soXR8SFOzgAQ9-9dIm6I4,7823
97
97
  crypticorn/hive/client/api/__init__.py,sha256=Qp35Nx0HEuKa8YmFcv6iSAqrLuR0YczPK7R-EEBDYuo,281
98
- crypticorn/hive/client/api/admin_api.py,sha256=ov2vApFo50A3uOAq717PBhrw2JpQSsHyBHnL7l3-iWI,59784
99
- crypticorn/hive/client/api/data_api.py,sha256=bXEx44opuJsJtNJORlL2A9By2FA-vhCep_ath_uIRXA,23218
100
- crypticorn/hive/client/api/models_api.py,sha256=ID0-IJjxRSQO6rq0HFaEKvEArD45QI2ULJIE5FFXJfg,76071
101
- crypticorn/hive/client/api/status_api.py,sha256=KIpSewGuK6_cUT6dfUjlvt35k1xW4YZcuSTCPWFURms,19577
98
+ crypticorn/hive/client/api/admin_api.py,sha256=bHSf4tapiQHg6M5YMoEzzfRaru5PCxaczPsqusKquS0,103905
99
+ crypticorn/hive/client/api/data_api.py,sha256=CBw5mNPi5XyU0Md2_EhyzlhWUidnjQBAEzYDEJQy9IY,41733
100
+ crypticorn/hive/client/api/models_api.py,sha256=1i4DbReBroCFWBS8o8flTtI4Y729BixQxA0tzL40YvI,135412
101
+ crypticorn/hive/client/api/status_api.py,sha256=b4jL3LTSX2XHFciARL1gbsql-8tXsJ7aqjHigs48WUc,33906
102
102
  crypticorn/hive/client/models/__init__.py,sha256=wnx72H1vU0TmWQhwe0Lq5AasPj03E9kz8Yg5UYDL4NA,1856
103
- crypticorn/hive/client/models/api_error_identifier.py,sha256=4Yfx8EJ_kvWCbwy9wfjcYWKqAETlvkVbqJf9pFdbHSc,4983
103
+ crypticorn/hive/client/models/api_error_identifier.py,sha256=lyh4-embx__hAqPzFtpafd6FjZH3ZNKJamnQLcXqoG0,4983
104
104
  crypticorn/hive/client/models/api_error_level.py,sha256=huHUOq0gBgH-MR4SZL4P-432DeW8UaMHjzvvAPvwSCE,725
105
105
  crypticorn/hive/client/models/api_error_type.py,sha256=IN_aDBQQP7sKXUNk-oElKcCBg7CYfCt8efL1qvhb54g,764
106
106
  crypticorn/hive/client/models/coin_info.py,sha256=7JQ8pkcGxz36yjAR7z0AaudkCp2Ahq88hLKGmjSZT8o,3242
@@ -124,24 +124,24 @@ crypticorn/hive/client/models/target.py,sha256=otOJK8s5WVUen6J1AQZpRiD330RIpaJU6
124
124
  crypticorn/hive/client/models/target_info.py,sha256=bnQl3505eQc1-dXZqrBCHA_5jgO8OfBiyDl5PQPlGww,3377
125
125
  crypticorn/hive/client/models/target_type.py,sha256=FUMaEFkPM7EvStPJE1auimDJ9mxDf6pbsFf-dF3coGw,684
126
126
  crypticorn/klines/__init__.py,sha256=9UUW013uZ5x4evz5zRUxbNid-6O9WAPPYvPZIHpAwms,87
127
- crypticorn/klines/main.py,sha256=S4ObqrhVlQyAvsiQ7K2tdFgttaJCcHAHJPHwfsVi7MY,2951
127
+ crypticorn/klines/main.py,sha256=hDEQx3UsmS3m0rHDQ6SAB-yMmiqzZLJIAPx_U8a5EJQ,6147
128
128
  crypticorn/klines/client/__init__.py,sha256=KAwR6kMFkKap_1Un_HsT8LqYLsTIKUNIJe9JI6Acprg,2792
129
129
  crypticorn/klines/client/api_client.py,sha256=XYk_eoVRHxQDoTKJJwMpO__LbU1DQtpMikBTyulJrvE,26925
130
130
  crypticorn/klines/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
131
131
  crypticorn/klines/client/configuration.py,sha256=9nI4_ej_iuKQay936DjvHIQ9jXFZ6f9tT4I02pgn9EM,19197
132
132
  crypticorn/klines/client/exceptions.py,sha256=UQOoeVgvSQknAxeG-nfg0629MfAQH0IpDBwnB0t4Qb8,6418
133
133
  crypticorn/klines/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
- crypticorn/klines/client/rest.py,sha256=M3VBl9SLU3D0L3DBX3Nr7sgL0Moh1G2mJX8KD_yyKbY,7021
134
+ crypticorn/klines/client/rest.py,sha256=i1uJzJaP_Hj8X1ccG2X2MWa5OJDLsQhG_Gv5Fq7t6lo,7869
135
135
  crypticorn/klines/client/api/__init__.py,sha256=OPC4DMWEWdqEKjnZicasGIx7tlOCenxz_rdAQJli-2M,519
136
- crypticorn/klines/client/api/admin_api.py,sha256=CGhHJ8O45QlNP6Zn3bXx-m92IOJM5Vz9clRIO2DM_VI,59836
137
- crypticorn/klines/client/api/change_in_timeframe_api.py,sha256=ALxGByJu6KBs2DBtoSP8ijjT4fc8eeWFsMn4focnbaA,12710
138
- crypticorn/klines/client/api/funding_rates_api.py,sha256=8RNBfVKzLchukiPDjN7IXErF0audGsaJizL6iCuAh7U,13860
139
- crypticorn/klines/client/api/ohlcv_data_api.py,sha256=zmj0dMTzofFf97np9mDZ4647Rj4gjL6w268GdUo_dmc,16806
140
- crypticorn/klines/client/api/status_api.py,sha256=U-y34gBUyrwqF6-A98Jk0q17WL88SPDMctOu1XlSu7I,19627
141
- crypticorn/klines/client/api/symbols_api.py,sha256=5TXxVW_6dHUAwbHd9qq2dNaM8orszUpYk1NdrNu6m9k,11059
142
- crypticorn/klines/client/api/udf_api.py,sha256=zaPJPsyyuYfNzO28xkkn_ZDJOwVaDlwtYSq8uoHLQMo,60899
136
+ crypticorn/klines/client/api/admin_api.py,sha256=PKzyLQ4k9VzIm4rxnIAh7wZ6fMS6SiXECp1sBNwQjpU,103957
137
+ crypticorn/klines/client/api/change_in_timeframe_api.py,sha256=11GXfNTtvx6pSESHEN0dbnzN8Ti3lyYc0hAs0EiLtyM,22793
138
+ crypticorn/klines/client/api/funding_rates_api.py,sha256=qbPYArqZqapIO92jV9lQkq863I1GrkHKvmgyOawW3hQ,25612
139
+ crypticorn/klines/client/api/ohlcv_data_api.py,sha256=0tFQ557sTNU8IvU-Ehe67Ch7fbnxpd5dPW0Ba9XqdKw,31682
140
+ crypticorn/klines/client/api/status_api.py,sha256=EycTRgz6DAkRnMMSLI2T36qoqh0lAyZ7t-df9pGfbV0,33956
141
+ crypticorn/klines/client/api/symbols_api.py,sha256=Vx2xgmpsNnshs9foMR6_gU_9HOu2-5bMCILNUP1UBpg,19201
142
+ crypticorn/klines/client/api/udf_api.py,sha256=3XrhHyN0iA0f7tKVNt-qu1dNE7qg2W4gZc9R4dT3t7g,107040
143
143
  crypticorn/klines/client/models/__init__.py,sha256=xcPaL5Lz08YQOYkpODE_u13QTeOQSEomdcO4WMlJcmc,1686
144
- crypticorn/klines/client/models/api_error_identifier.py,sha256=42hWIgovnHBojE9ccg9SULOAcJPror6adRsAMqmdHgI,4959
144
+ crypticorn/klines/client/models/api_error_identifier.py,sha256=WHZXP-Gb6qi4hJN-t0dEOeUZClTFPC4k7PsoUjTi7QY,5039
145
145
  crypticorn/klines/client/models/api_error_level.py,sha256=bNh7rTARLMKFdBMm3FLyVLI23MwN4gzE_4oi1gJsxq4,769
146
146
  crypticorn/klines/client/models/api_error_type.py,sha256=3u1K25La6DmnoJc7UL_PeK7FpbTd36NQhb9FfpeP1uE,808
147
147
  crypticorn/klines/client/models/change_in_timeframe.py,sha256=NBt_u2n5U1P1S8c28edokdbqyvTOYUQ7dYgvi2g_Ci8,2554
@@ -161,24 +161,24 @@ crypticorn/klines/client/models/symbol_type.py,sha256=uOEqlQJ714fa0SEYOxzCOx9cG-
161
161
  crypticorn/klines/client/models/timeframe.py,sha256=bSZJz3Q78V1RAnm3ZDtGBzFOnDKE3Pc5A0eP3ky3KaI,760
162
162
  crypticorn/klines/client/models/udf_config.py,sha256=cVSxnJrkwnS4p0fEUgZMekueDv28k-p58bZwvHMSmqc,5152
163
163
  crypticorn/metrics/__init__.py,sha256=t7FrHV5PaVTka90eIxDgOaWvOiyznSStcUanSbLov2o,126
164
- crypticorn/metrics/main.py,sha256=hVOlPsn2_1rrAGBxUO95KO2rpVlJUmIdzdUAs0ORgXw,3544
164
+ crypticorn/metrics/main.py,sha256=zbG-bH6iY7oTJjbP6VFvwYeusbf6HwKoEo2Z1cKEQwY,7679
165
165
  crypticorn/metrics/client/__init__.py,sha256=bu9LdJkG7vljgmLVKhoSY08ooOuEo0AhoHt7-zDVyek,2720
166
166
  crypticorn/metrics/client/api_client.py,sha256=pGWJuO-mgxlUdhJGwkScf7CviGzjDrmUAiU0LXasQY4,26934
167
167
  crypticorn/metrics/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
168
- crypticorn/metrics/client/configuration.py,sha256=wA1hBWEINMM_AlZg-DAv1AelmkjBERB5d2gA66aEwSM,19158
168
+ crypticorn/metrics/client/configuration.py,sha256=BQNgtkCNhI3uB8qCV54TMf85b3sFzQYvXGMbhar5KSM,19202
169
169
  crypticorn/metrics/client/exceptions.py,sha256=UegnYftFlQDXAQv8BmD20yRzTtWpjTHcuOymTBWmgeE,6421
170
170
  crypticorn/metrics/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
- crypticorn/metrics/client/rest.py,sha256=pWeYnpTfTV7L5U6Kli3b7i8VrmqdG8sskqSnTHPIoQo,7025
171
+ crypticorn/metrics/client/rest.py,sha256=Ka3Gz1qyqz8nnrCVGM0B2pu7FU-Doku2zXMjqTJtTYU,7873
172
172
  crypticorn/metrics/client/api/__init__.py,sha256=nNmEy9XBH8jQboMzedrzeGl8OVuDo_iylCaFw4Fgysg,649
173
- crypticorn/metrics/client/api/admin_api.py,sha256=_YobvzUaNfv0CohQdAndUH2HPw5u6FbHwVaUATvsFyU,59843
174
- crypticorn/metrics/client/api/exchanges_api.py,sha256=61js7XQkuBqQsZeJ221CmcCjiISZGEbfeu64ThplfsQ,55151
175
- crypticorn/metrics/client/api/indicators_api.py,sha256=jjSeTZe_o1_TJx_S3m-qngXRhAuGifk_MAqZXYedbns,26946
176
- crypticorn/metrics/client/api/logs_api.py,sha256=lDOixn5hn3DWc6HjExWtKZfy7U4NfcSLsO1bNFrx4GE,13550
177
- crypticorn/metrics/client/api/marketcap_api.py,sha256=WYkg5AptRtU_aUXiqqig8RHS7FQc79qhC1mM5EObfL8,51965
178
- crypticorn/metrics/client/api/markets_api.py,sha256=NbPtD5bQK_Nt73hlVd6cd1pAZ7HO1QQgNl_abNoN00s,14739
179
- crypticorn/metrics/client/api/quote_currencies_api.py,sha256=H4c3zOp5eTTUrRMlMH-H8aIIBpV4Ioj8c65UUt_BEuE,11259
180
- crypticorn/metrics/client/api/status_api.py,sha256=_Ou_EGmjPyv32G-S4QKfRemdpGG6FUsgOkbGDfYaFp0,19633
181
- crypticorn/metrics/client/api/tokens_api.py,sha256=x5a-YAeAgFJm-pN4K3-lOM-WPVYAxoBr-AYb-oxhysM,19522
173
+ crypticorn/metrics/client/api/admin_api.py,sha256=FCJF1kB7qC3fw_aqB5r24W_8HoeQrbKnUpFSDmA9y3w,103964
174
+ crypticorn/metrics/client/api/exchanges_api.py,sha256=agbcKEDArHKoO8tRmVCP51A8kPfiUM-h4v-cRAK0YgU,104834
175
+ crypticorn/metrics/client/api/indicators_api.py,sha256=ObVTmIcomyAhc_O9d1AtFZMDKm6chkYt0kGbKjf-yLg,50312
176
+ crypticorn/metrics/client/api/logs_api.py,sha256=k-hTamSx-P8ctP3KbLn10hQ0N51LEiTuMN4IHFaDY2c,25067
177
+ crypticorn/metrics/client/api/marketcap_api.py,sha256=FZAWYmrWBz98RCWeVtC2a43xE94mc9zlw_ClfdepOZE,97889
178
+ crypticorn/metrics/client/api/markets_api.py,sha256=iF3olttACLG1GVX3eBFvoRbdF_lNby1BI76XuzWkh5k,27589
179
+ crypticorn/metrics/client/api/quote_currencies_api.py,sha256=ygEu5SvsvgpW4hGAniqKOxChaoRdqV-qFRhJwBFVnoo,19716
180
+ crypticorn/metrics/client/api/status_api.py,sha256=6fZ6SoP4EZ1O5NTxHjejkenMSffi2gfIrIJaOSFzq5s,33962
181
+ crypticorn/metrics/client/api/tokens_api.py,sha256=Uxwe7owsXTQTnCeu0P68mf0QGk9X3GQN_uKGzNobX-8,34023
182
182
  crypticorn/metrics/client/models/__init__.py,sha256=hPPLh2kQc3KNHCLeOT7AS2HXu04LEeSp_G4ME7BCmW4,1475
183
183
  crypticorn/metrics/client/models/api_error_identifier.py,sha256=S55hnVdp469PkfdWCcpKlpEfO9_gLzQZPuY-gKwOuBA,5238
184
184
  crypticorn/metrics/client/models/api_error_level.py,sha256=soxtGExzlBja-Jux_jguro-1taLAGcKmGSHlxTKTYR4,772
@@ -196,22 +196,22 @@ crypticorn/metrics/client/models/severity.py,sha256=Bwls2jjCMP2lKc-_67d5WZbGPAeb
196
196
  crypticorn/metrics/client/models/time_interval.py,sha256=8bHhMNt56xVGvJi5xNFMrAkAZFRKfym1UkeGoM2H0j8,772
197
197
  crypticorn/metrics/client/models/trading_status.py,sha256=_S-KAyuCJsLLY0UTcNKkhLWoPJS-ywf7y3yTdhIuF0w,746
198
198
  crypticorn/pay/__init__.py,sha256=ux-B-YbNetpTlZTb2fijuGUOEmSm4IB0fYtieGnVDBg,78
199
- crypticorn/pay/main.py,sha256=YZ52b8ZxMGHJIxrzrcl8OKX8yJAxdBusUvqsrYdWgRo,949
199
+ crypticorn/pay/main.py,sha256=vRW7ISQDg4bqcqajTkrROqGP3y5RZXBqUE90uLrnvXQ,1233
200
200
  crypticorn/pay/client/__init__.py,sha256=fHk-Ut0ujx6rNiY3GtMY-1oY0unRSdBEKqxJS3Ch8hk,2243
201
201
  crypticorn/pay/client/api_client.py,sha256=HjmMJeQ4hcDNWm5I9LEQtZEGD1hPeyQU2y_SLmgD9mE,26870
202
202
  crypticorn/pay/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
203
- crypticorn/pay/client/configuration.py,sha256=fCMvb2xTueC13bqMeV2BdgvzCyIJscHuOYBj-upHHn4,19130
203
+ crypticorn/pay/client/configuration.py,sha256=-PRnl7AEOWSGACFOzIF42EMTZ8iGluXwhZvqAhSRXPI,19110
204
204
  crypticorn/pay/client/exceptions.py,sha256=hbV_qDEzFJ2GVU2hVi6DqQMFztSBH1M8Nnuzou5kW-g,6381
205
205
  crypticorn/pay/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
206
- crypticorn/pay/client/rest.py,sha256=GfZLzoQiqFOYC1jIwCuxeY9XCOxlpu-Cvwn2Tu3Q1n0,6981
206
+ crypticorn/pay/client/rest.py,sha256=rk5iUofsyl1as4cg7VjCxCsae41exoeelV4MKXJEMlc,7829
207
207
  crypticorn/pay/client/api/__init__.py,sha256=OLynXJY1ujBoaam3yRbuC5QWZK31RJRGp_MWrmJ6DqY,359
208
- crypticorn/pay/client/api/admin_api.py,sha256=YxMUHucqPbl3oorYE0hJs9nn3TTKHrFpOGru0QcP7IA,59897
209
- crypticorn/pay/client/api/now_payments_api.py,sha256=HhhgdOUwrFG0-T2D2vDOdN57GmEcMYM48qr6jYpezJ0,49589
210
- crypticorn/pay/client/api/payments_api.py,sha256=fza4PnsZk9-iNubfgeprT01REcu9LgFhpkxpzVCVnSg,24640
211
- crypticorn/pay/client/api/products_api.py,sha256=ZOF-O8bkyKsjg5jKcW4hpcMhOlkc7qywExPCMpHk0F0,42756
212
- crypticorn/pay/client/api/status_api.py,sha256=G7ACZnRoKX87WbUJ8eI47XtQu_u1Xl0H1OHnC8-XrQg,19581
208
+ crypticorn/pay/client/api/admin_api.py,sha256=q2tu7IJZS-E9xpqpR9fXwzFb5qQZnuZYRcT0YZnQKWw,120069
209
+ crypticorn/pay/client/api/now_payments_api.py,sha256=dY8QpVCtgtIYuBvYTjnj8jGUWgJs47S7z-mN1r2CIuM,86450
210
+ crypticorn/pay/client/api/payments_api.py,sha256=DtzWjztuNoOW7DBNSU_uStueMM7DMxe16-17Ks8_378,45072
211
+ crypticorn/pay/client/api/products_api.py,sha256=HWTPzRMh_yQTlze2l6vsoWnfBrYN1grGFMEClmn0hKI,75690
212
+ crypticorn/pay/client/api/status_api.py,sha256=5tXrt050_F_WUYuhWItO8Hja8AfGHO_0d1HLrOkruaA,33910
213
213
  crypticorn/pay/client/models/__init__.py,sha256=Q-tN_kaQNpoCunlfMeGysTcwl2lyP9S5nJu_HFu4RZ4,1324
214
- crypticorn/pay/client/models/api_error_identifier.py,sha256=iB9vCW8uLNmmB0I5jJ2fbsSMVDzi_uCXjHyAA3KhD9I,5202
214
+ crypticorn/pay/client/models/api_error_identifier.py,sha256=tTg05asZvtM2dW-9LYk9urvlj0UJSWxZoOVKseYwxO4,5198
215
215
  crypticorn/pay/client/models/api_error_level.py,sha256=tPnObV-r0FK9e3SsqA-TBTxF7cLygn-kS5-Q0LAi8Zs,732
216
216
  crypticorn/pay/client/models/api_error_type.py,sha256=eD86iPZAOK6pL1CdCFivSQRbjpa9VcwFEl55xzjejqY,771
217
217
  crypticorn/pay/client/models/exception_detail.py,sha256=wZUdv59lViyGUJSdfZYu6gjO1gugd97XZSkVgtpcxDg,3801
@@ -224,29 +224,28 @@ crypticorn/pay/client/models/product.py,sha256=78_QcOVHEYtG2WQVCTIw_Wm-oATqNlpNc
224
224
  crypticorn/pay/client/models/product_create.py,sha256=uoVQK31dEJWpvtJETuQEK_wyAM4AOOWRYcZK8J3HUS8,3541
225
225
  crypticorn/pay/client/models/product_update.py,sha256=dM27vbcHRgtu3YrFgux3ufg8QMN5ta6OnGGRIe8Wrjk,4441
226
226
  crypticorn/pay/client/models/provider.py,sha256=w2gJkEoTBnW-VluQ3AYLouWelszdf8Y4LnAVkWJUkTQ,656
227
- crypticorn/pay/client/models/scope.py,sha256=tHhMZxKekwRw7--gljw5ocYXk7Sm1XyEJlaOQdiL-Y4,2457
227
+ crypticorn/pay/client/models/scope.py,sha256=2FYPRBuFMEsz-gwdYaKSZNSNW1iliJIwiLYCBBn16jk,2503
228
228
  crypticorn/pay/client/models/subscription.py,sha256=mkSaNn4bXIGRPCsGxwDoPjvhXYhgCFaeZhmeAASNSf4,3140
229
229
  crypticorn/trade/__init__.py,sha256=QzScH9n-ly3QSaBSpPP7EqYwhdzDqYCZJs0-AhEhrsY,84
230
- crypticorn/trade/main.py,sha256=Uzbw9D7q8_sngIaSxv9EBqIEoz0lJI5yYVJdERju0R0,1349
231
- crypticorn/trade/client/__init__.py,sha256=JVxS3kclaAweWNybWSSxHA7J4LQYWL8gb95NDTj64Rw,4094
230
+ crypticorn/trade/main.py,sha256=j-sWkCScyHe1aVeXeb37xbW3FULuvaUSivUUSdsSdqg,1576
231
+ crypticorn/trade/client/__init__.py,sha256=5RnMRt70Vdt8yRqPyBADFLL_mtOzsqEIN-KWiNuYXBA,4156
232
232
  crypticorn/trade/client/api_client.py,sha256=jcNo7CbwCmLd1whXXVnkH378MWnw_wlKzJ07L4RpCog,26966
233
233
  crypticorn/trade/client/api_response.py,sha256=WhxwYDSMm6wPixp9CegO8dJzjFxDz3JF1yCq9s0ZqKE,639
234
234
  crypticorn/trade/client/configuration.py,sha256=n_ENslVAtUf3FN7XiNYBHFdeg-qhia8wSzWhBkMN3p0,19198
235
235
  crypticorn/trade/client/exceptions.py,sha256=SpFrOXW6rxrh-VqnH7rt7uBrJCKdCgR8YwkeaAjVXAM,6465
236
236
  crypticorn/trade/client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
237
- crypticorn/trade/client/rest.py,sha256=7vR8Z4wHrU1uGZyW1B6j96Qo5PECAfMl0-d-wxl6S0A,7067
238
- crypticorn/trade/client/api/__init__.py,sha256=PzT1LP1-ner5PA-f_n5v97ifkP05Yh-k-ReOI9T1j-o,727
239
- crypticorn/trade/client/api/admin_api.py,sha256=x3rSuXi68grjnBZ8ro5-7wjnkLR20qtqf9zmN3KuJcg,59879
240
- crypticorn/trade/client/api/api_keys_api.py,sha256=HltCdJ-UbI9gQ5fvIvpEaAQe3ZCoq7RTiZ_2uHI7u3s,53819
241
- crypticorn/trade/client/api/bots_api.py,sha256=Ub6SVM6PgA0exB4eGVtipvm19epKNtIpxiepdCjztLU,50859
242
- crypticorn/trade/client/api/exchanges_api.py,sha256=PVTRapNFD-tOVJmSaC_X_8NbWMxM97YDB77IljKdCkw,29007
243
- crypticorn/trade/client/api/futures_trading_panel_api.py,sha256=L4wVotLLu4p-44nEInIgM79I40xeObmn3hN1zYPiNWM,50071
244
- crypticorn/trade/client/api/notifications_api.py,sha256=-_b61sYBL7jBkSnBqhN8feDzUA3K8KLZOiLPV6Wae24,61426
245
- crypticorn/trade/client/api/orders_api.py,sha256=Sz-jOWtvVUz_Ok_WHmalN9aRdjxRyvrl3MEngrrRC5k,11167
246
- crypticorn/trade/client/api/status_api.py,sha256=YtSZh7xuOl_vq9xfPqdnfuOEA9EpftOqCR7H7yWVAcI,19671
247
- crypticorn/trade/client/api/strategies_api.py,sha256=L3BlHboDnDtsWf70_kGBU839zy4lGveF-NP1h0bogJQ,53156
248
- crypticorn/trade/client/api/trading_actions_api.py,sha256=9S5KbugtgkJAuGjujgs-ZvE5MV-4orhABkbIJxKcjsw,32735
249
- crypticorn/trade/client/models/__init__.py,sha256=KoJgwPzyY4gzwmIZuwmKyQx0Enn2-qcy7J0ahBjXIAc,2789
237
+ crypticorn/trade/client/rest.py,sha256=nVyhZrONq1kRHqodmHcOYxCMf5LgSKdjMzVMqt-uTQo,7915
238
+ crypticorn/trade/client/api/__init__.py,sha256=4K_FMAIeWRivGFNavL4mKo4gr8hLewE5vxRWBHkwPYo,638
239
+ crypticorn/trade/client/api/admin_api.py,sha256=IdNLMEPuQ_ma_9vW2iZY0FH0OtxtxOXimqTmXxUo74c,119964
240
+ crypticorn/trade/client/api/api_keys_api.py,sha256=zVR5VLNVNf-hFRitM2ZwF4R9eh32vb7AFSEBptKU6R0,111991
241
+ crypticorn/trade/client/api/bots_api.py,sha256=0lptlh1EAGxi7jGPjczThAXhHwQ9MmN_-Iy_QpcilOs,88892
242
+ crypticorn/trade/client/api/exchanges_api.py,sha256=y17CRRhDDvChcbyx_Yy4WLWyEi8fMadjHmZ6G6Lm1Dg,50586
243
+ crypticorn/trade/client/api/notifications_api.py,sha256=0JNNQGj3jn1jS1L9W2lMhU58Di01X4P3UKZ53eHtfd0,107755
244
+ crypticorn/trade/client/api/orders_api.py,sha256=pXPaxmLbGajk5m9DPZXJ0myqKBjeeCnAHbw0DiLiuDU,19515
245
+ crypticorn/trade/client/api/status_api.py,sha256=Yz-28UeaeJ-FIXAQNf4yeMYx3WZ1Q-CfFlNlBtICM_w,34000
246
+ crypticorn/trade/client/api/strategies_api.py,sha256=DhuWQWEw86LCqZ1tNAcfdBEwcJg5F_k6TvDgzre1eCI,93973
247
+ crypticorn/trade/client/api/trading_actions_api.py,sha256=pQn1tpzZz0nD2CHWSQ1tqZ8J7xzXToH9Z1wpZUXn5Ms,57119
248
+ crypticorn/trade/client/models/__init__.py,sha256=At_q0foIW4HzsEaimCU2WX6cw1MUCDX8gVXBKvifc64,2940
250
249
  crypticorn/trade/client/models/api_error_identifier.py,sha256=vOnj2swcFn3qU5brKTmd4BJEOkBLaeE07iMzLnFLogE,5282
251
250
  crypticorn/trade/client/models/api_error_level.py,sha256=8Sau6q3K29fg-EIGnex0yrw7gXJZLmyGTicYIXcehmY,816
252
251
  crypticorn/trade/client/models/api_error_type.py,sha256=34NBgCP296pQx8doVpeqlhopPfBfRH1I-135YVtN19Y,855
@@ -255,12 +254,13 @@ crypticorn/trade/client/models/bot_create.py,sha256=tMko-M8c1iTlbxP8LcCALr1Ep2TM
255
254
  crypticorn/trade/client/models/bot_status.py,sha256=Yga6SVNHBOcJhBENCWi7I12aSBhMDPI5uQrTPBReOQw,806
256
255
  crypticorn/trade/client/models/bot_update.py,sha256=ptZquK4D7eUkfBLqZK5F2uJt-5am54E8KVJ7xu9JAfE,3458
257
256
  crypticorn/trade/client/models/exception_detail.py,sha256=mW4Zxb1KtRMboZDupnhGpkiYHi1e2JE_j3qewgTwfbc,3891
258
- crypticorn/trade/client/models/exchange.py,sha256=dGaPReYJA4trppExGlKrYxmBBqJKuxYSSK37p0e5LXI,802
257
+ crypticorn/trade/client/models/exchange.py,sha256=0n80AU21SdEOPCST4wha97ATmDO4JQM0-TPrpDxPsZw,1008
259
258
  crypticorn/trade/client/models/exchange_key.py,sha256=aGyEDANSuxUdKFWTnNDi2HvAh7a-tHrx3Xi2uaT8Jig,3814
259
+ crypticorn/trade/client/models/exchange_key_balance.py,sha256=h0jjPkfJSTm5mI2Ubg4YbmhiT5nQ1rHZSJkY6hrdQI8,3776
260
260
  crypticorn/trade/client/models/exchange_key_create.py,sha256=n6yiomatf9FGB5GQpB2gVhWVmTzd7Md3rEFM2gPB2Mc,3418
261
261
  crypticorn/trade/client/models/exchange_key_update.py,sha256=6rBpzKIAzRq7Wg_P-nNSOJKoljTm3Lq3B8cVkZtM50E,3725
262
262
  crypticorn/trade/client/models/execution_ids.py,sha256=0MHzL43PX-aMjKxCkcLTPbszG5q0KruZPwlColEZW58,2963
263
- crypticorn/trade/client/models/futures_balance.py,sha256=BePXd2bngkHjcKtZButMFcsU4RS7MU1QkvzF46q8X6U,4191
263
+ crypticorn/trade/client/models/futures_balance.py,sha256=jcf6q51Gyh80rgN6aNwHANwo3BcbO6uiqK9hEoEw0d4,4101
264
264
  crypticorn/trade/client/models/futures_trading_action.py,sha256=5zGeKBTwHsHC3aQkM7fDE98yH__bC9kw-PtALhrumKI,8551
265
265
  crypticorn/trade/client/models/futures_trading_action_create.py,sha256=Aho_Do2h-Wegaq-tCWJGD3kRpueISnfkdp5c9KvTi9A,8149
266
266
  crypticorn/trade/client/models/log_level.py,sha256=Fv2WlajyWZTiXBRNyFQ1x0xqh5nrzKL_0k7fyt92bHA,813
@@ -272,17 +272,18 @@ crypticorn/trade/client/models/notification_update.py,sha256=a1tpTjKWA2kOqBJxxey
272
272
  crypticorn/trade/client/models/order.py,sha256=AQu1qV9GkbLqckgY8AW9m_hd6YDpStAIFJCEUmMewZw,11883
273
273
  crypticorn/trade/client/models/order_status.py,sha256=dQkbXtPSW4bVGQOVL0M9-Q_fMpAUa4v3uwuuUwXNcnY,852
274
274
  crypticorn/trade/client/models/post_futures_action.py,sha256=KBI3lPayQQNfQP8Attow9tkuo9zimJk19cKQQb9JK-w,3123
275
+ crypticorn/trade/client/models/spot_balance.py,sha256=8W4IH-E1zq0gklVsAAT2h8mXV58_BGcOmZzvyaQucGY,3495
275
276
  crypticorn/trade/client/models/spot_trading_action_create.py,sha256=g6Puv6BTLhgtTYqeE-QhC9WqM4wfoNQOLFsqEXZC0aQ,7494
276
- crypticorn/trade/client/models/strategy.py,sha256=Jlgt4oxseebVkbhthQDH3ayOLO2muYnyP6Kg23W02ic,5797
277
- crypticorn/trade/client/models/strategy_create.py,sha256=jtr1lUcafFzqYQKiuSXWEqfhLiT4WPj9yw63jtVW6kI,5285
278
- crypticorn/trade/client/models/strategy_exchange_info.py,sha256=xRUX4vY4HTZP2hq6joaCvO01MVRbZul_qYGrvzdZpr4,2801
279
- crypticorn/trade/client/models/strategy_update.py,sha256=f7UsKSlNardj5h6uqHYbacjWWQscXkFDqcLOoefa28M,5048
277
+ crypticorn/trade/client/models/strategy.py,sha256=YxVPkxcFijU62k03a1IhcvfyeEeQhMmkZHqMCkh_upI,5856
278
+ crypticorn/trade/client/models/strategy_create.py,sha256=mnIDuxaAN746fTNrryTdfljMVr4YygWJqE5wn7Xqk6I,5333
279
+ crypticorn/trade/client/models/strategy_exchange_info.py,sha256=1O03TWw-mRdvJKbH4a3qtqeuRKJpwduk1bcMrQRKkgs,3260
280
+ crypticorn/trade/client/models/strategy_update.py,sha256=g427iKdk-gIsQ_BfD3E0W8b_gWd00oUZuvRhIv7ZioQ,5062
280
281
  crypticorn/trade/client/models/tpsl.py,sha256=iuHwBxHaUdtJn7NhcTE6Skzv4nmoSF8jEnf7_bTglwk,3730
281
282
  crypticorn/trade/client/models/tpsl_create.py,sha256=nX4i2BGWv5rmu3SLgRngfvEMFOWa3CIy0G3fyoxI-e4,3351
282
283
  crypticorn/trade/client/models/trading_action_type.py,sha256=BysUEOl85zs79EA2zOcDN1EExcpQdABaJ4Jz08_z8VU,857
283
- crypticorn-2.17.0rc1.dist-info/licenses/LICENSE,sha256=HonAVvzFXkP2C1d7D3ByIKPwjGH8NcHTAQvKH7uvOHQ,1856
284
- crypticorn-2.17.0rc1.dist-info/METADATA,sha256=LQz-vbKaperW4olSKyppd4LKSLEsGRfg95STN9vjv58,10044
285
- crypticorn-2.17.0rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
286
- crypticorn-2.17.0rc1.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
287
- crypticorn-2.17.0rc1.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
288
- crypticorn-2.17.0rc1.dist-info/RECORD,,
284
+ crypticorn-2.17.0rc3.dist-info/licenses/LICENSE,sha256=HonAVvzFXkP2C1d7D3ByIKPwjGH8NcHTAQvKH7uvOHQ,1856
285
+ crypticorn-2.17.0rc3.dist-info/METADATA,sha256=vcTZ2ugWSHmHWo-M6aFm38Ne6SMhCKMsdK1hakRRXgw,11712
286
+ crypticorn-2.17.0rc3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
287
+ crypticorn-2.17.0rc3.dist-info/entry_points.txt,sha256=d_xHsGvUTebPveVUK0SrpDFQ5ZRSjlI7lNCc11sn2PM,59
288
+ crypticorn-2.17.0rc3.dist-info/top_level.txt,sha256=EP3NY216qIBYfmvGl0L2Zc9ItP0DjGSkiYqd9xJwGcM,11
289
+ crypticorn-2.17.0rc3.dist-info/RECORD,,