compass_api_sdk 0.9.49__py3-none-any.whl → 0.9.50__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.
- compass_api_sdk/_version.py +2 -2
- compass_api_sdk/models/__init__.py +16 -0
- compass_api_sdk/models/generic_supported_chainsop.py +57 -0
- compass_api_sdk/models/protocol.py +13 -0
- compass_api_sdk/models/supportedchaininfo.py +19 -0
- compass_api_sdk/universal.py +174 -0
- {compass_api_sdk-0.9.49.dist-info → compass_api_sdk-0.9.50.dist-info}/METADATA +2 -1
- {compass_api_sdk-0.9.49.dist-info → compass_api_sdk-0.9.50.dist-info}/RECORD +9 -6
- {compass_api_sdk-0.9.49.dist-info → compass_api_sdk-0.9.50.dist-info}/WHEEL +0 -0
compass_api_sdk/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "compass_api_sdk"
|
|
6
|
-
__version__: str = "0.9.
|
|
6
|
+
__version__: str = "0.9.50"
|
|
7
7
|
__openapi_doc_version__: str = "0.0.1"
|
|
8
8
|
__gen_version__: str = "2.657.1"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.9.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.9.50 2.657.1 0.0.1 compass_api_sdk"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
|
@@ -375,6 +375,10 @@ if TYPE_CHECKING:
|
|
|
375
375
|
GenericPortfolioRequest,
|
|
376
376
|
GenericPortfolioRequestTypedDict,
|
|
377
377
|
)
|
|
378
|
+
from .generic_supported_chainsop import (
|
|
379
|
+
GenericSupportedChainsRequest,
|
|
380
|
+
GenericSupportedChainsRequestTypedDict,
|
|
381
|
+
)
|
|
378
382
|
from .generic_supported_tokensop import (
|
|
379
383
|
GenericSupportedTokensChain,
|
|
380
384
|
GenericSupportedTokensRequest,
|
|
@@ -668,6 +672,7 @@ if TYPE_CHECKING:
|
|
|
668
672
|
)
|
|
669
673
|
from .portfolio import Portfolio, PortfolioTypedDict
|
|
670
674
|
from .position import Position, PositionTypedDict
|
|
675
|
+
from .protocol import Protocol
|
|
671
676
|
from .redeemunderlying import RedeemUnderlying, RedeemUnderlyingTypedDict
|
|
672
677
|
from .repay import Repay, RepayTypedDict
|
|
673
678
|
from .reserve import Reserve, ReserveTypedDict
|
|
@@ -750,6 +755,7 @@ if TYPE_CHECKING:
|
|
|
750
755
|
from .skywithdrawparams import SkyWithdrawParams, SkyWithdrawParamsTypedDict
|
|
751
756
|
from .skywithdrawrequest import SkyWithdrawRequest, SkyWithdrawRequestTypedDict
|
|
752
757
|
from .supply import Supply, SupplyTypedDict
|
|
758
|
+
from .supportedchaininfo import SupportedChainInfo, SupportedChainInfoTypedDict
|
|
753
759
|
from .swapborrowrate import SwapBorrowRate, SwapBorrowRateTypedDict
|
|
754
760
|
from .syposition import SyPosition, SyPositionTypedDict
|
|
755
761
|
from .token_addressop import (
|
|
@@ -1274,6 +1280,8 @@ __all__ = [
|
|
|
1274
1280
|
"GenericPortfolioChain",
|
|
1275
1281
|
"GenericPortfolioRequest",
|
|
1276
1282
|
"GenericPortfolioRequestTypedDict",
|
|
1283
|
+
"GenericSupportedChainsRequest",
|
|
1284
|
+
"GenericSupportedChainsRequestTypedDict",
|
|
1277
1285
|
"GenericSupportedTokensChain",
|
|
1278
1286
|
"GenericSupportedTokensRequest",
|
|
1279
1287
|
"GenericSupportedTokensRequestTypedDict",
|
|
@@ -1487,6 +1495,7 @@ __all__ = [
|
|
|
1487
1495
|
"PortfolioTypedDict",
|
|
1488
1496
|
"Position",
|
|
1489
1497
|
"PositionTypedDict",
|
|
1498
|
+
"Protocol",
|
|
1490
1499
|
"R",
|
|
1491
1500
|
"RTypedDict",
|
|
1492
1501
|
"RedeemUnderlying",
|
|
@@ -1557,6 +1566,8 @@ __all__ = [
|
|
|
1557
1566
|
"SkyWithdrawRequestTypedDict",
|
|
1558
1567
|
"Supply",
|
|
1559
1568
|
"SupplyTypedDict",
|
|
1569
|
+
"SupportedChainInfo",
|
|
1570
|
+
"SupportedChainInfoTypedDict",
|
|
1560
1571
|
"SwapBorrowRate",
|
|
1561
1572
|
"SwapBorrowRateTypedDict",
|
|
1562
1573
|
"SyPosition",
|
|
@@ -2022,6 +2033,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2022
2033
|
"GenericPortfolioChain": ".generic_portfolioop",
|
|
2023
2034
|
"GenericPortfolioRequest": ".generic_portfolioop",
|
|
2024
2035
|
"GenericPortfolioRequestTypedDict": ".generic_portfolioop",
|
|
2036
|
+
"GenericSupportedChainsRequest": ".generic_supported_chainsop",
|
|
2037
|
+
"GenericSupportedChainsRequestTypedDict": ".generic_supported_chainsop",
|
|
2025
2038
|
"GenericSupportedTokensChain": ".generic_supported_tokensop",
|
|
2026
2039
|
"GenericSupportedTokensRequest": ".generic_supported_tokensop",
|
|
2027
2040
|
"GenericSupportedTokensRequestTypedDict": ".generic_supported_tokensop",
|
|
@@ -2227,6 +2240,7 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2227
2240
|
"PortfolioTypedDict": ".portfolio",
|
|
2228
2241
|
"Position": ".position",
|
|
2229
2242
|
"PositionTypedDict": ".position",
|
|
2243
|
+
"Protocol": ".protocol",
|
|
2230
2244
|
"RedeemUnderlying": ".redeemunderlying",
|
|
2231
2245
|
"RedeemUnderlyingTypedDict": ".redeemunderlying",
|
|
2232
2246
|
"Repay": ".repay",
|
|
@@ -2297,6 +2311,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2297
2311
|
"SkyWithdrawRequestTypedDict": ".skywithdrawrequest",
|
|
2298
2312
|
"Supply": ".supply",
|
|
2299
2313
|
"SupplyTypedDict": ".supply",
|
|
2314
|
+
"SupportedChainInfo": ".supportedchaininfo",
|
|
2315
|
+
"SupportedChainInfoTypedDict": ".supportedchaininfo",
|
|
2300
2316
|
"SwapBorrowRate": ".swapborrowrate",
|
|
2301
2317
|
"SwapBorrowRateTypedDict": ".swapborrowrate",
|
|
2302
2318
|
"SyPosition": ".syposition",
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .protocol import Protocol
|
|
5
|
+
from compass_api_sdk.types import (
|
|
6
|
+
BaseModel,
|
|
7
|
+
Nullable,
|
|
8
|
+
OptionalNullable,
|
|
9
|
+
UNSET,
|
|
10
|
+
UNSET_SENTINEL,
|
|
11
|
+
)
|
|
12
|
+
from compass_api_sdk.utils import FieldMetadata, QueryParamMetadata
|
|
13
|
+
from pydantic import model_serializer
|
|
14
|
+
from typing_extensions import Annotated, NotRequired, TypedDict
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
class GenericSupportedChainsRequestTypedDict(TypedDict):
|
|
18
|
+
protocol: NotRequired[Nullable[Protocol]]
|
|
19
|
+
r"""The protocol to get the supported chains for."""
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class GenericSupportedChainsRequest(BaseModel):
|
|
23
|
+
protocol: Annotated[
|
|
24
|
+
OptionalNullable[Protocol],
|
|
25
|
+
FieldMetadata(query=QueryParamMetadata(style="form", explode=True)),
|
|
26
|
+
] = UNSET
|
|
27
|
+
r"""The protocol to get the supported chains for."""
|
|
28
|
+
|
|
29
|
+
@model_serializer(mode="wrap")
|
|
30
|
+
def serialize_model(self, handler):
|
|
31
|
+
optional_fields = ["protocol"]
|
|
32
|
+
nullable_fields = ["protocol"]
|
|
33
|
+
null_default_fields = []
|
|
34
|
+
|
|
35
|
+
serialized = handler(self)
|
|
36
|
+
|
|
37
|
+
m = {}
|
|
38
|
+
|
|
39
|
+
for n, f in type(self).model_fields.items():
|
|
40
|
+
k = f.alias or n
|
|
41
|
+
val = serialized.get(k)
|
|
42
|
+
serialized.pop(k, None)
|
|
43
|
+
|
|
44
|
+
optional_nullable = k in optional_fields and k in nullable_fields
|
|
45
|
+
is_set = (
|
|
46
|
+
self.__pydantic_fields_set__.intersection({n})
|
|
47
|
+
or k in null_default_fields
|
|
48
|
+
) # pylint: disable=no-member
|
|
49
|
+
|
|
50
|
+
if val is not None and val != UNSET_SENTINEL:
|
|
51
|
+
m[k] = val
|
|
52
|
+
elif val != UNSET_SENTINEL and (
|
|
53
|
+
not k in optional_fields or (optional_nullable and is_set)
|
|
54
|
+
):
|
|
55
|
+
m[k] = val
|
|
56
|
+
|
|
57
|
+
return m
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from enum import Enum
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class Protocol(str, Enum):
|
|
8
|
+
AAVE = "aave"
|
|
9
|
+
AERODROME = "aerodrome"
|
|
10
|
+
MORPHO = "morpho"
|
|
11
|
+
SKY = "sky"
|
|
12
|
+
UNISWAP = "uniswap"
|
|
13
|
+
PENDLE = "pendle"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
from .chain import Chain
|
|
5
|
+
from compass_api_sdk.types import BaseModel
|
|
6
|
+
from typing import List
|
|
7
|
+
from typing_extensions import TypedDict
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
class SupportedChainInfoTypedDict(TypedDict):
|
|
11
|
+
r"""Response model for a chain."""
|
|
12
|
+
|
|
13
|
+
chains: List[Chain]
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
class SupportedChainInfo(BaseModel):
|
|
17
|
+
r"""Response model for a chain."""
|
|
18
|
+
|
|
19
|
+
chains: List[Chain]
|
compass_api_sdk/universal.py
CHANGED
|
@@ -557,6 +557,180 @@ class Universal(BaseSDK):
|
|
|
557
557
|
|
|
558
558
|
raise errors.APIError("Unexpected response received", http_res)
|
|
559
559
|
|
|
560
|
+
def supported_chains(
|
|
561
|
+
self,
|
|
562
|
+
*,
|
|
563
|
+
protocol: OptionalNullable[models.Protocol] = UNSET,
|
|
564
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
565
|
+
server_url: Optional[str] = None,
|
|
566
|
+
timeout_ms: Optional[int] = None,
|
|
567
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
568
|
+
) -> models.SupportedChainInfo:
|
|
569
|
+
r"""List Supported Chains
|
|
570
|
+
|
|
571
|
+
Get the list of supported chains by the Compass API.
|
|
572
|
+
|
|
573
|
+
:param protocol: The protocol to get the supported chains for.
|
|
574
|
+
:param retries: Override the default retry configuration for this method
|
|
575
|
+
:param server_url: Override the default server URL for this method
|
|
576
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
577
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
578
|
+
"""
|
|
579
|
+
base_url = None
|
|
580
|
+
url_variables = None
|
|
581
|
+
if timeout_ms is None:
|
|
582
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
583
|
+
|
|
584
|
+
if server_url is not None:
|
|
585
|
+
base_url = server_url
|
|
586
|
+
else:
|
|
587
|
+
base_url = self._get_url(base_url, url_variables)
|
|
588
|
+
|
|
589
|
+
request = models.GenericSupportedChainsRequest(
|
|
590
|
+
protocol=protocol,
|
|
591
|
+
)
|
|
592
|
+
|
|
593
|
+
req = self._build_request(
|
|
594
|
+
method="GET",
|
|
595
|
+
path="/v0/generic/supported_chains/get",
|
|
596
|
+
base_url=base_url,
|
|
597
|
+
url_variables=url_variables,
|
|
598
|
+
request=request,
|
|
599
|
+
request_body_required=False,
|
|
600
|
+
request_has_path_params=False,
|
|
601
|
+
request_has_query_params=True,
|
|
602
|
+
user_agent_header="user-agent",
|
|
603
|
+
accept_header_value="application/json",
|
|
604
|
+
http_headers=http_headers,
|
|
605
|
+
security=self.sdk_configuration.security,
|
|
606
|
+
timeout_ms=timeout_ms,
|
|
607
|
+
)
|
|
608
|
+
|
|
609
|
+
if retries == UNSET:
|
|
610
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
611
|
+
retries = self.sdk_configuration.retry_config
|
|
612
|
+
|
|
613
|
+
retry_config = None
|
|
614
|
+
if isinstance(retries, utils.RetryConfig):
|
|
615
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
616
|
+
|
|
617
|
+
http_res = self.do_request(
|
|
618
|
+
hook_ctx=HookContext(
|
|
619
|
+
config=self.sdk_configuration,
|
|
620
|
+
base_url=base_url or "",
|
|
621
|
+
operation_id="generic_supported_chains",
|
|
622
|
+
oauth2_scopes=[],
|
|
623
|
+
security_source=self.sdk_configuration.security,
|
|
624
|
+
),
|
|
625
|
+
request=req,
|
|
626
|
+
error_status_codes=["422", "4XX", "5XX"],
|
|
627
|
+
retry_config=retry_config,
|
|
628
|
+
)
|
|
629
|
+
|
|
630
|
+
response_data: Any = None
|
|
631
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
632
|
+
return unmarshal_json_response(models.SupportedChainInfo, http_res)
|
|
633
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
634
|
+
response_data = unmarshal_json_response(
|
|
635
|
+
errors.HTTPValidationErrorData, http_res
|
|
636
|
+
)
|
|
637
|
+
raise errors.HTTPValidationError(response_data, http_res)
|
|
638
|
+
if utils.match_response(http_res, "4XX", "*"):
|
|
639
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
640
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
641
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
642
|
+
http_res_text = utils.stream_to_text(http_res)
|
|
643
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
644
|
+
|
|
645
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
646
|
+
|
|
647
|
+
async def supported_chains_async(
|
|
648
|
+
self,
|
|
649
|
+
*,
|
|
650
|
+
protocol: OptionalNullable[models.Protocol] = UNSET,
|
|
651
|
+
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
652
|
+
server_url: Optional[str] = None,
|
|
653
|
+
timeout_ms: Optional[int] = None,
|
|
654
|
+
http_headers: Optional[Mapping[str, str]] = None,
|
|
655
|
+
) -> models.SupportedChainInfo:
|
|
656
|
+
r"""List Supported Chains
|
|
657
|
+
|
|
658
|
+
Get the list of supported chains by the Compass API.
|
|
659
|
+
|
|
660
|
+
:param protocol: The protocol to get the supported chains for.
|
|
661
|
+
:param retries: Override the default retry configuration for this method
|
|
662
|
+
:param server_url: Override the default server URL for this method
|
|
663
|
+
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
664
|
+
:param http_headers: Additional headers to set or replace on requests.
|
|
665
|
+
"""
|
|
666
|
+
base_url = None
|
|
667
|
+
url_variables = None
|
|
668
|
+
if timeout_ms is None:
|
|
669
|
+
timeout_ms = self.sdk_configuration.timeout_ms
|
|
670
|
+
|
|
671
|
+
if server_url is not None:
|
|
672
|
+
base_url = server_url
|
|
673
|
+
else:
|
|
674
|
+
base_url = self._get_url(base_url, url_variables)
|
|
675
|
+
|
|
676
|
+
request = models.GenericSupportedChainsRequest(
|
|
677
|
+
protocol=protocol,
|
|
678
|
+
)
|
|
679
|
+
|
|
680
|
+
req = self._build_request_async(
|
|
681
|
+
method="GET",
|
|
682
|
+
path="/v0/generic/supported_chains/get",
|
|
683
|
+
base_url=base_url,
|
|
684
|
+
url_variables=url_variables,
|
|
685
|
+
request=request,
|
|
686
|
+
request_body_required=False,
|
|
687
|
+
request_has_path_params=False,
|
|
688
|
+
request_has_query_params=True,
|
|
689
|
+
user_agent_header="user-agent",
|
|
690
|
+
accept_header_value="application/json",
|
|
691
|
+
http_headers=http_headers,
|
|
692
|
+
security=self.sdk_configuration.security,
|
|
693
|
+
timeout_ms=timeout_ms,
|
|
694
|
+
)
|
|
695
|
+
|
|
696
|
+
if retries == UNSET:
|
|
697
|
+
if self.sdk_configuration.retry_config is not UNSET:
|
|
698
|
+
retries = self.sdk_configuration.retry_config
|
|
699
|
+
|
|
700
|
+
retry_config = None
|
|
701
|
+
if isinstance(retries, utils.RetryConfig):
|
|
702
|
+
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
703
|
+
|
|
704
|
+
http_res = await self.do_request_async(
|
|
705
|
+
hook_ctx=HookContext(
|
|
706
|
+
config=self.sdk_configuration,
|
|
707
|
+
base_url=base_url or "",
|
|
708
|
+
operation_id="generic_supported_chains",
|
|
709
|
+
oauth2_scopes=[],
|
|
710
|
+
security_source=self.sdk_configuration.security,
|
|
711
|
+
),
|
|
712
|
+
request=req,
|
|
713
|
+
error_status_codes=["422", "4XX", "5XX"],
|
|
714
|
+
retry_config=retry_config,
|
|
715
|
+
)
|
|
716
|
+
|
|
717
|
+
response_data: Any = None
|
|
718
|
+
if utils.match_response(http_res, "200", "application/json"):
|
|
719
|
+
return unmarshal_json_response(models.SupportedChainInfo, http_res)
|
|
720
|
+
if utils.match_response(http_res, "422", "application/json"):
|
|
721
|
+
response_data = unmarshal_json_response(
|
|
722
|
+
errors.HTTPValidationErrorData, http_res
|
|
723
|
+
)
|
|
724
|
+
raise errors.HTTPValidationError(response_data, http_res)
|
|
725
|
+
if utils.match_response(http_res, "4XX", "*"):
|
|
726
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
727
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
728
|
+
if utils.match_response(http_res, "5XX", "*"):
|
|
729
|
+
http_res_text = await utils.stream_to_text_async(http_res)
|
|
730
|
+
raise errors.APIError("API error occurred", http_res, http_res_text)
|
|
731
|
+
|
|
732
|
+
raise errors.APIError("Unexpected response received", http_res)
|
|
733
|
+
|
|
560
734
|
def allowance(
|
|
561
735
|
self,
|
|
562
736
|
*,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: compass_api_sdk
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.50
|
|
4
4
|
Summary: Compass API SDK.
|
|
5
5
|
Author: royalnine
|
|
6
6
|
Requires-Python: >=3.9.2
|
|
@@ -301,6 +301,7 @@ with CompassAPI(
|
|
|
301
301
|
* [portfolio](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#portfolio) - List User Portfolio
|
|
302
302
|
* [visualize_portfolio](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#visualize_portfolio) - Visualize User Portfolio
|
|
303
303
|
* [supported_tokens](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#supported_tokens) - List Supported Tokens
|
|
304
|
+
* [supported_chains](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#supported_chains) - List Supported Chains
|
|
304
305
|
* [allowance](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#allowance) - Get Allowance
|
|
305
306
|
* [ens](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#ens) - Resolve ENS
|
|
306
307
|
* [wrap_eth](https://github.com/CompassLabs/mono/blob/master/docs/sdks/universal/README.md#wrap_eth) - Wrap ETH
|
|
@@ -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=
|
|
5
|
+
compass_api_sdk/_version.py,sha256=B1f93x97jQr90DsrDsGwFSE9sfDzIgQMTyaAD9AHhbw,474
|
|
6
6
|
compass_api_sdk/aave_v3.py,sha256=NANmObFnLrTvn_3E5WX-Cvhmjd5vcegQ1YHSekHkqRc,126132
|
|
7
7
|
compass_api_sdk/aerodrome_slipstream.py,sha256=Ym1DuavVYneGxdCUp2aGsSnsd6_z4aQ53vohR4RQLoU,80439
|
|
8
8
|
compass_api_sdk/basesdk.py,sha256=PQNcMD7BiLruZwOuU2TeWIE_zQ0iO--XYUFmIDr5zX0,11844
|
|
@@ -14,7 +14,7 @@ compass_api_sdk/errors/httpvalidationerror.py,sha256=ebdzfILwY0BltW3MqxCpHipluRS
|
|
|
14
14
|
compass_api_sdk/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
|
|
15
15
|
compass_api_sdk/errors/responsevalidationerror.py,sha256=baMAkfmUhcPt_cxzyOCBCGBOzlXAeTHwcn5AUCsAgOw,702
|
|
16
16
|
compass_api_sdk/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
|
|
17
|
-
compass_api_sdk/models/__init__.py,sha256=
|
|
17
|
+
compass_api_sdk/models/__init__.py,sha256=tgWlrtW87VGzsBg_4hPseKAMVle_wsW-Bn022s_KVPA,123768
|
|
18
18
|
compass_api_sdk/models/aave_aave_supported_tokensop.py,sha256=GqBKHVPuLE7bza_qK8OgMVGMYLkKVRe_z393c2EjO50,2216
|
|
19
19
|
compass_api_sdk/models/aave_avg_rateop.py,sha256=rBneLLelvbRzLENqEWaRgZd1EAm3f3Uq9IEsXRoOroI,3739
|
|
20
20
|
compass_api_sdk/models/aave_historical_transactionsop.py,sha256=oWOjaRhNyjddZPqr5RfhNYf6V4Ye4gOQ0BDIXoqZGSs,1785
|
|
@@ -90,6 +90,7 @@ compass_api_sdk/models/feeenum.py,sha256=TIYaeNWCG9KFGV7CZeXHvZ_4tmlqdlk-Pcg04pc
|
|
|
90
90
|
compass_api_sdk/models/generic_allowanceop.py,sha256=pLZg1TebAmix1SGhp2yo-LP71B9kMDUmBVzNSwfIQbs,3358
|
|
91
91
|
compass_api_sdk/models/generic_ensop.py,sha256=xH9v260Dw_eF_IAlQqO7eqOKRDNDNV2519ze7VO31CM,1104
|
|
92
92
|
compass_api_sdk/models/generic_portfolioop.py,sha256=jtsFkKQCYx2cbhK1LKtMB5RjVAAeRhVF2K5CpgoM74U,1175
|
|
93
|
+
compass_api_sdk/models/generic_supported_chainsop.py,sha256=8Z3BS4oWHqeU2D_H7njXCjHHl3z44MKDzOrvzTOgVOE,1762
|
|
93
94
|
compass_api_sdk/models/generic_supported_tokensop.py,sha256=5ZNzAxmcnaxpGqAn2AoIqdGx0LDF4EnU102mVOXxlO4,884
|
|
94
95
|
compass_api_sdk/models/generic_visualize_portfolioop.py,sha256=FGVWUHvzG8GODN2OFE6yP7ppRLa4H7hclfz00l72sKE,1229
|
|
95
96
|
compass_api_sdk/models/image.py,sha256=-qB_S9WX6YZYVKVqTdnB79f57zjrO2G-hYwBxp-KJDQ,355
|
|
@@ -156,6 +157,7 @@ compass_api_sdk/models/pendlesellytparams.py,sha256=L0uYnw2ri0kwuPevYyslIzLSncpa
|
|
|
156
157
|
compass_api_sdk/models/pendlesellytrequest.py,sha256=yE2_lH-Drm_KmcV9eQs6i11EIHE9m-uVKRfhzA7norc,2205
|
|
157
158
|
compass_api_sdk/models/portfolio.py,sha256=xSVRfsk8CI1rP4ilnlIPzIabMcliQizhW_rnMEPbjDw,991
|
|
158
159
|
compass_api_sdk/models/position.py,sha256=4YmKJIxaKLPaHBKe2_pPdw7urtJnNyHwYqzFpCYBc9o,1320
|
|
160
|
+
compass_api_sdk/models/protocol.py,sha256=abG48NLjDBzP9SGOXxf4MEAEru_xL6l9EDGdQ8kKv3M,289
|
|
159
161
|
compass_api_sdk/models/redeemunderlying.py,sha256=YK6I29RAeIgE4gfxyjgoUiktxqFAnJfvNv4qz1QvmTU,1282
|
|
160
162
|
compass_api_sdk/models/repay.py,sha256=dCDDG9BvJOnT-OgEs013t7l5xG0r-5M_BUxal4cfU0I,1482
|
|
161
163
|
compass_api_sdk/models/reserve.py,sha256=AScfYjYx6PYkgxF2zTr-BrzsGx8ZQl3SV27bZ_xGNro,2217
|
|
@@ -174,6 +176,7 @@ compass_api_sdk/models/skysellrequest.py,sha256=Z2-Ii03RbYA98u5mSSOnuZw6iR1DjqvC
|
|
|
174
176
|
compass_api_sdk/models/skywithdrawparams.py,sha256=I2Qr7wXbzA72GQ5ycbQKKLBNe53oe3dlx2alTcNIllA,2326
|
|
175
177
|
compass_api_sdk/models/skywithdrawrequest.py,sha256=nPjZLaeKusGF90yYO6SPW8iTpuB0rKru8_y3AUX6tOY,2743
|
|
176
178
|
compass_api_sdk/models/supply.py,sha256=uH7dvmTkDtSU9btasJNbdFmesF2AdJc-Yoxusz7rYf8,1554
|
|
179
|
+
compass_api_sdk/models/supportedchaininfo.py,sha256=CC8M6NY04sOnQS5_flw5r9kYohgkiNELK7hdBM5IdKU,456
|
|
177
180
|
compass_api_sdk/models/swapborrowrate.py,sha256=RhZtLKwlDEMiHLdkvD3_URREdcBBbaFk95NN2QZug5g,1744
|
|
178
181
|
compass_api_sdk/models/syposition.py,sha256=AZK-1B3zsZphz-zmYOR_cTONyyhbPJnVe3x93NVwcH8,396
|
|
179
182
|
compass_api_sdk/models/token_addressop.py,sha256=923mPnJfyi4dMV3M2FIaMEeVtAFeRYnLJMfkzCunvnc,2182
|
|
@@ -240,7 +243,7 @@ compass_api_sdk/transaction_bundler.py,sha256=6nij4Wf5g5fyE_DEY0tGr9VGUNvyjXRLqE
|
|
|
240
243
|
compass_api_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
|
|
241
244
|
compass_api_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
|
|
242
245
|
compass_api_sdk/uniswap_v3.py,sha256=RrBsMi9-LZw9RH5SCtx-3l-UxDGNDoGzKyg5xs2CUhU,103527
|
|
243
|
-
compass_api_sdk/universal.py,sha256=
|
|
246
|
+
compass_api_sdk/universal.py,sha256=YscrUIhMIyDY4kmyXC7vwqqL9-Rc3a_izgtDTqzb-8o,72213
|
|
244
247
|
compass_api_sdk/utils/__init__.py,sha256=811KKdkxMaWDfz2lMohUWqrR4JnIWxqeNQ1lRGQU4DM,5341
|
|
245
248
|
compass_api_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
|
|
246
249
|
compass_api_sdk/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
|
|
@@ -258,6 +261,6 @@ compass_api_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R
|
|
|
258
261
|
compass_api_sdk/utils/unmarshal_json_response.py,sha256=GI4Cw4JB6H2qNkqbOuBiUcxtEOJhRm2bz3qfer9KmoE,591
|
|
259
262
|
compass_api_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
260
263
|
compass_api_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
261
|
-
compass_api_sdk-0.9.
|
|
262
|
-
compass_api_sdk-0.9.
|
|
263
|
-
compass_api_sdk-0.9.
|
|
264
|
+
compass_api_sdk-0.9.50.dist-info/METADATA,sha256=4CwSQyNPKbJbzX1kWfokJY9cIKP8pAIDQdsBM8Jya5Y,28976
|
|
265
|
+
compass_api_sdk-0.9.50.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
266
|
+
compass_api_sdk-0.9.50.dist-info/RECORD,,
|
|
File without changes
|