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

Files changed (28) hide show
  1. compass_api_sdk/_version.py +3 -3
  2. compass_api_sdk/models/__init__.py +56 -0
  3. compass_api_sdk/models/aavelooprequest.py +113 -0
  4. compass_api_sdk/models/compass_api_backend_models_morpho_read_response_get_market_marketstate.py +33 -13
  5. compass_api_sdk/models/metadata.py +1 -7
  6. compass_api_sdk/models/multicallauthorizationrequest.py +39 -0
  7. compass_api_sdk/models/multicallauthorizationresponse.py +30 -0
  8. compass_api_sdk/models/multicallexecuterequest.py +36 -0
  9. compass_api_sdk/models/pendleaddliquidityparams.py +5 -0
  10. compass_api_sdk/models/pendleaddliquidityrequest.py +5 -0
  11. compass_api_sdk/models/pendlebuyptparams.py +5 -0
  12. compass_api_sdk/models/pendlebuyptrequest.py +5 -0
  13. compass_api_sdk/models/pendlebuyytparams.py +5 -0
  14. compass_api_sdk/models/pendlebuyytrequest.py +5 -0
  15. compass_api_sdk/models/pendleremoveliquidityparams.py +5 -0
  16. compass_api_sdk/models/pendleremoveliquidityrequest.py +5 -0
  17. compass_api_sdk/models/pendlesellptparams.py +5 -0
  18. compass_api_sdk/models/pendlesellptrequest.py +5 -0
  19. compass_api_sdk/models/pendlesellytparams.py +5 -0
  20. compass_api_sdk/models/pendlesellytrequest.py +5 -0
  21. compass_api_sdk/models/useroperation.py +18 -18
  22. compass_api_sdk/pendle.py +36 -0
  23. compass_api_sdk/sdk.py +6 -0
  24. compass_api_sdk/transaction_batching.py +765 -0
  25. compass_api_sdk/utils/forms.py +49 -28
  26. {compass_api_sdk-0.9.13.dist-info → compass_api_sdk-0.9.15.dist-info}/METADATA +7 -1
  27. {compass_api_sdk-0.9.13.dist-info → compass_api_sdk-0.9.15.dist-info}/RECORD +28 -23
  28. {compass_api_sdk-0.9.13.dist-info → compass_api_sdk-0.9.15.dist-info}/WHEEL +0 -0
@@ -24,6 +24,8 @@ class PendleSellYtParamsTypedDict(TypedDict):
24
24
  r"""The address of the market identifying which Yield Token (YT) you would like to sell."""
25
25
  amount: PendleSellYtParamsAmountTypedDict
26
26
  r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
27
+ max_slippage_percent: float
28
+ r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
27
29
  action_type: Literal["PENDLE_SELL_YT"]
28
30
 
29
31
 
@@ -34,6 +36,9 @@ class PendleSellYtParams(BaseModel):
34
36
  amount: PendleSellYtParamsAmount
35
37
  r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
36
38
 
39
+ max_slippage_percent: float
40
+ r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
41
+
37
42
  ACTION_TYPE: Annotated[
38
43
  Annotated[
39
44
  Optional[Literal["PENDLE_SELL_YT"]],
@@ -27,6 +27,8 @@ class PendleSellYtRequestTypedDict(TypedDict):
27
27
  r"""The address of the market identifying which Yield Token (YT) you would like to sell."""
28
28
  amount: PendleSellYtRequestAmountTypedDict
29
29
  r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
30
+ max_slippage_percent: float
31
+ r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
30
32
  chain: Chain
31
33
  r"""The chain to use."""
32
34
  sender: str
@@ -41,6 +43,9 @@ class PendleSellYtRequest(BaseModel):
41
43
  amount: PendleSellYtRequestAmount
42
44
  r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
43
45
 
46
+ max_slippage_percent: float
47
+ r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
48
+
44
49
  chain: Chain
45
50
  r"""The chain to use."""
46
51
 
@@ -101,38 +101,38 @@ from typing_extensions import Annotated, TypeAliasType, TypedDict
101
101
  BodyTypedDict = TypeAliasType(
102
102
  "BodyTypedDict",
103
103
  Union[
104
- PendleRedeemYieldParamsTypedDict,
105
104
  WrapEthParamsTypedDict,
106
105
  UnwrapWethParamsTypedDict,
107
- SkyWithdrawParamsTypedDict,
108
- PendleAddLiquidityParamsTypedDict,
106
+ PendleRedeemYieldParamsTypedDict,
107
+ MorphoSetVaultAllowanceParamsTypedDict,
109
108
  UniswapWithdrawLiquidityProvisionParamsTypedDict,
110
- PendleRemoveLiquidityParamsTypedDict,
109
+ SkyWithdrawParamsTypedDict,
111
110
  SkySellParamsTypedDict,
112
- AerodromeSlipstreamWithdrawLiquidityProvisionParamsTypedDict,
113
111
  SkyDepositParamsTypedDict,
114
112
  SkyBuyParamsTypedDict,
113
+ AerodromeSlipstreamWithdrawLiquidityProvisionParamsTypedDict,
114
+ IncreaseAllowanceParamsTypedDict,
115
115
  PendleSellYtParamsTypedDict,
116
- PendleSellPtParamsTypedDict,
117
- MorphoSetVaultAllowanceParamsTypedDict,
118
- PendleBuyYtParamsTypedDict,
119
- PendleBuyPtParamsTypedDict,
120
- TokenTransferErc20ParamsTypedDict,
121
- MorphoDepositParamsTypedDict,
122
- MorphoWithdrawParamsTypedDict,
123
116
  AaveSupplyParamsTypedDict,
124
117
  AaveWithdrawParamsTypedDict,
125
- IncreaseAllowanceParamsTypedDict,
126
- MorphoSupplyCollateralParamsTypedDict,
118
+ TokenTransferErc20ParamsTypedDict,
119
+ MorphoWithdrawParamsTypedDict,
120
+ MorphoDepositParamsTypedDict,
121
+ PendleAddLiquidityParamsTypedDict,
122
+ PendleBuyPtParamsTypedDict,
123
+ PendleBuyYtParamsTypedDict,
124
+ PendleSellPtParamsTypedDict,
125
+ PendleRemoveLiquidityParamsTypedDict,
127
126
  MorphoRepayParamsTypedDict,
128
- MorphoBorrowParamsTypedDict,
129
127
  MorphoWithdrawCollateralParamsTypedDict,
130
- AaveRepayParamsTypedDict,
131
128
  AaveBorrowParamsTypedDict,
132
- UniswapIncreaseLiquidityProvisionParamsTypedDict,
129
+ MorphoSupplyCollateralParamsTypedDict,
130
+ AaveRepayParamsTypedDict,
131
+ MorphoBorrowParamsTypedDict,
132
+ AerodromeSlipstreamSellExactlyParamsTypedDict,
133
133
  AerodromeSlipstreamIncreaseLiquidityProvisionParamsTypedDict,
134
134
  AerodromeSlipstreamBuyExactlyParamsTypedDict,
135
- AerodromeSlipstreamSellExactlyParamsTypedDict,
135
+ UniswapIncreaseLiquidityProvisionParamsTypedDict,
136
136
  UniswapBuyExactlyParamsTypedDict,
137
137
  UniswapSellExactlyParamsTypedDict,
138
138
  AerodromeSlipstreamMintLiquidityProvisionParamsTypedDict,
compass_api_sdk/pendle.py CHANGED
@@ -831,6 +831,7 @@ class Pendle(BaseSDK):
831
831
  amount: Union[
832
832
  models.PendleBuyPtRequestAmount, models.PendleBuyPtRequestAmountTypedDict
833
833
  ],
834
+ max_slippage_percent: float,
834
835
  chain: models.Chain,
835
836
  sender: str,
836
837
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -844,6 +845,7 @@ class Pendle(BaseSDK):
844
845
 
845
846
  :param market_address: The address of the market identifying which Principal Token (PT) you would like to buy.
846
847
  :param amount: The amount of market's Underlying Token you would like to sell for market's Principal Token (PT).
848
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
847
849
  :param chain: The chain to use.
848
850
  :param sender: The address of the transaction sender.
849
851
  :param retries: Override the default retry configuration for this method
@@ -864,6 +866,7 @@ class Pendle(BaseSDK):
864
866
  request = models.PendleBuyPtRequest(
865
867
  market_address=market_address,
866
868
  amount=amount,
869
+ max_slippage_percent=max_slippage_percent,
867
870
  chain=chain,
868
871
  sender=sender,
869
872
  )
@@ -943,6 +946,7 @@ class Pendle(BaseSDK):
943
946
  amount: Union[
944
947
  models.PendleBuyPtRequestAmount, models.PendleBuyPtRequestAmountTypedDict
945
948
  ],
949
+ max_slippage_percent: float,
946
950
  chain: models.Chain,
947
951
  sender: str,
948
952
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -956,6 +960,7 @@ class Pendle(BaseSDK):
956
960
 
957
961
  :param market_address: The address of the market identifying which Principal Token (PT) you would like to buy.
958
962
  :param amount: The amount of market's Underlying Token you would like to sell for market's Principal Token (PT).
963
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
959
964
  :param chain: The chain to use.
960
965
  :param sender: The address of the transaction sender.
961
966
  :param retries: Override the default retry configuration for this method
@@ -976,6 +981,7 @@ class Pendle(BaseSDK):
976
981
  request = models.PendleBuyPtRequest(
977
982
  market_address=market_address,
978
983
  amount=amount,
984
+ max_slippage_percent=max_slippage_percent,
979
985
  chain=chain,
980
986
  sender=sender,
981
987
  )
@@ -1055,6 +1061,7 @@ class Pendle(BaseSDK):
1055
1061
  amount: Union[
1056
1062
  models.PendleSellPtRequestAmount, models.PendleSellPtRequestAmountTypedDict
1057
1063
  ],
1064
+ max_slippage_percent: float,
1058
1065
  chain: models.Chain,
1059
1066
  sender: str,
1060
1067
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1068,6 +1075,7 @@ class Pendle(BaseSDK):
1068
1075
 
1069
1076
  :param market_address: The address of the market identifying which Principal Token (PT) you would like to sell.
1070
1077
  :param amount: The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token.
1078
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1071
1079
  :param chain: The chain to use.
1072
1080
  :param sender: The address of the transaction sender.
1073
1081
  :param retries: Override the default retry configuration for this method
@@ -1088,6 +1096,7 @@ class Pendle(BaseSDK):
1088
1096
  request = models.PendleSellPtRequest(
1089
1097
  market_address=market_address,
1090
1098
  amount=amount,
1099
+ max_slippage_percent=max_slippage_percent,
1091
1100
  chain=chain,
1092
1101
  sender=sender,
1093
1102
  )
@@ -1167,6 +1176,7 @@ class Pendle(BaseSDK):
1167
1176
  amount: Union[
1168
1177
  models.PendleSellPtRequestAmount, models.PendleSellPtRequestAmountTypedDict
1169
1178
  ],
1179
+ max_slippage_percent: float,
1170
1180
  chain: models.Chain,
1171
1181
  sender: str,
1172
1182
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1180,6 +1190,7 @@ class Pendle(BaseSDK):
1180
1190
 
1181
1191
  :param market_address: The address of the market identifying which Principal Token (PT) you would like to sell.
1182
1192
  :param amount: The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token.
1193
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1183
1194
  :param chain: The chain to use.
1184
1195
  :param sender: The address of the transaction sender.
1185
1196
  :param retries: Override the default retry configuration for this method
@@ -1200,6 +1211,7 @@ class Pendle(BaseSDK):
1200
1211
  request = models.PendleSellPtRequest(
1201
1212
  market_address=market_address,
1202
1213
  amount=amount,
1214
+ max_slippage_percent=max_slippage_percent,
1203
1215
  chain=chain,
1204
1216
  sender=sender,
1205
1217
  )
@@ -1279,6 +1291,7 @@ class Pendle(BaseSDK):
1279
1291
  amount: Union[
1280
1292
  models.PendleBuyYtRequestAmount, models.PendleBuyYtRequestAmountTypedDict
1281
1293
  ],
1294
+ max_slippage_percent: float,
1282
1295
  chain: models.Chain,
1283
1296
  sender: str,
1284
1297
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1292,6 +1305,7 @@ class Pendle(BaseSDK):
1292
1305
 
1293
1306
  :param market_address: The address of the market identifying which Yield Token (YT) you would like to buy.
1294
1307
  :param amount: The amount of market's Underlying Token you would like to sell for market's Yield Token (YT).
1308
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1295
1309
  :param chain: The chain to use.
1296
1310
  :param sender: The address of the transaction sender.
1297
1311
  :param retries: Override the default retry configuration for this method
@@ -1312,6 +1326,7 @@ class Pendle(BaseSDK):
1312
1326
  request = models.PendleBuyYtRequest(
1313
1327
  market_address=market_address,
1314
1328
  amount=amount,
1329
+ max_slippage_percent=max_slippage_percent,
1315
1330
  chain=chain,
1316
1331
  sender=sender,
1317
1332
  )
@@ -1391,6 +1406,7 @@ class Pendle(BaseSDK):
1391
1406
  amount: Union[
1392
1407
  models.PendleBuyYtRequestAmount, models.PendleBuyYtRequestAmountTypedDict
1393
1408
  ],
1409
+ max_slippage_percent: float,
1394
1410
  chain: models.Chain,
1395
1411
  sender: str,
1396
1412
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1404,6 +1420,7 @@ class Pendle(BaseSDK):
1404
1420
 
1405
1421
  :param market_address: The address of the market identifying which Yield Token (YT) you would like to buy.
1406
1422
  :param amount: The amount of market's Underlying Token you would like to sell for market's Yield Token (YT).
1423
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1407
1424
  :param chain: The chain to use.
1408
1425
  :param sender: The address of the transaction sender.
1409
1426
  :param retries: Override the default retry configuration for this method
@@ -1424,6 +1441,7 @@ class Pendle(BaseSDK):
1424
1441
  request = models.PendleBuyYtRequest(
1425
1442
  market_address=market_address,
1426
1443
  amount=amount,
1444
+ max_slippage_percent=max_slippage_percent,
1427
1445
  chain=chain,
1428
1446
  sender=sender,
1429
1447
  )
@@ -1503,6 +1521,7 @@ class Pendle(BaseSDK):
1503
1521
  amount: Union[
1504
1522
  models.PendleSellYtRequestAmount, models.PendleSellYtRequestAmountTypedDict
1505
1523
  ],
1524
+ max_slippage_percent: float,
1506
1525
  chain: models.Chain,
1507
1526
  sender: str,
1508
1527
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1516,6 +1535,7 @@ class Pendle(BaseSDK):
1516
1535
 
1517
1536
  :param market_address: The address of the market identifying which Yield Token (YT) you would like to sell.
1518
1537
  :param amount: The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token.
1538
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1519
1539
  :param chain: The chain to use.
1520
1540
  :param sender: The address of the transaction sender.
1521
1541
  :param retries: Override the default retry configuration for this method
@@ -1536,6 +1556,7 @@ class Pendle(BaseSDK):
1536
1556
  request = models.PendleSellYtRequest(
1537
1557
  market_address=market_address,
1538
1558
  amount=amount,
1559
+ max_slippage_percent=max_slippage_percent,
1539
1560
  chain=chain,
1540
1561
  sender=sender,
1541
1562
  )
@@ -1615,6 +1636,7 @@ class Pendle(BaseSDK):
1615
1636
  amount: Union[
1616
1637
  models.PendleSellYtRequestAmount, models.PendleSellYtRequestAmountTypedDict
1617
1638
  ],
1639
+ max_slippage_percent: float,
1618
1640
  chain: models.Chain,
1619
1641
  sender: str,
1620
1642
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1628,6 +1650,7 @@ class Pendle(BaseSDK):
1628
1650
 
1629
1651
  :param market_address: The address of the market identifying which Yield Token (YT) you would like to sell.
1630
1652
  :param amount: The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token.
1653
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1631
1654
  :param chain: The chain to use.
1632
1655
  :param sender: The address of the transaction sender.
1633
1656
  :param retries: Override the default retry configuration for this method
@@ -1648,6 +1671,7 @@ class Pendle(BaseSDK):
1648
1671
  request = models.PendleSellYtRequest(
1649
1672
  market_address=market_address,
1650
1673
  amount=amount,
1674
+ max_slippage_percent=max_slippage_percent,
1651
1675
  chain=chain,
1652
1676
  sender=sender,
1653
1677
  )
@@ -1942,6 +1966,7 @@ class Pendle(BaseSDK):
1942
1966
  models.PendleAddLiquidityRequestAmount,
1943
1967
  models.PendleAddLiquidityRequestAmountTypedDict,
1944
1968
  ],
1969
+ max_slippage_percent: float,
1945
1970
  chain: models.Chain,
1946
1971
  sender: str,
1947
1972
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -1958,6 +1983,7 @@ class Pendle(BaseSDK):
1958
1983
 
1959
1984
  :param market_address: The address identifying which Pendle Market you would like to add liquidity to.
1960
1985
  :param amount: The amount of liquidity you would like to add to the market denominated in the market's Underlying Token.
1986
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
1961
1987
  :param chain: The chain to use.
1962
1988
  :param sender: The address of the transaction sender.
1963
1989
  :param retries: Override the default retry configuration for this method
@@ -1978,6 +2004,7 @@ class Pendle(BaseSDK):
1978
2004
  request = models.PendleAddLiquidityRequest(
1979
2005
  market_address=market_address,
1980
2006
  amount=amount,
2007
+ max_slippage_percent=max_slippage_percent,
1981
2008
  chain=chain,
1982
2009
  sender=sender,
1983
2010
  )
@@ -2058,6 +2085,7 @@ class Pendle(BaseSDK):
2058
2085
  models.PendleAddLiquidityRequestAmount,
2059
2086
  models.PendleAddLiquidityRequestAmountTypedDict,
2060
2087
  ],
2088
+ max_slippage_percent: float,
2061
2089
  chain: models.Chain,
2062
2090
  sender: str,
2063
2091
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -2074,6 +2102,7 @@ class Pendle(BaseSDK):
2074
2102
 
2075
2103
  :param market_address: The address identifying which Pendle Market you would like to add liquidity to.
2076
2104
  :param amount: The amount of liquidity you would like to add to the market denominated in the market's Underlying Token.
2105
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
2077
2106
  :param chain: The chain to use.
2078
2107
  :param sender: The address of the transaction sender.
2079
2108
  :param retries: Override the default retry configuration for this method
@@ -2094,6 +2123,7 @@ class Pendle(BaseSDK):
2094
2123
  request = models.PendleAddLiquidityRequest(
2095
2124
  market_address=market_address,
2096
2125
  amount=amount,
2126
+ max_slippage_percent=max_slippage_percent,
2097
2127
  chain=chain,
2098
2128
  sender=sender,
2099
2129
  )
@@ -2174,6 +2204,7 @@ class Pendle(BaseSDK):
2174
2204
  models.PendleRemoveLiquidityRequestAmount,
2175
2205
  models.PendleRemoveLiquidityRequestAmountTypedDict,
2176
2206
  ],
2207
+ max_slippage_percent: float,
2177
2208
  chain: models.Chain,
2178
2209
  sender: str,
2179
2210
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -2191,6 +2222,7 @@ class Pendle(BaseSDK):
2191
2222
 
2192
2223
  :param market_address: The address identifying which Pendle Market you would like to remove liquidity from.
2193
2224
  :param amount: The amount of liquidity you would like to remove from the market denominated in the market's Liquidity Provider Token (LP).
2225
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
2194
2226
  :param chain: The chain to use.
2195
2227
  :param sender: The address of the transaction sender.
2196
2228
  :param retries: Override the default retry configuration for this method
@@ -2211,6 +2243,7 @@ class Pendle(BaseSDK):
2211
2243
  request = models.PendleRemoveLiquidityRequest(
2212
2244
  market_address=market_address,
2213
2245
  amount=amount,
2246
+ max_slippage_percent=max_slippage_percent,
2214
2247
  chain=chain,
2215
2248
  sender=sender,
2216
2249
  )
@@ -2291,6 +2324,7 @@ class Pendle(BaseSDK):
2291
2324
  models.PendleRemoveLiquidityRequestAmount,
2292
2325
  models.PendleRemoveLiquidityRequestAmountTypedDict,
2293
2326
  ],
2327
+ max_slippage_percent: float,
2294
2328
  chain: models.Chain,
2295
2329
  sender: str,
2296
2330
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
@@ -2308,6 +2342,7 @@ class Pendle(BaseSDK):
2308
2342
 
2309
2343
  :param market_address: The address identifying which Pendle Market you would like to remove liquidity from.
2310
2344
  :param amount: The amount of liquidity you would like to remove from the market denominated in the market's Liquidity Provider Token (LP).
2345
+ :param max_slippage_percent: The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed.
2311
2346
  :param chain: The chain to use.
2312
2347
  :param sender: The address of the transaction sender.
2313
2348
  :param retries: Override the default retry configuration for this method
@@ -2328,6 +2363,7 @@ class Pendle(BaseSDK):
2328
2363
  request = models.PendleRemoveLiquidityRequest(
2329
2364
  market_address=market_address,
2330
2365
  amount=amount,
2366
+ max_slippage_percent=max_slippage_percent,
2331
2367
  chain=chain,
2332
2368
  sender=sender,
2333
2369
  )
compass_api_sdk/sdk.py CHANGED
@@ -21,6 +21,7 @@ if TYPE_CHECKING:
21
21
  from compass_api_sdk.sky import Sky
22
22
  from compass_api_sdk.smart_account import SmartAccount
23
23
  from compass_api_sdk.token_sdk import TokenSDK
24
+ from compass_api_sdk.transaction_batching import TransactionBatching
24
25
  from compass_api_sdk.uniswap_v3 import UniswapV3
25
26
  from compass_api_sdk.universal import Universal
26
27
 
@@ -36,6 +37,7 @@ class CompassAPI(BaseSDK):
36
37
  uniswap_v3: "UniswapV3"
37
38
  universal: "Universal"
38
39
  pendle: "Pendle"
40
+ transaction_batching: "TransactionBatching"
39
41
  smart_account: "SmartAccount"
40
42
  _sub_sdk_map = {
41
43
  "aave_v3": ("compass_api_sdk.aave_v3", "AaveV3"),
@@ -49,6 +51,10 @@ class CompassAPI(BaseSDK):
49
51
  "uniswap_v3": ("compass_api_sdk.uniswap_v3", "UniswapV3"),
50
52
  "universal": ("compass_api_sdk.universal", "Universal"),
51
53
  "pendle": ("compass_api_sdk.pendle", "Pendle"),
54
+ "transaction_batching": (
55
+ "compass_api_sdk.transaction_batching",
56
+ "TransactionBatching",
57
+ ),
52
58
  "smart_account": ("compass_api_sdk.smart_account", "SmartAccount"),
53
59
  }
54
60