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

@@ -3,10 +3,10 @@
3
3
  import importlib.metadata
4
4
 
5
5
  __title__: str = "compass_api_sdk"
6
- __version__: str = "0.9.42"
6
+ __version__: str = "0.9.44"
7
7
  __openapi_doc_version__: str = "0.0.1"
8
- __gen_version__: str = "2.654.2"
9
- __user_agent__: str = "speakeasy-sdk/python 0.9.42 2.654.2 0.0.1 compass_api_sdk"
8
+ __gen_version__: str = "2.656.5"
9
+ __user_agent__: str = "speakeasy-sdk/python 0.9.44 2.656.5 0.0.1 compass_api_sdk"
10
10
 
11
11
  try:
12
12
  if __package__ is not None:
@@ -808,12 +808,20 @@ if TYPE_CHECKING:
808
808
  UniswapBuyExactlyParams,
809
809
  UniswapBuyExactlyParamsAmount,
810
810
  UniswapBuyExactlyParamsAmountTypedDict,
811
+ UniswapBuyExactlyParamsTokenIn,
812
+ UniswapBuyExactlyParamsTokenInTypedDict,
813
+ UniswapBuyExactlyParamsTokenOut,
814
+ UniswapBuyExactlyParamsTokenOutTypedDict,
811
815
  UniswapBuyExactlyParamsTypedDict,
812
816
  )
813
817
  from .uniswapbuyexactlyrequest import (
814
818
  UniswapBuyExactlyRequest,
815
819
  UniswapBuyExactlyRequestAmount,
816
820
  UniswapBuyExactlyRequestAmountTypedDict,
821
+ UniswapBuyExactlyRequestTokenIn,
822
+ UniswapBuyExactlyRequestTokenInTypedDict,
823
+ UniswapBuyExactlyRequestTokenOut,
824
+ UniswapBuyExactlyRequestTokenOutTypedDict,
817
825
  UniswapBuyExactlyRequestTypedDict,
818
826
  )
819
827
  from .uniswapbuyquoteinforesponse import (
@@ -1539,10 +1547,18 @@ __all__ = [
1539
1547
  "UniswapBuyExactlyParams",
1540
1548
  "UniswapBuyExactlyParamsAmount",
1541
1549
  "UniswapBuyExactlyParamsAmountTypedDict",
1550
+ "UniswapBuyExactlyParamsTokenIn",
1551
+ "UniswapBuyExactlyParamsTokenInTypedDict",
1552
+ "UniswapBuyExactlyParamsTokenOut",
1553
+ "UniswapBuyExactlyParamsTokenOutTypedDict",
1542
1554
  "UniswapBuyExactlyParamsTypedDict",
1543
1555
  "UniswapBuyExactlyRequest",
1544
1556
  "UniswapBuyExactlyRequestAmount",
1545
1557
  "UniswapBuyExactlyRequestAmountTypedDict",
1558
+ "UniswapBuyExactlyRequestTokenIn",
1559
+ "UniswapBuyExactlyRequestTokenInTypedDict",
1560
+ "UniswapBuyExactlyRequestTokenOut",
1561
+ "UniswapBuyExactlyRequestTokenOutTypedDict",
1546
1562
  "UniswapBuyExactlyRequestTypedDict",
1547
1563
  "UniswapBuyQuoteInfoResponse",
1548
1564
  "UniswapBuyQuoteInfoResponseTypedDict",
@@ -2271,10 +2287,18 @@ _dynamic_imports: dict[str, str] = {
2271
2287
  "UniswapBuyExactlyParams": ".uniswapbuyexactlyparams",
2272
2288
  "UniswapBuyExactlyParamsAmount": ".uniswapbuyexactlyparams",
2273
2289
  "UniswapBuyExactlyParamsAmountTypedDict": ".uniswapbuyexactlyparams",
2290
+ "UniswapBuyExactlyParamsTokenIn": ".uniswapbuyexactlyparams",
2291
+ "UniswapBuyExactlyParamsTokenInTypedDict": ".uniswapbuyexactlyparams",
2292
+ "UniswapBuyExactlyParamsTokenOut": ".uniswapbuyexactlyparams",
2293
+ "UniswapBuyExactlyParamsTokenOutTypedDict": ".uniswapbuyexactlyparams",
2274
2294
  "UniswapBuyExactlyParamsTypedDict": ".uniswapbuyexactlyparams",
2275
2295
  "UniswapBuyExactlyRequest": ".uniswapbuyexactlyrequest",
2276
2296
  "UniswapBuyExactlyRequestAmount": ".uniswapbuyexactlyrequest",
2277
2297
  "UniswapBuyExactlyRequestAmountTypedDict": ".uniswapbuyexactlyrequest",
2298
+ "UniswapBuyExactlyRequestTokenIn": ".uniswapbuyexactlyrequest",
2299
+ "UniswapBuyExactlyRequestTokenInTypedDict": ".uniswapbuyexactlyrequest",
2300
+ "UniswapBuyExactlyRequestTokenOut": ".uniswapbuyexactlyrequest",
2301
+ "UniswapBuyExactlyRequestTokenOutTypedDict": ".uniswapbuyexactlyrequest",
2278
2302
  "UniswapBuyExactlyRequestTypedDict": ".uniswapbuyexactlyrequest",
2279
2303
  "UniswapBuyQuoteInfoResponse": ".uniswapbuyquoteinforesponse",
2280
2304
  "UniswapBuyQuoteInfoResponseTypedDict": ".uniswapbuyquoteinforesponse",
@@ -11,6 +11,30 @@ from typing import Literal, Optional, Union
11
11
  from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
12
12
 
13
13
 
14
+ UniswapBuyExactlyParamsTokenInTypedDict = TypeAliasType(
15
+ "UniswapBuyExactlyParamsTokenInTypedDict", Union[TokenEnum, str]
16
+ )
17
+ r"""The symbol of the token to swap from."""
18
+
19
+
20
+ UniswapBuyExactlyParamsTokenIn = TypeAliasType(
21
+ "UniswapBuyExactlyParamsTokenIn", Union[TokenEnum, str]
22
+ )
23
+ r"""The symbol of the token to swap from."""
24
+
25
+
26
+ UniswapBuyExactlyParamsTokenOutTypedDict = TypeAliasType(
27
+ "UniswapBuyExactlyParamsTokenOutTypedDict", Union[TokenEnum, str]
28
+ )
29
+ r"""The symbol of the token to swap to."""
30
+
31
+
32
+ UniswapBuyExactlyParamsTokenOut = TypeAliasType(
33
+ "UniswapBuyExactlyParamsTokenOut", Union[TokenEnum, str]
34
+ )
35
+ r"""The symbol of the token to swap to."""
36
+
37
+
14
38
  UniswapBuyExactlyParamsAmountTypedDict = TypeAliasType(
15
39
  "UniswapBuyExactlyParamsAmountTypedDict", Union[float, str]
16
40
  )
@@ -24,18 +48,10 @@ r"""The amount of the token to swap to"""
24
48
 
25
49
 
26
50
  class UniswapBuyExactlyParamsTypedDict(TypedDict):
27
- token_in: TokenEnum
28
- r"""A class representing the token.
29
-
30
- This class is used to represent the token in the system. Notice individual
31
- endpoints' documentation where per chain tokens are presented.
32
- """
33
- token_out: TokenEnum
34
- r"""A class representing the token.
35
-
36
- This class is used to represent the token in the system. Notice individual
37
- endpoints' documentation where per chain tokens are presented.
38
- """
51
+ token_in: UniswapBuyExactlyParamsTokenInTypedDict
52
+ r"""The symbol of the token to swap from."""
53
+ token_out: UniswapBuyExactlyParamsTokenOutTypedDict
54
+ r"""The symbol of the token to swap to."""
39
55
  fee: FeeEnum
40
56
  r"""The transaction fee of a Uniswap pool in bips.
41
57
 
@@ -51,19 +67,11 @@ class UniswapBuyExactlyParamsTypedDict(TypedDict):
51
67
 
52
68
 
53
69
  class UniswapBuyExactlyParams(BaseModel):
54
- token_in: TokenEnum
55
- r"""A class representing the token.
56
-
57
- This class is used to represent the token in the system. Notice individual
58
- endpoints' documentation where per chain tokens are presented.
59
- """
70
+ token_in: UniswapBuyExactlyParamsTokenIn
71
+ r"""The symbol of the token to swap from."""
60
72
 
61
- token_out: TokenEnum
62
- r"""A class representing the token.
63
-
64
- This class is used to represent the token in the system. Notice individual
65
- endpoints' documentation where per chain tokens are presented.
66
- """
73
+ token_out: UniswapBuyExactlyParamsTokenOut
74
+ r"""The symbol of the token to swap to."""
67
75
 
68
76
  fee: FeeEnum
69
77
  r"""The transaction fee of a Uniswap pool in bips.
@@ -12,6 +12,30 @@ from typing import Literal, Optional, Union
12
12
  from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
13
13
 
14
14
 
15
+ UniswapBuyExactlyRequestTokenInTypedDict = TypeAliasType(
16
+ "UniswapBuyExactlyRequestTokenInTypedDict", Union[TokenEnum, str]
17
+ )
18
+ r"""The symbol of the token to swap from."""
19
+
20
+
21
+ UniswapBuyExactlyRequestTokenIn = TypeAliasType(
22
+ "UniswapBuyExactlyRequestTokenIn", Union[TokenEnum, str]
23
+ )
24
+ r"""The symbol of the token to swap from."""
25
+
26
+
27
+ UniswapBuyExactlyRequestTokenOutTypedDict = TypeAliasType(
28
+ "UniswapBuyExactlyRequestTokenOutTypedDict", Union[TokenEnum, str]
29
+ )
30
+ r"""The symbol of the token to swap to."""
31
+
32
+
33
+ UniswapBuyExactlyRequestTokenOut = TypeAliasType(
34
+ "UniswapBuyExactlyRequestTokenOut", Union[TokenEnum, str]
35
+ )
36
+ r"""The symbol of the token to swap to."""
37
+
38
+
15
39
  UniswapBuyExactlyRequestAmountTypedDict = TypeAliasType(
16
40
  "UniswapBuyExactlyRequestAmountTypedDict", Union[float, str]
17
41
  )
@@ -27,18 +51,10 @@ r"""The amount of the token to swap to"""
27
51
  class UniswapBuyExactlyRequestTypedDict(TypedDict):
28
52
  r"""Request model for buying an exact amount of tokens."""
29
53
 
30
- token_in: TokenEnum
31
- r"""A class representing the token.
32
-
33
- This class is used to represent the token in the system. Notice individual
34
- endpoints' documentation where per chain tokens are presented.
35
- """
36
- token_out: TokenEnum
37
- r"""A class representing the token.
38
-
39
- This class is used to represent the token in the system. Notice individual
40
- endpoints' documentation where per chain tokens are presented.
41
- """
54
+ token_in: UniswapBuyExactlyRequestTokenInTypedDict
55
+ r"""The symbol of the token to swap from."""
56
+ token_out: UniswapBuyExactlyRequestTokenOutTypedDict
57
+ r"""The symbol of the token to swap to."""
42
58
  fee: FeeEnum
43
59
  r"""The transaction fee of a Uniswap pool in bips.
44
60
 
@@ -60,19 +76,11 @@ class UniswapBuyExactlyRequestTypedDict(TypedDict):
60
76
  class UniswapBuyExactlyRequest(BaseModel):
61
77
  r"""Request model for buying an exact amount of tokens."""
62
78
 
63
- token_in: TokenEnum
64
- r"""A class representing the token.
65
-
66
- This class is used to represent the token in the system. Notice individual
67
- endpoints' documentation where per chain tokens are presented.
68
- """
79
+ token_in: UniswapBuyExactlyRequestTokenIn
80
+ r"""The symbol of the token to swap from."""
69
81
 
70
- token_out: TokenEnum
71
- r"""A class representing the token.
72
-
73
- This class is used to represent the token in the system. Notice individual
74
- endpoints' documentation where per chain tokens are presented.
75
- """
82
+ token_out: UniswapBuyExactlyRequestTokenOut
83
+ r"""The symbol of the token to swap to."""
76
84
 
77
85
  fee: FeeEnum
78
86
  r"""The transaction fee of a Uniswap pool in bips.
@@ -1,8 +1,15 @@
1
1
  """Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
2
2
 
3
3
  from __future__ import annotations
4
- from compass_api_sdk.types import BaseModel
5
- from typing_extensions import TypedDict
4
+ from compass_api_sdk.types import (
5
+ BaseModel,
6
+ Nullable,
7
+ OptionalNullable,
8
+ UNSET,
9
+ UNSET_SENTINEL,
10
+ )
11
+ from pydantic import model_serializer
12
+ from typing_extensions import NotRequired, TypedDict
6
13
 
7
14
 
8
15
  class UniswapPositionsSolidityResponseTypedDict(TypedDict):
@@ -18,6 +25,7 @@ class UniswapPositionsSolidityResponseTypedDict(TypedDict):
18
25
  fee_growth_inside1_last_x128: int
19
26
  tokens_owed0: int
20
27
  tokens_owed1: int
28
+ lp_token_address: NotRequired[Nullable[str]]
21
29
 
22
30
 
23
31
  class UniswapPositionsSolidityResponse(BaseModel):
@@ -44,3 +52,35 @@ class UniswapPositionsSolidityResponse(BaseModel):
44
52
  tokens_owed0: int
45
53
 
46
54
  tokens_owed1: int
55
+
56
+ lp_token_address: OptionalNullable[str] = UNSET
57
+
58
+ @model_serializer(mode="wrap")
59
+ def serialize_model(self, handler):
60
+ optional_fields = ["lp_token_address"]
61
+ nullable_fields = ["lp_token_address"]
62
+ null_default_fields = []
63
+
64
+ serialized = handler(self)
65
+
66
+ m = {}
67
+
68
+ for n, f in type(self).model_fields.items():
69
+ k = f.alias or n
70
+ val = serialized.get(k)
71
+ serialized.pop(k, None)
72
+
73
+ optional_nullable = k in optional_fields and k in nullable_fields
74
+ is_set = (
75
+ self.__pydantic_fields_set__.intersection({n})
76
+ or k in null_default_fields
77
+ ) # pylint: disable=no-member
78
+
79
+ if val is not None and val != UNSET_SENTINEL:
80
+ m[k] = val
81
+ elif val != UNSET_SENTINEL and (
82
+ not k in optional_fields or (optional_nullable and is_set)
83
+ ):
84
+ m[k] = val
85
+
86
+ return m
@@ -1026,8 +1026,14 @@ class UniswapV3(BaseSDK):
1026
1026
  def swap_buy_exactly(
1027
1027
  self,
1028
1028
  *,
1029
- token_in: models.TokenEnum,
1030
- token_out: models.TokenEnum,
1029
+ token_in: Union[
1030
+ models.UniswapBuyExactlyRequestTokenIn,
1031
+ models.UniswapBuyExactlyRequestTokenInTypedDict,
1032
+ ],
1033
+ token_out: Union[
1034
+ models.UniswapBuyExactlyRequestTokenOut,
1035
+ models.UniswapBuyExactlyRequestTokenOutTypedDict,
1036
+ ],
1031
1037
  fee: models.FeeEnum,
1032
1038
  amount: Union[
1033
1039
  models.UniswapBuyExactlyRequestAmount,
@@ -1052,8 +1058,8 @@ class UniswapV3(BaseSDK):
1052
1058
  pay with, and the exact amount to receive. If the token being paid with is WETH and
1053
1059
  needs to be wrapped, the appropriate amount will be wrapped automatically.
1054
1060
 
1055
- :param token_in: A class representing the token. This class is used to represent the token in the system. Notice individual endpoints' documentation where per chain tokens are presented.
1056
- :param token_out: A class representing the token. This class is used to represent the token in the system. Notice individual endpoints' documentation where per chain tokens are presented.
1061
+ :param token_in: The symbol of the token to swap from.
1062
+ :param token_out: The symbol of the token to swap to.
1057
1063
  :param fee: The transaction fee of a Uniswap pool in bips. Uniswap supports 4 different fee levels.
1058
1064
  :param amount: The amount of the token to swap to
1059
1065
  :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1 %` slippage allowed.
@@ -1146,8 +1152,14 @@ class UniswapV3(BaseSDK):
1146
1152
  async def swap_buy_exactly_async(
1147
1153
  self,
1148
1154
  *,
1149
- token_in: models.TokenEnum,
1150
- token_out: models.TokenEnum,
1155
+ token_in: Union[
1156
+ models.UniswapBuyExactlyRequestTokenIn,
1157
+ models.UniswapBuyExactlyRequestTokenInTypedDict,
1158
+ ],
1159
+ token_out: Union[
1160
+ models.UniswapBuyExactlyRequestTokenOut,
1161
+ models.UniswapBuyExactlyRequestTokenOutTypedDict,
1162
+ ],
1151
1163
  fee: models.FeeEnum,
1152
1164
  amount: Union[
1153
1165
  models.UniswapBuyExactlyRequestAmount,
@@ -1172,8 +1184,8 @@ class UniswapV3(BaseSDK):
1172
1184
  pay with, and the exact amount to receive. If the token being paid with is WETH and
1173
1185
  needs to be wrapped, the appropriate amount will be wrapped automatically.
1174
1186
 
1175
- :param token_in: A class representing the token. This class is used to represent the token in the system. Notice individual endpoints' documentation where per chain tokens are presented.
1176
- :param token_out: A class representing the token. This class is used to represent the token in the system. Notice individual endpoints' documentation where per chain tokens are presented.
1187
+ :param token_in: The symbol of the token to swap from.
1188
+ :param token_out: The symbol of the token to swap to.
1177
1189
  :param fee: The transaction fee of a Uniswap pool in bips. Uniswap supports 4 different fee levels.
1178
1190
  :param amount: The amount of the token to swap to
1179
1191
  :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1 %` slippage allowed.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: compass_api_sdk
3
- Version: 0.9.42
3
+ Version: 0.9.44
4
4
  Summary: Compass API SDK.
5
5
  Author: royalnine
6
6
  Requires-Python: >=3.9.2
@@ -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=RoWXI4KUAMSiY3fr5kSG1gz_gt_40orYOICmcejgc3Y,474
5
+ compass_api_sdk/_version.py,sha256=XjMsVmGqmE0d87Gph__bOeNdBiJFpVk4bZHZD6PrHII,474
6
6
  compass_api_sdk/aave_v3.py,sha256=OhQmjeWl2emRwT0g1D9RUdPn5B3NsO2fdwzszPs3Uug,116614
7
7
  compass_api_sdk/aerodrome_slipstream.py,sha256=l57AwIZqQvYpeZp9ZJxfhHXqPD5XRGSH0d5ETV3YLww,78289
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=kYa-SLboGGobCZPSELnkErnnxeumV95LbG08IL8M4V0,118463
17
+ compass_api_sdk/models/__init__.py,sha256=DVaSsIgNTFT8fqfmhR-fkx1WaKf_Bv4si2LNBj08hcg,119751
18
18
  compass_api_sdk/models/aave_avg_rateop.py,sha256=Qn7IkBwZv5zY_L15V_LONkANzQPTbtmK2Wwhc2iqYz8,3718
19
19
  compass_api_sdk/models/aave_historical_transactionsop.py,sha256=oWOjaRhNyjddZPqr5RfhNYf6V4Ye4gOQ0BDIXoqZGSs,1785
20
20
  compass_api_sdk/models/aave_liquidity_changeop.py,sha256=o9G4dD2foyhbunziTv_177Qr2AK37KTIQsQfvPxo5Fs,2785
@@ -187,8 +187,8 @@ compass_api_sdk/models/uniswap_liquidity_provision_positionsop.py,sha256=-HW4PPi
187
187
  compass_api_sdk/models/uniswap_pool_priceop.py,sha256=JTBQcsaeJSN_tELQW6iMBztsww84x8ORdJaQmLIRb5c,4115
188
188
  compass_api_sdk/models/uniswap_quote_buy_exactlyop.py,sha256=bccb6R2Vont8p2uPI339D9tQ8gpuyTnXLT0odLXHHws,4914
189
189
  compass_api_sdk/models/uniswap_quote_sell_exactlyop.py,sha256=xOsycQxu7rpp_s5TbYbOarQZnW3yDhRCvX3EBe1x28c,4938
190
- compass_api_sdk/models/uniswapbuyexactlyparams.py,sha256=97xfcsInTbhS1F1L7EmJW6xep_Rk5yNf7PJM8s7JZJU,2976
191
- compass_api_sdk/models/uniswapbuyexactlyrequest.py,sha256=aqDSyrEYTKvFYQ-ThFZVkjJTIMj-CpfItV2RejC_YRE,3363
190
+ compass_api_sdk/models/uniswapbuyexactlyparams.py,sha256=xJLxM351q-hMtgeKYEgpsxFxKxKdXpZZy1fYMtd4Xrw,3156
191
+ compass_api_sdk/models/uniswapbuyexactlyrequest.py,sha256=NcCbCHw5MpBPd8j3U26toGculyoPagXKnEVmyw-qrP0,3555
192
192
  compass_api_sdk/models/uniswapbuyquoteinforesponse.py,sha256=9vhkblgXbV_2wrAMZXv2iswxl7TxzlUMrMNLTUvCeeI,734
193
193
  compass_api_sdk/models/uniswapcheckinrangeresponse.py,sha256=UoDUtm0AjXLnuPfL1odBsmrh6Z19EniwUTlUKTe5N7w,581
194
194
  compass_api_sdk/models/uniswapincreaseliquidityprovisionparams.py,sha256=OovA3mUqYyybOulO1dGh4J_ebumd6VIL6GiT-md5m_Y,3837
@@ -197,7 +197,7 @@ compass_api_sdk/models/uniswaplppositionsinforesponse.py,sha256=Q7RV5Tjb2KVLeEfq
197
197
  compass_api_sdk/models/uniswapmintliquidityprovisionparams.py,sha256=R89sS4n2NePar9P0biog0Wt3FoBrejytyX5syglG-MU,6354
198
198
  compass_api_sdk/models/uniswapmintliquidityprovisionrequest.py,sha256=r_-kXMN3KxQBeLAtC8o_3qEEGNw87AkHdQoTwfXr4QU,6759
199
199
  compass_api_sdk/models/uniswappoolpriceresponse.py,sha256=lIR_8sOq4K8SOTfZpZiOpHZ0nXggYZAC6Zpu5wpi8ok,2068
200
- compass_api_sdk/models/uniswappositionssolidityresponse.py,sha256=5lwNJqhRf3d1zExRYeaO0A8uOaWVtFB0Cvth5eSLWOc,832
200
+ compass_api_sdk/models/uniswappositionssolidityresponse.py,sha256=wy_nhFGzNfzZXdH2dFHDLVKYR8Abtw_ZBXOrjFQpMi4,1989
201
201
  compass_api_sdk/models/uniswapsellexactlyparams.py,sha256=1VRP_4bYWV1Y4xDBDOlVC9uOhxZPBgHqigp-V_KHgDc,3136
202
202
  compass_api_sdk/models/uniswapsellexactlyrequest.py,sha256=lFFS6XQEP8Wbkjv-yQlRcqD1wq05-SKCVR6UKaaI_4k,3389
203
203
  compass_api_sdk/models/uniswapsellquoteinforesponse.py,sha256=Eyf9p6RUu5HBgeutCzbYketAesTEUcAHDC6-_NCq68A,734
@@ -233,7 +233,7 @@ compass_api_sdk/token_sdk.py,sha256=cCzbVft0xGsABPCga56h7FvV0PglJO8okBjg5qyvYHU,
233
233
  compass_api_sdk/transaction_bundler.py,sha256=6nij4Wf5g5fyE_DEY0tGr9VGUNvyjXRLqEfA1Y1FUNM,30278
234
234
  compass_api_sdk/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
235
235
  compass_api_sdk/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
236
- compass_api_sdk/uniswap_v3.py,sha256=JBNEi6nuU248f7HmEjBvUdQr-fYX8TgyD8ZneT1VfW8,101569
236
+ compass_api_sdk/uniswap_v3.py,sha256=MVyv6u_nQFoMXUGv0M6TWTHYAtPuTZjdK3ZQv0NAJRU,101489
237
237
  compass_api_sdk/universal.py,sha256=zdmsKmRxI9u3kv-kGXUXFY30ARz9Yp8yCYNl1bvjLxs,65113
238
238
  compass_api_sdk/utils/__init__.py,sha256=811KKdkxMaWDfz2lMohUWqrR4JnIWxqeNQ1lRGQU4DM,5341
239
239
  compass_api_sdk/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
@@ -252,6 +252,6 @@ compass_api_sdk/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R
252
252
  compass_api_sdk/utils/unmarshal_json_response.py,sha256=GI4Cw4JB6H2qNkqbOuBiUcxtEOJhRm2bz3qfer9KmoE,591
253
253
  compass_api_sdk/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
254
254
  compass_api_sdk/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
255
- compass_api_sdk-0.9.42.dist-info/METADATA,sha256=WKI9Ep-pfIZI7zZXClBFMuK2bnfYYJwW2h_HdGAM3Us,28507
256
- compass_api_sdk-0.9.42.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
257
- compass_api_sdk-0.9.42.dist-info/RECORD,,
255
+ compass_api_sdk-0.9.44.dist-info/METADATA,sha256=fs11yNxARADmQUUDJpRmQkPhZLDV0uoYa5i3pcQhp7w,28507
256
+ compass_api_sdk-0.9.44.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
257
+ compass_api_sdk-0.9.44.dist-info/RECORD,,