compass_api_sdk 0.9.21__py3-none-any.whl → 0.9.22__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.

Potentially problematic release.


This version of compass_api_sdk might be problematic. Click here for more details.

@@ -0,0 +1,477 @@
1
+ """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
+
3
+ from .basesdk import BaseSDK
4
+ from compass_api_sdk import errors, models, utils
5
+ from compass_api_sdk._hooks import HookContext
6
+ from compass_api_sdk.types import OptionalNullable, UNSET
7
+ from typing import Any, Mapping, Optional, Union
8
+
9
+
10
+ class VaultsERC4626(BaseSDK):
11
+ def deposit(
12
+ self,
13
+ *,
14
+ vault_address: str,
15
+ amount: Union[
16
+ models.VaultDepositRequestAmount, models.VaultDepositRequestAmountTypedDict
17
+ ],
18
+ chain: models.Chain,
19
+ sender: str,
20
+ receiver: OptionalNullable[str] = UNSET,
21
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
22
+ server_url: Optional[str] = None,
23
+ timeout_ms: Optional[int] = None,
24
+ http_headers: Optional[Mapping[str, str]] = None,
25
+ ) -> models.TxResponse:
26
+ r"""Deposit to Vault
27
+
28
+ Deposit tokens into a Vault (ERC-4626 Standard) to earn passive yield.
29
+
30
+ Each vault accepts one unique token that can be deposited.
31
+
32
+ :param vault_address: The vault address you are depositing to.
33
+ :param amount: The amount of tokens to deposit into the vault.
34
+ :param chain: The chain to use.
35
+ :param sender: The address of the transaction sender.
36
+ :param receiver: The address which will receive the shares from the vault representing their proportional ownership of the vault's assets. Defaults to the sender.
37
+ :param retries: Override the default retry configuration for this method
38
+ :param server_url: Override the default server URL for this method
39
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
40
+ :param http_headers: Additional headers to set or replace on requests.
41
+ """
42
+ base_url = None
43
+ url_variables = None
44
+ if timeout_ms is None:
45
+ timeout_ms = self.sdk_configuration.timeout_ms
46
+
47
+ if server_url is not None:
48
+ base_url = server_url
49
+ else:
50
+ base_url = self._get_url(base_url, url_variables)
51
+
52
+ request = models.VaultDepositRequest(
53
+ vault_address=vault_address,
54
+ amount=amount,
55
+ receiver=receiver,
56
+ chain=chain,
57
+ sender=sender,
58
+ )
59
+
60
+ req = self._build_request(
61
+ method="POST",
62
+ path="/v0/vaults/deposit",
63
+ base_url=base_url,
64
+ url_variables=url_variables,
65
+ request=request,
66
+ request_body_required=True,
67
+ request_has_path_params=False,
68
+ request_has_query_params=True,
69
+ user_agent_header="user-agent",
70
+ accept_header_value="application/json",
71
+ http_headers=http_headers,
72
+ security=self.sdk_configuration.security,
73
+ get_serialized_body=lambda: utils.serialize_request_body(
74
+ request, False, False, "json", models.VaultDepositRequest
75
+ ),
76
+ timeout_ms=timeout_ms,
77
+ )
78
+
79
+ if retries == UNSET:
80
+ if self.sdk_configuration.retry_config is not UNSET:
81
+ retries = self.sdk_configuration.retry_config
82
+
83
+ retry_config = None
84
+ if isinstance(retries, utils.RetryConfig):
85
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
86
+
87
+ http_res = self.do_request(
88
+ hook_ctx=HookContext(
89
+ config=self.sdk_configuration,
90
+ base_url=base_url or "",
91
+ operation_id="vaults_deposit",
92
+ oauth2_scopes=[],
93
+ security_source=self.sdk_configuration.security,
94
+ ),
95
+ request=req,
96
+ error_status_codes=["422", "4XX", "5XX"],
97
+ retry_config=retry_config,
98
+ )
99
+
100
+ response_data: Any = None
101
+ if utils.match_response(http_res, "200", "application/json"):
102
+ return utils.unmarshal_json(http_res.text, models.TxResponse)
103
+ if utils.match_response(http_res, "422", "application/json"):
104
+ response_data = utils.unmarshal_json(
105
+ http_res.text, errors.HTTPValidationErrorData
106
+ )
107
+ raise errors.HTTPValidationError(data=response_data)
108
+ if utils.match_response(http_res, "4XX", "*"):
109
+ http_res_text = utils.stream_to_text(http_res)
110
+ raise errors.APIError(
111
+ "API error occurred", http_res.status_code, http_res_text, http_res
112
+ )
113
+ if utils.match_response(http_res, "5XX", "*"):
114
+ http_res_text = utils.stream_to_text(http_res)
115
+ raise errors.APIError(
116
+ "API error occurred", http_res.status_code, http_res_text, http_res
117
+ )
118
+
119
+ content_type = http_res.headers.get("Content-Type")
120
+ http_res_text = utils.stream_to_text(http_res)
121
+ raise errors.APIError(
122
+ f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
123
+ http_res.status_code,
124
+ http_res_text,
125
+ http_res,
126
+ )
127
+
128
+ async def deposit_async(
129
+ self,
130
+ *,
131
+ vault_address: str,
132
+ amount: Union[
133
+ models.VaultDepositRequestAmount, models.VaultDepositRequestAmountTypedDict
134
+ ],
135
+ chain: models.Chain,
136
+ sender: str,
137
+ receiver: OptionalNullable[str] = UNSET,
138
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
139
+ server_url: Optional[str] = None,
140
+ timeout_ms: Optional[int] = None,
141
+ http_headers: Optional[Mapping[str, str]] = None,
142
+ ) -> models.TxResponse:
143
+ r"""Deposit to Vault
144
+
145
+ Deposit tokens into a Vault (ERC-4626 Standard) to earn passive yield.
146
+
147
+ Each vault accepts one unique token that can be deposited.
148
+
149
+ :param vault_address: The vault address you are depositing to.
150
+ :param amount: The amount of tokens to deposit into the vault.
151
+ :param chain: The chain to use.
152
+ :param sender: The address of the transaction sender.
153
+ :param receiver: The address which will receive the shares from the vault representing their proportional ownership of the vault's assets. Defaults to the sender.
154
+ :param retries: Override the default retry configuration for this method
155
+ :param server_url: Override the default server URL for this method
156
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
157
+ :param http_headers: Additional headers to set or replace on requests.
158
+ """
159
+ base_url = None
160
+ url_variables = None
161
+ if timeout_ms is None:
162
+ timeout_ms = self.sdk_configuration.timeout_ms
163
+
164
+ if server_url is not None:
165
+ base_url = server_url
166
+ else:
167
+ base_url = self._get_url(base_url, url_variables)
168
+
169
+ request = models.VaultDepositRequest(
170
+ vault_address=vault_address,
171
+ amount=amount,
172
+ receiver=receiver,
173
+ chain=chain,
174
+ sender=sender,
175
+ )
176
+
177
+ req = self._build_request_async(
178
+ method="POST",
179
+ path="/v0/vaults/deposit",
180
+ base_url=base_url,
181
+ url_variables=url_variables,
182
+ request=request,
183
+ request_body_required=True,
184
+ request_has_path_params=False,
185
+ request_has_query_params=True,
186
+ user_agent_header="user-agent",
187
+ accept_header_value="application/json",
188
+ http_headers=http_headers,
189
+ security=self.sdk_configuration.security,
190
+ get_serialized_body=lambda: utils.serialize_request_body(
191
+ request, False, False, "json", models.VaultDepositRequest
192
+ ),
193
+ timeout_ms=timeout_ms,
194
+ )
195
+
196
+ if retries == UNSET:
197
+ if self.sdk_configuration.retry_config is not UNSET:
198
+ retries = self.sdk_configuration.retry_config
199
+
200
+ retry_config = None
201
+ if isinstance(retries, utils.RetryConfig):
202
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
203
+
204
+ http_res = await self.do_request_async(
205
+ hook_ctx=HookContext(
206
+ config=self.sdk_configuration,
207
+ base_url=base_url or "",
208
+ operation_id="vaults_deposit",
209
+ oauth2_scopes=[],
210
+ security_source=self.sdk_configuration.security,
211
+ ),
212
+ request=req,
213
+ error_status_codes=["422", "4XX", "5XX"],
214
+ retry_config=retry_config,
215
+ )
216
+
217
+ response_data: Any = None
218
+ if utils.match_response(http_res, "200", "application/json"):
219
+ return utils.unmarshal_json(http_res.text, models.TxResponse)
220
+ if utils.match_response(http_res, "422", "application/json"):
221
+ response_data = utils.unmarshal_json(
222
+ http_res.text, errors.HTTPValidationErrorData
223
+ )
224
+ raise errors.HTTPValidationError(data=response_data)
225
+ if utils.match_response(http_res, "4XX", "*"):
226
+ http_res_text = await utils.stream_to_text_async(http_res)
227
+ raise errors.APIError(
228
+ "API error occurred", http_res.status_code, http_res_text, http_res
229
+ )
230
+ if utils.match_response(http_res, "5XX", "*"):
231
+ http_res_text = await utils.stream_to_text_async(http_res)
232
+ raise errors.APIError(
233
+ "API error occurred", http_res.status_code, http_res_text, http_res
234
+ )
235
+
236
+ content_type = http_res.headers.get("Content-Type")
237
+ http_res_text = await utils.stream_to_text_async(http_res)
238
+ raise errors.APIError(
239
+ f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
240
+ http_res.status_code,
241
+ http_res_text,
242
+ http_res,
243
+ )
244
+
245
+ def withdraw(
246
+ self,
247
+ *,
248
+ vault_address: str,
249
+ amount: Any,
250
+ chain: models.Chain,
251
+ sender: str,
252
+ receiver: OptionalNullable[str] = UNSET,
253
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
254
+ server_url: Optional[str] = None,
255
+ timeout_ms: Optional[int] = None,
256
+ http_headers: Optional[Mapping[str, str]] = None,
257
+ ) -> models.TxResponse:
258
+ r"""Withdraw from Vault
259
+
260
+ Withdraw deposited tokens from a Vault (ERC-4626 Standard).
261
+
262
+ The passive yield earned on token deposits is represented by the increased value of
263
+ the shares received upon depositing tokens. Trade in these shares for the tokens you
264
+ deposited plus any accrued yield.
265
+
266
+ :param vault_address: The vault address you are withdrawing from.
267
+ :param amount: The amount of tokens to withdraw from the vault. If set to 'ALL', your total deposited token amount will be withdrawn.
268
+ :param chain: The chain to use.
269
+ :param sender: The address of the transaction sender.
270
+ :param receiver: The address which will receive the tokens withdrawn. Defaults to the sender.
271
+ :param retries: Override the default retry configuration for this method
272
+ :param server_url: Override the default server URL for this method
273
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
274
+ :param http_headers: Additional headers to set or replace on requests.
275
+ """
276
+ base_url = None
277
+ url_variables = None
278
+ if timeout_ms is None:
279
+ timeout_ms = self.sdk_configuration.timeout_ms
280
+
281
+ if server_url is not None:
282
+ base_url = server_url
283
+ else:
284
+ base_url = self._get_url(base_url, url_variables)
285
+
286
+ request = models.VaultWithdrawRequest(
287
+ vault_address=vault_address,
288
+ amount=amount,
289
+ receiver=receiver,
290
+ chain=chain,
291
+ sender=sender,
292
+ )
293
+
294
+ req = self._build_request(
295
+ method="POST",
296
+ path="/v0/vaults/withdraw",
297
+ base_url=base_url,
298
+ url_variables=url_variables,
299
+ request=request,
300
+ request_body_required=True,
301
+ request_has_path_params=False,
302
+ request_has_query_params=True,
303
+ user_agent_header="user-agent",
304
+ accept_header_value="application/json",
305
+ http_headers=http_headers,
306
+ security=self.sdk_configuration.security,
307
+ get_serialized_body=lambda: utils.serialize_request_body(
308
+ request, False, False, "json", models.VaultWithdrawRequest
309
+ ),
310
+ timeout_ms=timeout_ms,
311
+ )
312
+
313
+ if retries == UNSET:
314
+ if self.sdk_configuration.retry_config is not UNSET:
315
+ retries = self.sdk_configuration.retry_config
316
+
317
+ retry_config = None
318
+ if isinstance(retries, utils.RetryConfig):
319
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
320
+
321
+ http_res = self.do_request(
322
+ hook_ctx=HookContext(
323
+ config=self.sdk_configuration,
324
+ base_url=base_url or "",
325
+ operation_id="vaults_withdraw",
326
+ oauth2_scopes=[],
327
+ security_source=self.sdk_configuration.security,
328
+ ),
329
+ request=req,
330
+ error_status_codes=["422", "4XX", "5XX"],
331
+ retry_config=retry_config,
332
+ )
333
+
334
+ response_data: Any = None
335
+ if utils.match_response(http_res, "200", "application/json"):
336
+ return utils.unmarshal_json(http_res.text, models.TxResponse)
337
+ if utils.match_response(http_res, "422", "application/json"):
338
+ response_data = utils.unmarshal_json(
339
+ http_res.text, errors.HTTPValidationErrorData
340
+ )
341
+ raise errors.HTTPValidationError(data=response_data)
342
+ if utils.match_response(http_res, "4XX", "*"):
343
+ http_res_text = utils.stream_to_text(http_res)
344
+ raise errors.APIError(
345
+ "API error occurred", http_res.status_code, http_res_text, http_res
346
+ )
347
+ if utils.match_response(http_res, "5XX", "*"):
348
+ http_res_text = utils.stream_to_text(http_res)
349
+ raise errors.APIError(
350
+ "API error occurred", http_res.status_code, http_res_text, http_res
351
+ )
352
+
353
+ content_type = http_res.headers.get("Content-Type")
354
+ http_res_text = utils.stream_to_text(http_res)
355
+ raise errors.APIError(
356
+ f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
357
+ http_res.status_code,
358
+ http_res_text,
359
+ http_res,
360
+ )
361
+
362
+ async def withdraw_async(
363
+ self,
364
+ *,
365
+ vault_address: str,
366
+ amount: Any,
367
+ chain: models.Chain,
368
+ sender: str,
369
+ receiver: OptionalNullable[str] = UNSET,
370
+ retries: OptionalNullable[utils.RetryConfig] = UNSET,
371
+ server_url: Optional[str] = None,
372
+ timeout_ms: Optional[int] = None,
373
+ http_headers: Optional[Mapping[str, str]] = None,
374
+ ) -> models.TxResponse:
375
+ r"""Withdraw from Vault
376
+
377
+ Withdraw deposited tokens from a Vault (ERC-4626 Standard).
378
+
379
+ The passive yield earned on token deposits is represented by the increased value of
380
+ the shares received upon depositing tokens. Trade in these shares for the tokens you
381
+ deposited plus any accrued yield.
382
+
383
+ :param vault_address: The vault address you are withdrawing from.
384
+ :param amount: The amount of tokens to withdraw from the vault. If set to 'ALL', your total deposited token amount will be withdrawn.
385
+ :param chain: The chain to use.
386
+ :param sender: The address of the transaction sender.
387
+ :param receiver: The address which will receive the tokens withdrawn. Defaults to the sender.
388
+ :param retries: Override the default retry configuration for this method
389
+ :param server_url: Override the default server URL for this method
390
+ :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
391
+ :param http_headers: Additional headers to set or replace on requests.
392
+ """
393
+ base_url = None
394
+ url_variables = None
395
+ if timeout_ms is None:
396
+ timeout_ms = self.sdk_configuration.timeout_ms
397
+
398
+ if server_url is not None:
399
+ base_url = server_url
400
+ else:
401
+ base_url = self._get_url(base_url, url_variables)
402
+
403
+ request = models.VaultWithdrawRequest(
404
+ vault_address=vault_address,
405
+ amount=amount,
406
+ receiver=receiver,
407
+ chain=chain,
408
+ sender=sender,
409
+ )
410
+
411
+ req = self._build_request_async(
412
+ method="POST",
413
+ path="/v0/vaults/withdraw",
414
+ base_url=base_url,
415
+ url_variables=url_variables,
416
+ request=request,
417
+ request_body_required=True,
418
+ request_has_path_params=False,
419
+ request_has_query_params=True,
420
+ user_agent_header="user-agent",
421
+ accept_header_value="application/json",
422
+ http_headers=http_headers,
423
+ security=self.sdk_configuration.security,
424
+ get_serialized_body=lambda: utils.serialize_request_body(
425
+ request, False, False, "json", models.VaultWithdrawRequest
426
+ ),
427
+ timeout_ms=timeout_ms,
428
+ )
429
+
430
+ if retries == UNSET:
431
+ if self.sdk_configuration.retry_config is not UNSET:
432
+ retries = self.sdk_configuration.retry_config
433
+
434
+ retry_config = None
435
+ if isinstance(retries, utils.RetryConfig):
436
+ retry_config = (retries, ["429", "500", "502", "503", "504"])
437
+
438
+ http_res = await self.do_request_async(
439
+ hook_ctx=HookContext(
440
+ config=self.sdk_configuration,
441
+ base_url=base_url or "",
442
+ operation_id="vaults_withdraw",
443
+ oauth2_scopes=[],
444
+ security_source=self.sdk_configuration.security,
445
+ ),
446
+ request=req,
447
+ error_status_codes=["422", "4XX", "5XX"],
448
+ retry_config=retry_config,
449
+ )
450
+
451
+ response_data: Any = None
452
+ if utils.match_response(http_res, "200", "application/json"):
453
+ return utils.unmarshal_json(http_res.text, models.TxResponse)
454
+ if utils.match_response(http_res, "422", "application/json"):
455
+ response_data = utils.unmarshal_json(
456
+ http_res.text, errors.HTTPValidationErrorData
457
+ )
458
+ raise errors.HTTPValidationError(data=response_data)
459
+ if utils.match_response(http_res, "4XX", "*"):
460
+ http_res_text = await utils.stream_to_text_async(http_res)
461
+ raise errors.APIError(
462
+ "API error occurred", http_res.status_code, http_res_text, http_res
463
+ )
464
+ if utils.match_response(http_res, "5XX", "*"):
465
+ http_res_text = await utils.stream_to_text_async(http_res)
466
+ raise errors.APIError(
467
+ "API error occurred", http_res.status_code, http_res_text, http_res
468
+ )
469
+
470
+ content_type = http_res.headers.get("Content-Type")
471
+ http_res_text = await utils.stream_to_text_async(http_res)
472
+ raise errors.APIError(
473
+ f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
474
+ http_res.status_code,
475
+ http_res_text,
476
+ http_res,
477
+ )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: compass_api_sdk
3
- Version: 0.9.21
3
+ Version: 0.9.22
4
4
  Summary: Compass API SDK.
5
5
  Author: royalnine
6
6
  Requires-Python: >=3.9.2
@@ -227,7 +227,6 @@ with CompassAPI(
227
227
  * [market](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#market) - Get Market
228
228
  * [market_position](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#market_position) - Check Market Position
229
229
  * [user_position](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#user_position) - Check User Position
230
- * [allowance](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#allowance) - Set Allowance for Vault
231
230
  * [deposit](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#deposit) - Deposit to Vault
232
231
  * [withdraw](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#withdraw) - Withdraw from Vault
233
232
  * [supply_collateral](https://github.com/CompassLabs/mono/blob/master/docs/sdks/morpho/README.md#supply_collateral) - Supply Collateral to Market
@@ -298,6 +297,11 @@ with CompassAPI(
298
297
  * [unwrap_weth](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#unwrap_weth) - Unwrap WETH
299
298
  * [allowance_set](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#allowance_set) - Set Allowance
300
299
 
300
+ ### [vaults_erc_4626](https://github.com/CompassLabs/mono/blob/master/docs/sdks/vaultserc4626/README.md)
301
+
302
+ * [deposit](https://github.com/CompassLabs/mono/blob/master/docs/sdks/vaultserc4626/README.md#deposit) - Deposit to Vault
303
+ * [withdraw](https://github.com/CompassLabs/mono/blob/master/docs/sdks/vaultserc4626/README.md#withdraw) - Withdraw from Vault
304
+
301
305
  </details>
302
306
  <!-- End Available Resources and Operations [operations] -->
303
307
 
@@ -2,7 +2,7 @@ compass_api_sdk/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,4
2
2
  compass_api_sdk/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,118
3
3
  compass_api_sdk/_hooks/sdkhooks.py,sha256=eVxHB2Q_JG6zZx5xn74i208ij-fpTHqq2jod6fbghRQ,2503
4
4
  compass_api_sdk/_hooks/types.py,sha256=4qXm6dEntJOC2QeOdTklcc53oFzTU3HBb1xGdZ-kBXY,3059
5
- compass_api_sdk/_version.py,sha256=eIbMzwTOIxkjZGqXoS_J77Z70WXOKFpBHpuK3-5fyOU,474
5
+ compass_api_sdk/_version.py,sha256=-5CUntWolWarQOJOYYREyqIaGpEdnH6Cv1dof455xO8,474
6
6
  compass_api_sdk/aave_v3.py,sha256=HqG_1Sb_Du30Kjrml1L--nI85cGYF27i5At-5YFMOyM,126400
7
7
  compass_api_sdk/aerodrome_slipstream.py,sha256=xGt8wnAItW8w6kgnqfwDrsX24qw8TIhsD8fRhxta7Bs,83443
8
8
  compass_api_sdk/basesdk.py,sha256=xDxC-X-LHCwtVy8SPM6nckSu1NmF8uKhHUUQd3X-syo,11810
@@ -10,7 +10,7 @@ compass_api_sdk/errors/__init__.py,sha256=V3vSSmUvxXtgwHL60IBI0MzLWll8h373LvT3el
10
10
  compass_api_sdk/errors/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
11
11
  compass_api_sdk/errors/httpvalidationerror.py,sha256=KBdpK3fYQoeMB-3m9dLKiMYimFN7B9VLma6YqMKX5k0,671
12
12
  compass_api_sdk/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
13
- compass_api_sdk/models/__init__.py,sha256=zBnSTY15SVlPwGXtnyG4HdtzKZiPIU6QExxYCuow4Uc,118415
13
+ compass_api_sdk/models/__init__.py,sha256=RzfA7qGaQPtpQ1xa-Qe0DqblMvWe_vFjQPSnfq3RZKg,118265
14
14
  compass_api_sdk/models/aave_avg_rateop.py,sha256=Qn7IkBwZv5zY_L15V_LONkANzQPTbtmK2Wwhc2iqYz8,3718
15
15
  compass_api_sdk/models/aave_historical_transactionsop.py,sha256=7Ghmin3AWvh2knbC-M0CZ0chL8q3fJU-GeDgXeoY0s4,1789
16
16
  compass_api_sdk/models/aave_liquidity_changeop.py,sha256=o9G4dD2foyhbunziTv_177Qr2AK37KTIQsQfvPxo5Fs,2785
@@ -79,14 +79,12 @@ compass_api_sdk/models/details.py,sha256=3nlDe5Po20HFWWc31iX-6wOfMdveE76JpNf-Kp9
79
79
  compass_api_sdk/models/ensnameinforesponse.py,sha256=p7y3TYD3lApa8hzHTCKDUEmSpmH2QmJAHG7wzef9rLk,626
80
80
  compass_api_sdk/models/erc20data.py,sha256=u-Ln_Wj4mpuW5sk1Ull0ir8dJwYRU4Ij7C75R51pZmY,357
81
81
  compass_api_sdk/models/feeenum.py,sha256=TIYaeNWCG9KFGV7CZeXHvZ_4tmlqdlk-Pcg04pc7ynM,363
82
- compass_api_sdk/models/generic_allowanceop.py,sha256=ME5AGBxHfq6l__4Ubn4KCeVLpYy7zpIiWiYg6KmhF20,2999
82
+ compass_api_sdk/models/generic_allowanceop.py,sha256=EVcwAOVm-VhTHxJYHlgmQkGrsF30b_fEJh8VNI-boOw,3327
83
83
  compass_api_sdk/models/generic_ensop.py,sha256=xH9v260Dw_eF_IAlQqO7eqOKRDNDNV2519ze7VO31CM,1104
84
84
  compass_api_sdk/models/generic_portfolioop.py,sha256=jtsFkKQCYx2cbhK1LKtMB5RjVAAeRhVF2K5CpgoM74U,1175
85
85
  compass_api_sdk/models/generic_supported_tokensop.py,sha256=5ZNzAxmcnaxpGqAn2AoIqdGx0LDF4EnU102mVOXxlO4,884
86
86
  compass_api_sdk/models/generic_visualize_portfolioop.py,sha256=FGVWUHvzG8GODN2OFE6yP7ppRLa4H7hclfz00l72sKE,1229
87
87
  compass_api_sdk/models/image.py,sha256=-qB_S9WX6YZYVKVqTdnB79f57zjrO2G-hYwBxp-KJDQ,355
88
- compass_api_sdk/models/increaseallowanceparams.py,sha256=U_kSWJZi4th3MGC-q2q0p6qbCqsuHjjzKjMX7aV8rbY,3098
89
- compass_api_sdk/models/increaseallowancerequest.py,sha256=6HIxKQJSCQa0vIP0GIclxIsAnvdHjbxoH3O6WYeYmZk,3360
90
88
  compass_api_sdk/models/interestratemode.py,sha256=OmOKBSJD0y9O9LuA0rajVkvxiEuU-xiQAuoiHYFmp5s,341
91
89
  compass_api_sdk/models/liquidationcall.py,sha256=-HEwFMuiD2p8x04VQHlnYqlOdvhr0jXrZ6ksmxlffUw,2019
92
90
  compass_api_sdk/models/liquidity.py,sha256=WOPaK4SXj2C5TBLZlfoaQbcnzhcmFCEUFz59mOw1KeM,328
@@ -115,8 +113,6 @@ compass_api_sdk/models/morphogetvaultsresponse.py,sha256=b5LuGh9anPCWX8GJb6N0SQG
115
113
  compass_api_sdk/models/morphomarket.py,sha256=APfUKsnjZ6x8KvNY8P1PJ7h-AKgFWTMBeYeGAM58Yac,2850
116
114
  compass_api_sdk/models/morphorepayparams.py,sha256=n5VPRyJVcckqXrM92NhfccZuHltoj3xCMpJ7hLzjBzM,3053
117
115
  compass_api_sdk/models/morphorepayrequest.py,sha256=Zd6FXTKAoM-6eILpEKECYbVDdovfchqXBSnuc-UcvWI,3401
118
- compass_api_sdk/models/morphosetvaultallowanceparams.py,sha256=L7z9eTPqeUc4b4lbc1D0ZMEXzV1GjgiLtrzsWfxMkwk,1605
119
- compass_api_sdk/models/morphosetvaultallowancerequest.py,sha256=qyOg86T7Xa3_CaFeVhHHHuSHGfDsSzOm-hHe0G-Z2Y0,1995
120
116
  compass_api_sdk/models/morphosupplycollateralparams.py,sha256=rR0OQ2BHsadGVFK5lYCLTLn-jzwQvjaPGog9uGu9pa8,3421
121
117
  compass_api_sdk/models/morphosupplycollateralrequest.py,sha256=n6pXX1ZBmyxKcn22q3Uw52TBeFqFNVbiF6aQXFDYXrg,3808
122
118
  compass_api_sdk/models/morphovault.py,sha256=OGcgGuVw8YFbakjyXu_nly9MoL9C0OwYg0a1LXnEQrM,1609
@@ -158,6 +154,8 @@ compass_api_sdk/models/redeemunderlying.py,sha256=YK6I29RAeIgE4gfxyjgoUiktxqFAnJ
158
154
  compass_api_sdk/models/repay.py,sha256=dCDDG9BvJOnT-OgEs013t7l5xG0r-5M_BUxal4cfU0I,1482
159
155
  compass_api_sdk/models/reserve.py,sha256=AScfYjYx6PYkgxF2zTr-BrzsGx8ZQl3SV27bZ_xGNro,2217
160
156
  compass_api_sdk/models/security.py,sha256=BasQuckaYjsfuGyucbeYAKSDcEuhcvoNT8ZkUsi48Sk,635
157
+ compass_api_sdk/models/setallowanceparams.py,sha256=O_yMvJlMbbuWfYGMeDKwHVGbhHvKeT7tr1uT_NoPPGw,3365
158
+ compass_api_sdk/models/setallowancerequest.py,sha256=e5Ped7YbICPdl-A4s3S_E66Z0NhioY4KxbAcTUNbsNc,3625
161
159
  compass_api_sdk/models/signedauthorization.py,sha256=UT7Zozfqm8DQ66RAdYPm44vEhBJUGf4SZtdvDzz1nc0,1459
162
160
  compass_api_sdk/models/sky_positionop.py,sha256=q1hxWCM3WfLfzX4C5o9ur2KchlHC0ZJgO9iDok2Tz3U,1126
163
161
  compass_api_sdk/models/skybuyparams.py,sha256=LazlLKy3a5XoWT6vDVBLJwfv6bagyh9e3y7ffv6ApdQ,1652
@@ -209,20 +207,22 @@ compass_api_sdk/models/unsignedtransaction.py,sha256=DHPEOKI-xgmu7tLiVxsv4JJp93k
209
207
  compass_api_sdk/models/unwrapwethparams.py,sha256=ChsTqUYi88jHqkeRVIskzfBHAPyI_J2fBJqR81Qc6dg,1308
210
208
  compass_api_sdk/models/unwrapwethrequest.py,sha256=pt-eqvKWN6qir5bN6d9EWBZIDrXs_51z7X8ODoFzLWU,1561
211
209
  compass_api_sdk/models/usageascollateral.py,sha256=hHBgh83BO9WA6u-9xzTvBlPOLoiYV1N21G6vDeo_b30,1561
212
- compass_api_sdk/models/useroperation.py,sha256=MGV-vG35DohYWfTieNxkQekt7RlkonkfVoP1nZr0t6U,8963
210
+ compass_api_sdk/models/useroperation.py,sha256=19UP1w5iMonN6E1xgTLuEs6pd8GQD-3VqNsFfAH9My0,8661
213
211
  compass_api_sdk/models/useroperationresponse.py,sha256=z0o0N-EC30XlrkFiR3vLO_EXbpXojUCJlWQxuOir5VM,671
214
212
  compass_api_sdk/models/userstate.py,sha256=xK6ZrhqogPE32JH7J4i1_oK7KxYkmebJU-jfcBp8FOo,1003
215
213
  compass_api_sdk/models/validationerror.py,sha256=01WnpU7Tgin0B_poO97_hl6b5CNJ_9VGzpcmoeJs4GU,532
216
214
  compass_api_sdk/models/vault.py,sha256=ttepBiKO4o7-C97oALWOYAcN7ALDXmBFBcbQV_nfwO4,1849
215
+ compass_api_sdk/models/vaultdepositrequest.py,sha256=GXYfXNlMmExOxjgabMDFjRS4kjHovuofGNz9DHO1TDQ,3136
217
216
  compass_api_sdk/models/vaultposition.py,sha256=o_Nyjc7GB5lLi11yCO6cp8nZpIvJcZzGB1iL_oCJUA0,801
217
+ compass_api_sdk/models/vaultwithdrawrequest.py,sha256=w4STTo4hqAZ6OtCgflHlaKquFCDWyTEa399tURyFgTo,2758
218
218
  compass_api_sdk/models/weeklyapys.py,sha256=AaGjDD4NeGsZQBwdRW1G09Pmx17pLPe2oUA9M21jQgY,675
219
219
  compass_api_sdk/models/wrapethparams.py,sha256=nw1fZiDrj5wZnI25Vmg0DcNI01k-uhot68lG1_H7xrY,1223
220
220
  compass_api_sdk/models/wrapethrequest.py,sha256=pjo0BZtzdOZKuwgnc05LsCWO1A6ZAGLwFixLuXQNKDg,1476
221
221
  compass_api_sdk/models/yieldrange.py,sha256=WEpZR24JddnCS1_13y2P1CdD0lBi6dPktysCNu3TUic,324
222
- compass_api_sdk/morpho.py,sha256=JtcZoP-M_V0fw2zCCbxejmPrgrXZOiLDZILW1W0J2oQ,134352
222
+ compass_api_sdk/morpho.py,sha256=VicnfLvVR2L8tMh3NIE4c1ozN1YtbJ1TaD-1CN9l04s,124858
223
223
  compass_api_sdk/pendle.py,sha256=CJSKzhNdsItMkYdzz9c2HLg455BYlePvk-TWC90qvxc,99652
224
224
  compass_api_sdk/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
225
- compass_api_sdk/sdk.py,sha256=hFQWDilcT8GjlX-J_CFUNDGDED8j0qPYId4b2FJyxVY,7685
225
+ compass_api_sdk/sdk.py,sha256=7MlpimDy9F7Yalkcn_PyjViVn8AKvu1gQLAQU0UROZY,7867
226
226
  compass_api_sdk/sdkconfiguration.py,sha256=5nec4ViMLCsNWBd3DyEv8zWqU5Z77YZfzwX69jkdSnM,1607
227
227
  compass_api_sdk/sky.py,sha256=oZcj2VX26yc-nMTo5WIktz97mAjZT1J0K2IHvi_m3oM,43965
228
228
  compass_api_sdk/smart_account.py,sha256=-uMbE_v4WvnqGGj2ZKsJrBBByV904qm37l5spUa2OxE,9370
@@ -231,7 +231,7 @@ compass_api_sdk/transaction_bundler.py,sha256=e5pDqD6ZIw9wmxilgvqt8--evS7o9bCx1I
231
231
  compass_api_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
232
232
  compass_api_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
233
233
  compass_api_sdk/uniswap_v3.py,sha256=qRCWOkXbpHKWMHpgvXlioflGog4L5TIUWY5F456bpi4,109087
234
- compass_api_sdk/universal.py,sha256=tPToudEvamNB9zjNP_JVrpJIZ8_tq2-J29mLnecxWe8,70923
234
+ compass_api_sdk/universal.py,sha256=wsCKlFtrA0UNEe8ATv5cX1icLV6XmfwVpIbYNEqNsIs,71015
235
235
  compass_api_sdk/utils/__init__.py,sha256=811KKdkxMaWDfz2lMohUWqrR4JnIWxqeNQ1lRGQU4DM,5341
236
236
  compass_api_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
237
237
  compass_api_sdk/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
@@ -248,6 +248,7 @@ compass_api_sdk/utils/security.py,sha256=ktep3HKwbFs-MLxUYTM8Jd4v-ZBum5_Z0u1PFId
248
248
  compass_api_sdk/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
249
249
  compass_api_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
250
250
  compass_api_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
251
- compass_api_sdk-0.9.21.dist-info/METADATA,sha256=6LxdDwVWmmXzgmtqKvTo3pqA247-vfZG3pcXKEDz__4,26680
252
- compass_api_sdk-0.9.21.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
253
- compass_api_sdk-0.9.21.dist-info/RECORD,,
251
+ compass_api_sdk/vaults_erc_4626_.py,sha256=TEAtjcyVn6IWC4rs89VLLp4L99K7aCIm5irNH3y-8So,19487
252
+ compass_api_sdk-0.9.22.dist-info/METADATA,sha256=UC1omyAHF0AYd6UqEf1fDUw_t08UhAT_H-UrBieT5Yg,26910
253
+ compass_api_sdk-0.9.22.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
254
+ compass_api_sdk-0.9.22.dist-info/RECORD,,