compass_api_sdk 1.1.1__py3-none-any.whl → 2.0.21rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (248) hide show
  1. compass_api_sdk/_hooks/sdkhooks.py +4 -4
  2. compass_api_sdk/_hooks/types.py +1 -2
  3. compass_api_sdk/_version.py +3 -3
  4. compass_api_sdk/aave_v3.py +386 -114
  5. compass_api_sdk/aerodrome_slipstream.py +104 -54
  6. compass_api_sdk/basesdk.py +6 -0
  7. compass_api_sdk/bridge.py +536 -0
  8. compass_api_sdk/earn.py +1780 -0
  9. compass_api_sdk/erc_4626_vaults.py +28 -10
  10. compass_api_sdk/errors/__init__.py +8 -0
  11. compass_api_sdk/errors/apierror.py +1 -1
  12. compass_api_sdk/errors/compassapierror.py +1 -1
  13. compass_api_sdk/errors/httpvalidationerror.py +1 -1
  14. compass_api_sdk/errors/mintpreparenotfoundresponse_error.py +49 -0
  15. compass_api_sdk/errors/no_response_error.py +1 -1
  16. compass_api_sdk/errors/responsevalidationerror.py +1 -1
  17. compass_api_sdk/ethena.py +36 -10
  18. compass_api_sdk/gas_sponsorship.py +446 -0
  19. compass_api_sdk/httpclient.py +0 -1
  20. compass_api_sdk/models/__init__.py +764 -392
  21. compass_api_sdk/models/aaveborrowparams.py +4 -13
  22. compass_api_sdk/models/aaveborrowrequest.py +10 -14
  23. compass_api_sdk/models/aavehistoricaltransactionsresponse.py +3 -3
  24. compass_api_sdk/models/aavelooprequest.py +32 -28
  25. compass_api_sdk/models/aaveposition.py +49 -0
  26. compass_api_sdk/models/aaverepayparams.py +4 -13
  27. compass_api_sdk/models/aaverepayrequest.py +10 -14
  28. compass_api_sdk/models/aavesetuseremodeparams.py +28 -0
  29. compass_api_sdk/models/aavesetuseremoderequest.py +48 -0
  30. compass_api_sdk/models/aavesupplyparams.py +4 -13
  31. compass_api_sdk/models/aavesupplyrequest.py +10 -14
  32. compass_api_sdk/models/aavevenue.py +27 -0
  33. compass_api_sdk/models/aavewithdrawparams.py +4 -13
  34. compass_api_sdk/models/aavewithdrawrequest.py +10 -14
  35. compass_api_sdk/models/aerodromeenrichedposition.py +109 -0
  36. compass_api_sdk/models/aerodromelppositionsresponse.py +10 -7
  37. compass_api_sdk/models/aerodromeslipstreambuyexactlyparams.py +8 -25
  38. compass_api_sdk/models/aerodromeslipstreambuyexactlyrequest.py +14 -26
  39. compass_api_sdk/models/aerodromeslipstreamincreaseliquidityprovisionrequest.py +6 -1
  40. compass_api_sdk/models/aerodromeslipstreammintliquidityprovisionparams.py +8 -25
  41. compass_api_sdk/models/aerodromeslipstreammintliquidityprovisionrequest.py +14 -26
  42. compass_api_sdk/models/aerodromeslipstreampoolpriceresponse.py +8 -25
  43. compass_api_sdk/models/aerodromeslipstreamsellexactlyparams.py +8 -25
  44. compass_api_sdk/models/aerodromeslipstreamsellexactlyrequest.py +13 -25
  45. compass_api_sdk/models/aerodromeslipstreamwithdrawliquidityprovisionrequest.py +6 -1
  46. compass_api_sdk/models/approvetransferrequest.py +32 -0
  47. compass_api_sdk/models/approvetransferresponse.py +52 -0
  48. compass_api_sdk/models/batchedsafeoperationsresponse_input.py +52 -0
  49. compass_api_sdk/models/batchedsafeoperationsresponse_output.py +52 -0
  50. compass_api_sdk/models/batcheduseroperationsrequest.py +15 -4
  51. compass_api_sdk/models/chainmarketinfo.py +29 -0
  52. compass_api_sdk/models/{compass_api_backend_models_generic_read_response_portfolio_tokenbalance.py → compass_api_backend_v1_models_generic_read_response_portfolio_tokenbalance.py} +6 -15
  53. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_check_user_position_apydata.py → compass_api_backend_v1_models_morpho_read_response_check_user_position_apydata.py} +2 -2
  54. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_check_user_position_asset.py → compass_api_backend_v1_models_morpho_read_response_check_user_position_asset.py} +2 -2
  55. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_check_user_position_marketstate.py → compass_api_backend_v1_models_morpho_read_response_check_user_position_marketstate.py} +4 -2
  56. compass_api_sdk/models/compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultposition.py +30 -0
  57. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_check_user_position_vaultstate.py → compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultstate.py} +2 -2
  58. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_market_apydata.py → compass_api_backend_v1_models_morpho_read_response_get_market_apydata.py} +2 -2
  59. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_market_asset.py → compass_api_backend_v1_models_morpho_read_response_get_market_asset.py} +5 -5
  60. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_market_marketstate.py → compass_api_backend_v1_models_morpho_read_response_get_market_marketstate.py} +4 -2
  61. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_markets_asset.py → compass_api_backend_v1_models_morpho_read_response_get_markets_asset.py} +2 -2
  62. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_markets_marketstate.py → compass_api_backend_v1_models_morpho_read_response_get_markets_marketstate.py} +2 -2
  63. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_vaults_asset.py → compass_api_backend_v1_models_morpho_read_response_get_vaults_asset.py} +2 -2
  64. compass_api_sdk/models/{compass_api_backend_models_morpho_read_response_get_vaults_vaultstate.py → compass_api_backend_v1_models_morpho_read_response_get_vaults_vaultstate.py} +4 -2
  65. compass_api_sdk/models/{compass_api_backend_models_pendle_read_response_market_userposition.py → compass_api_backend_v1_models_pendle_read_response_market_userposition.py} +2 -2
  66. compass_api_sdk/models/{compass_api_backend_models_pendle_read_response_positions_tokenbalance.py → compass_api_backend_v1_models_pendle_read_response_positions_tokenbalance.py} +2 -2
  67. compass_api_sdk/models/{compass_api_backend_models_vaults_read_response_vault_userposition.py → compass_api_backend_v1_models_vaults_read_response_vault_userposition.py} +2 -2
  68. compass_api_sdk/models/compass_api_backend_v1_models_wildcat_read_response_market_userposition.py +22 -0
  69. compass_api_sdk/models/compass_api_backend_v2_models_earn_read_response_positions_vaultposition.py +49 -0
  70. compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712domain.py +36 -0
  71. compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712types.py +36 -0
  72. compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712domain.py +37 -0
  73. compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712types.py +32 -0
  74. compass_api_sdk/models/compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712domain.py +29 -0
  75. compass_api_sdk/models/compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712types.py +34 -0
  76. compass_api_sdk/models/createaccountrequest.py +40 -0
  77. compass_api_sdk/models/createaccountresponse.py +56 -0
  78. compass_api_sdk/models/depositforburnrequest.py +77 -0
  79. compass_api_sdk/models/depositforburnresponse.py +100 -0
  80. compass_api_sdk/models/earnmanageparams.py +74 -0
  81. compass_api_sdk/models/earnmanagerequest.py +130 -0
  82. compass_api_sdk/models/earnmanageresponse.py +52 -0
  83. compass_api_sdk/models/earnpositionsresponse.py +39 -0
  84. compass_api_sdk/models/earnswapparams.py +74 -0
  85. compass_api_sdk/models/earnswaprequest.py +90 -0
  86. compass_api_sdk/models/earnswapresponse.py +55 -0
  87. compass_api_sdk/models/earntransferrequest.py +104 -0
  88. compass_api_sdk/models/earntransferresponse.py +71 -0
  89. compass_api_sdk/models/eip712domainfield.py +20 -0
  90. compass_api_sdk/models/eip712field.py +20 -0
  91. compass_api_sdk/models/ethenadepositrequest.py +6 -1
  92. compass_api_sdk/models/ethenagetvaultresponse.py +5 -5
  93. compass_api_sdk/models/ethenarequesttowithdrawrequest.py +6 -1
  94. compass_api_sdk/models/ethenaunstakerequest.py +6 -1
  95. compass_api_sdk/models/fee.py +42 -0
  96. compass_api_sdk/models/listaavemarketsresponse.py +21 -0
  97. compass_api_sdk/models/marketposition.py +5 -5
  98. compass_api_sdk/models/maxsupplyapyinfo.py +34 -0
  99. compass_api_sdk/models/mintpreparecompletedresponse.py +46 -0
  100. compass_api_sdk/models/mintpreparependingresponse.py +65 -0
  101. compass_api_sdk/models/mintpreparereadyresponse.py +43 -0
  102. compass_api_sdk/models/mintpreparerequest.py +25 -0
  103. compass_api_sdk/models/morphoborrowrequest.py +6 -1
  104. compass_api_sdk/models/morphocheckuserpositionresponse.py +9 -3
  105. compass_api_sdk/models/morphodepositrequest.py +6 -1
  106. compass_api_sdk/models/morphogetmarketresponse.py +72 -31
  107. compass_api_sdk/models/morphomarket.py +26 -20
  108. compass_api_sdk/models/morphorepayrequest.py +11 -1
  109. compass_api_sdk/models/morphosupplycollateralrequest.py +11 -1
  110. compass_api_sdk/models/morphovault.py +10 -10
  111. compass_api_sdk/models/morphowithdrawcollateralrequest.py +6 -1
  112. compass_api_sdk/models/morphowithdrawrequest.py +6 -1
  113. compass_api_sdk/models/multicallexecuterequest.py +7 -2
  114. compass_api_sdk/models/odosswapparams.py +9 -30
  115. compass_api_sdk/models/odosswaprequest.py +15 -33
  116. compass_api_sdk/models/oneinchswapparams.py +59 -0
  117. compass_api_sdk/models/openposition.py +7 -7
  118. compass_api_sdk/models/operationtype.py +11 -0
  119. compass_api_sdk/models/pendlegetmarketresponse.py +5 -5
  120. compass_api_sdk/models/pendlemanageliquidityparams.py +2 -15
  121. compass_api_sdk/models/pendlemanageliquidityrequest.py +8 -16
  122. compass_api_sdk/models/pendleredeemyieldrequest.py +6 -1
  123. compass_api_sdk/models/pendletradeptparams.py +2 -15
  124. compass_api_sdk/models/pendletradeptrequest.py +8 -16
  125. compass_api_sdk/models/pendletradeytparams.py +2 -15
  126. compass_api_sdk/models/pendletradeytrequest.py +8 -16
  127. compass_api_sdk/models/permit2typeddata_input.py +46 -0
  128. compass_api_sdk/models/permit2typeddata_output.py +46 -0
  129. compass_api_sdk/models/permitfield.py +20 -0
  130. compass_api_sdk/models/permitmessage.py +39 -0
  131. compass_api_sdk/models/permittransferfrommessage.py +29 -0
  132. compass_api_sdk/models/permittypeddataresponse_input.py +50 -0
  133. compass_api_sdk/models/permittypeddataresponse_output.py +50 -0
  134. compass_api_sdk/models/portfolio.py +5 -5
  135. compass_api_sdk/models/reserve.py +6 -15
  136. compass_api_sdk/models/safetransactionparams.py +78 -0
  137. compass_api_sdk/models/safetransactionresponse.py +28 -0
  138. compass_api_sdk/models/safetxfield.py +20 -0
  139. compass_api_sdk/models/safetxmessage.py +66 -0
  140. compass_api_sdk/models/setallowanceparams.py +3 -16
  141. compass_api_sdk/models/setallowancerequest.py +9 -17
  142. compass_api_sdk/models/skybuyrequest.py +6 -1
  143. compass_api_sdk/models/skydepositrequest.py +7 -2
  144. compass_api_sdk/models/skysellrequest.py +7 -2
  145. compass_api_sdk/models/skywithdrawrequest.py +7 -2
  146. compass_api_sdk/models/sponsorgasrequest.py +71 -0
  147. compass_api_sdk/models/sponsorgasresponse.py +14 -0
  148. compass_api_sdk/models/tokenbalanceresponse.py +5 -15
  149. compass_api_sdk/models/tokenconfig.py +30 -0
  150. compass_api_sdk/models/tokenlistresponse.py +21 -0
  151. compass_api_sdk/models/tokenmarketdata.py +27 -0
  152. compass_api_sdk/models/tokenpermissions.py +20 -0
  153. compass_api_sdk/models/tokentransferparams.py +2 -15
  154. compass_api_sdk/models/tokentransferrequest.py +8 -16
  155. compass_api_sdk/models/uniswapbuyexactlyparams.py +8 -33
  156. compass_api_sdk/models/uniswapbuyexactlyrequest.py +14 -34
  157. compass_api_sdk/models/uniswapincreaseliquidityprovisionrequest.py +6 -1
  158. compass_api_sdk/models/uniswapmintliquidityprovisionparams.py +8 -25
  159. compass_api_sdk/models/uniswapmintliquidityprovisionrequest.py +14 -26
  160. compass_api_sdk/models/uniswappoolpriceresponse.py +8 -25
  161. compass_api_sdk/models/uniswapsellexactlyparams.py +4 -29
  162. compass_api_sdk/models/uniswapsellexactlyrequest.py +10 -30
  163. compass_api_sdk/models/uniswapwithdrawliquidityprovisionrequest.py +6 -1
  164. compass_api_sdk/models/unsignedmulticalltransaction.py +34 -3
  165. compass_api_sdk/models/unsignedtransaction.py +34 -3
  166. compass_api_sdk/models/unwrapwethrequest.py +6 -1
  167. compass_api_sdk/models/useroperation.py +33 -24
  168. compass_api_sdk/models/v1_aave_aave_supported_tokensop.py +1 -1
  169. compass_api_sdk/models/v1_aave_avg_rateop.py +15 -93
  170. compass_api_sdk/models/v1_aave_historical_transactionsop.py +15 -15
  171. compass_api_sdk/models/v1_aave_liquidity_changeop.py +8 -86
  172. compass_api_sdk/models/v1_aave_rateop.py +8 -86
  173. compass_api_sdk/models/v1_aave_reserve_overviewop.py +8 -86
  174. compass_api_sdk/models/v1_aave_std_rateop.py +15 -93
  175. compass_api_sdk/models/v1_aave_token_priceop.py +8 -86
  176. compass_api_sdk/models/v1_aave_user_position_per_tokenop.py +14 -92
  177. compass_api_sdk/models/v1_aave_user_position_summaryop.py +8 -8
  178. compass_api_sdk/models/v1_aerodrome_slipstream_liquidity_provision_positionsop.py +48 -3
  179. compass_api_sdk/models/v1_aerodrome_slipstream_pool_priceop.py +12 -168
  180. compass_api_sdk/models/v1_ethena_vaultop.py +1 -1
  181. compass_api_sdk/models/v1_generic_allowanceop.py +12 -26
  182. compass_api_sdk/models/v1_generic_ensop.py +2 -2
  183. compass_api_sdk/models/v1_generic_portfolioop.py +2 -2
  184. compass_api_sdk/models/v1_morpho_market_positionop.py +3 -3
  185. compass_api_sdk/models/v1_morpho_marketop.py +2 -2
  186. compass_api_sdk/models/v1_morpho_marketsop.py +10 -30
  187. compass_api_sdk/models/v1_morpho_user_positionop.py +2 -2
  188. compass_api_sdk/models/v1_morpho_vaultop.py +8 -8
  189. compass_api_sdk/models/v1_morpho_vaultsop.py +6 -16
  190. compass_api_sdk/models/v1_pendle_marketop.py +8 -8
  191. compass_api_sdk/models/v1_pendle_marketsop.py +1 -1
  192. compass_api_sdk/models/v1_pendle_positionsop.py +2 -2
  193. compass_api_sdk/models/v1_sky_positionop.py +5 -6
  194. compass_api_sdk/models/v1_token_balanceop.py +12 -25
  195. compass_api_sdk/models/{v1_generic_supported_tokensop.py → v1_token_listop.py} +6 -6
  196. compass_api_sdk/models/v1_token_priceop.py +8 -9
  197. compass_api_sdk/models/v1_transaction_bundler_aave_loopop.py +6 -6
  198. compass_api_sdk/models/v1_uniswap_liquidity_provision_in_rangeop.py +2 -2
  199. compass_api_sdk/models/v1_uniswap_liquidity_provision_positionsop.py +2 -2
  200. compass_api_sdk/models/v1_uniswap_pool_priceop.py +12 -168
  201. compass_api_sdk/models/v1_uniswap_quote_buy_exactlyop.py +20 -176
  202. compass_api_sdk/models/v1_uniswap_quote_sell_exactlyop.py +20 -176
  203. compass_api_sdk/models/v1_vaults_vaultop.py +8 -8
  204. compass_api_sdk/models/v1_wildcat_marketop.py +82 -0
  205. compass_api_sdk/models/v2_cctp_mintop.py +47 -0
  206. compass_api_sdk/models/v2_earn_aave_marketsop.py +57 -0
  207. compass_api_sdk/models/v2_earn_positionsop.py +56 -0
  208. compass_api_sdk/models/v2_earn_vaultsop.py +105 -0
  209. compass_api_sdk/models/v2bundlerequest.py +33 -0
  210. compass_api_sdk/models/v2bundleresponse.py +67 -0
  211. compass_api_sdk/models/v2useroperation.py +37 -0
  212. compass_api_sdk/models/vault.py +14 -14
  213. compass_api_sdk/models/vaultdepositrequest.py +6 -1
  214. compass_api_sdk/models/vaultgetvaultresponse.py +5 -5
  215. compass_api_sdk/models/vaultinfo.py +129 -0
  216. compass_api_sdk/models/vaultsresponse.py +30 -0
  217. compass_api_sdk/models/vaultvenue.py +27 -0
  218. compass_api_sdk/models/vaultwithdrawrequest.py +6 -1
  219. compass_api_sdk/models/wildcatgetmarketresponse.py +151 -0
  220. compass_api_sdk/models/{redeemunderlying.py → withdraw.py} +2 -2
  221. compass_api_sdk/models/wrapethrequest.py +6 -1
  222. compass_api_sdk/morpho.py +126 -78
  223. compass_api_sdk/pendle.py +68 -44
  224. compass_api_sdk/sdk.py +18 -11
  225. compass_api_sdk/sky.py +62 -38
  226. compass_api_sdk/smart_account.py +10 -2
  227. compass_api_sdk/swap.py +22 -22
  228. compass_api_sdk/{token_sdk.py → token.py} +511 -103
  229. compass_api_sdk/transaction_bundler.py +46 -16
  230. compass_api_sdk/uniswap_v3.py +152 -114
  231. compass_api_sdk/universal.py +44 -606
  232. compass_api_sdk/utils/annotations.py +32 -8
  233. compass_api_sdk/utils/forms.py +21 -10
  234. compass_api_sdk/utils/queryparams.py +14 -2
  235. compass_api_sdk/utils/retries.py +69 -5
  236. compass_api_sdk/utils/unmarshal_json_response.py +15 -1
  237. compass_api_sdk/wildcat.py +208 -0
  238. compass_api_sdk-2.0.21rc1.dist-info/METADATA +623 -0
  239. compass_api_sdk-2.0.21rc1.dist-info/RECORD +346 -0
  240. {compass_api_sdk-1.1.1.dist-info → compass_api_sdk-2.0.21rc1.dist-info}/WHEEL +1 -1
  241. compass_api_sdk/models/aerodromeposition.py +0 -70
  242. compass_api_sdk/models/token_enum.py +0 -81
  243. compass_api_sdk/models/tokenaddressresponse.py +0 -15
  244. compass_api_sdk/models/tokeninfo.py +0 -17
  245. compass_api_sdk/models/v1_token_addressop.py +0 -109
  246. compass_api_sdk/models/vaultposition.py +0 -24
  247. compass_api_sdk-1.1.1.dist-info/METADATA +0 -592
  248. compass_api_sdk-1.1.1.dist-info/RECORD +0 -275
@@ -12,8 +12,9 @@ class AerodromeSlipstream(BaseSDK):
12
12
  def aerodrome_slipstream_liquidity_provision_positions(
13
13
  self,
14
14
  *,
15
- chain: models.V1AerodromeSlipstreamLiquidityProvisionPositionsChain = models.V1AerodromeSlipstreamLiquidityProvisionPositionsChain.BASE,
16
- user: Optional[str] = "0x29F20a192328eF1aD35e1564aBFf4Be9C5ce5f7B",
15
+ chain: models.V1AerodromeSlipstreamLiquidityProvisionPositionsChain,
16
+ user: Optional[str] = None,
17
+ pool: OptionalNullable[str] = UNSET,
17
18
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
18
19
  server_url: Optional[str] = None,
19
20
  timeout_ms: Optional[int] = None,
@@ -33,6 +34,7 @@ class AerodromeSlipstream(BaseSDK):
33
34
 
34
35
  :param chain:
35
36
  :param user: The user to get positions for.
37
+ :param pool: Optional pool address to filter positions by. If provided, only positions for this pool will be returned.
36
38
  :param retries: Override the default retry configuration for this method
37
39
  :param server_url: Override the default server URL for this method
38
40
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -51,6 +53,7 @@ class AerodromeSlipstream(BaseSDK):
51
53
  request = models.V1AerodromeSlipstreamLiquidityProvisionPositionsRequest(
52
54
  chain=chain,
53
55
  user=user,
56
+ pool=pool,
54
57
  )
55
58
 
56
59
  req = self._build_request(
@@ -66,6 +69,7 @@ class AerodromeSlipstream(BaseSDK):
66
69
  accept_header_value="application/json",
67
70
  http_headers=http_headers,
68
71
  security=self.sdk_configuration.security,
72
+ allow_empty_value=None,
69
73
  timeout_ms=timeout_ms,
70
74
  )
71
75
 
@@ -82,7 +86,7 @@ class AerodromeSlipstream(BaseSDK):
82
86
  config=self.sdk_configuration,
83
87
  base_url=base_url or "",
84
88
  operation_id="v1_aerodrome_slipstream_liquidity_provision_positions",
85
- oauth2_scopes=[],
89
+ oauth2_scopes=None,
86
90
  security_source=self.sdk_configuration.security,
87
91
  ),
88
92
  request=req,
@@ -112,8 +116,9 @@ class AerodromeSlipstream(BaseSDK):
112
116
  async def aerodrome_slipstream_liquidity_provision_positions_async(
113
117
  self,
114
118
  *,
115
- chain: models.V1AerodromeSlipstreamLiquidityProvisionPositionsChain = models.V1AerodromeSlipstreamLiquidityProvisionPositionsChain.BASE,
116
- user: Optional[str] = "0x29F20a192328eF1aD35e1564aBFf4Be9C5ce5f7B",
119
+ chain: models.V1AerodromeSlipstreamLiquidityProvisionPositionsChain,
120
+ user: Optional[str] = None,
121
+ pool: OptionalNullable[str] = UNSET,
117
122
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
118
123
  server_url: Optional[str] = None,
119
124
  timeout_ms: Optional[int] = None,
@@ -133,6 +138,7 @@ class AerodromeSlipstream(BaseSDK):
133
138
 
134
139
  :param chain:
135
140
  :param user: The user to get positions for.
141
+ :param pool: Optional pool address to filter positions by. If provided, only positions for this pool will be returned.
136
142
  :param retries: Override the default retry configuration for this method
137
143
  :param server_url: Override the default server URL for this method
138
144
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -151,6 +157,7 @@ class AerodromeSlipstream(BaseSDK):
151
157
  request = models.V1AerodromeSlipstreamLiquidityProvisionPositionsRequest(
152
158
  chain=chain,
153
159
  user=user,
160
+ pool=pool,
154
161
  )
155
162
 
156
163
  req = self._build_request_async(
@@ -166,6 +173,7 @@ class AerodromeSlipstream(BaseSDK):
166
173
  accept_header_value="application/json",
167
174
  http_headers=http_headers,
168
175
  security=self.sdk_configuration.security,
176
+ allow_empty_value=None,
169
177
  timeout_ms=timeout_ms,
170
178
  )
171
179
 
@@ -182,7 +190,7 @@ class AerodromeSlipstream(BaseSDK):
182
190
  config=self.sdk_configuration,
183
191
  base_url=base_url or "",
184
192
  operation_id="v1_aerodrome_slipstream_liquidity_provision_positions",
185
- oauth2_scopes=[],
193
+ oauth2_scopes=None,
186
194
  security_source=self.sdk_configuration.security,
187
195
  ),
188
196
  request=req,
@@ -212,10 +220,10 @@ class AerodromeSlipstream(BaseSDK):
212
220
  def aerodrome_slipstream_pool_price(
213
221
  self,
214
222
  *,
215
- chain: models.V1AerodromeSlipstreamPoolPriceChain = models.V1AerodromeSlipstreamPoolPriceChain.BASE,
216
- token_in: models.V1AerodromeSlipstreamPoolPriceTokenInToken = models.V1AerodromeSlipstreamPoolPriceTokenInToken.USDC,
217
- token_out: models.V1AerodromeSlipstreamPoolPriceTokenOutToken = models.V1AerodromeSlipstreamPoolPriceTokenOutToken.WETH,
218
- tick_spacing: Optional[int] = 100,
223
+ chain: models.V1AerodromeSlipstreamPoolPriceChain,
224
+ token_in: str,
225
+ token_out: str,
226
+ tick_spacing: Optional[int] = None,
219
227
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
220
228
  server_url: Optional[str] = None,
221
229
  timeout_ms: Optional[int] = None,
@@ -231,8 +239,8 @@ class AerodromeSlipstream(BaseSDK):
231
239
  the quote endpoint.
232
240
 
233
241
  :param chain:
234
- :param token_in: The symbol of a token in the pool.
235
- :param token_out: The symbol of a token in the pool.
242
+ :param token_in: The symbol or address of a token in the pool.
243
+ :param token_out: The symbol or address of a token in the pool.
236
244
  :param tick_spacing: The tick spacing of the pool
237
245
  :param retries: Override the default retry configuration for this method
238
246
  :param server_url: Override the default server URL for this method
@@ -269,6 +277,7 @@ class AerodromeSlipstream(BaseSDK):
269
277
  accept_header_value="application/json",
270
278
  http_headers=http_headers,
271
279
  security=self.sdk_configuration.security,
280
+ allow_empty_value=None,
272
281
  timeout_ms=timeout_ms,
273
282
  )
274
283
 
@@ -285,7 +294,7 @@ class AerodromeSlipstream(BaseSDK):
285
294
  config=self.sdk_configuration,
286
295
  base_url=base_url or "",
287
296
  operation_id="v1_aerodrome_slipstream_pool_price",
288
- oauth2_scopes=[],
297
+ oauth2_scopes=None,
289
298
  security_source=self.sdk_configuration.security,
290
299
  ),
291
300
  request=req,
@@ -315,10 +324,10 @@ class AerodromeSlipstream(BaseSDK):
315
324
  async def aerodrome_slipstream_pool_price_async(
316
325
  self,
317
326
  *,
318
- chain: models.V1AerodromeSlipstreamPoolPriceChain = models.V1AerodromeSlipstreamPoolPriceChain.BASE,
319
- token_in: models.V1AerodromeSlipstreamPoolPriceTokenInToken = models.V1AerodromeSlipstreamPoolPriceTokenInToken.USDC,
320
- token_out: models.V1AerodromeSlipstreamPoolPriceTokenOutToken = models.V1AerodromeSlipstreamPoolPriceTokenOutToken.WETH,
321
- tick_spacing: Optional[int] = 100,
327
+ chain: models.V1AerodromeSlipstreamPoolPriceChain,
328
+ token_in: str,
329
+ token_out: str,
330
+ tick_spacing: Optional[int] = None,
322
331
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
323
332
  server_url: Optional[str] = None,
324
333
  timeout_ms: Optional[int] = None,
@@ -334,8 +343,8 @@ class AerodromeSlipstream(BaseSDK):
334
343
  the quote endpoint.
335
344
 
336
345
  :param chain:
337
- :param token_in: The symbol of a token in the pool.
338
- :param token_out: The symbol of a token in the pool.
346
+ :param token_in: The symbol or address of a token in the pool.
347
+ :param token_out: The symbol or address of a token in the pool.
339
348
  :param tick_spacing: The tick spacing of the pool
340
349
  :param retries: Override the default retry configuration for this method
341
350
  :param server_url: Override the default server URL for this method
@@ -372,6 +381,7 @@ class AerodromeSlipstream(BaseSDK):
372
381
  accept_header_value="application/json",
373
382
  http_headers=http_headers,
374
383
  security=self.sdk_configuration.security,
384
+ allow_empty_value=None,
375
385
  timeout_ms=timeout_ms,
376
386
  )
377
387
 
@@ -388,7 +398,7 @@ class AerodromeSlipstream(BaseSDK):
388
398
  config=self.sdk_configuration,
389
399
  base_url=base_url or "",
390
400
  operation_id="v1_aerodrome_slipstream_pool_price",
391
- oauth2_scopes=[],
401
+ oauth2_scopes=None,
392
402
  security_source=self.sdk_configuration.security,
393
403
  ),
394
404
  request=req,
@@ -418,8 +428,8 @@ class AerodromeSlipstream(BaseSDK):
418
428
  def aerodrome_slipstream_swap_sell_exactly(
419
429
  self,
420
430
  *,
421
- token_in: models.TokenEnum,
422
- token_out: models.TokenEnum,
431
+ token_in: str,
432
+ token_out: str,
423
433
  tick_spacing: int,
424
434
  amount_in: Union[
425
435
  models.AerodromeSlipstreamSellExactlyRequestAmountIn,
@@ -433,6 +443,7 @@ class AerodromeSlipstream(BaseSDK):
433
443
  models.AerodromeSlipstreamSellExactlyRequestAmountOutMinimumTypedDict,
434
444
  ]
435
445
  ] = None,
446
+ estimate_gas: Optional[bool] = None,
436
447
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
437
448
  server_url: Optional[str] = None,
438
449
  timeout_ms: Optional[int] = None,
@@ -458,13 +469,14 @@ class AerodromeSlipstream(BaseSDK):
458
469
  </Info>
459
470
 
460
471
 
461
- :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.
462
- :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.
472
+ :param token_in: The symbol or address of the token to swap from.
473
+ :param token_out: The symbol or address of the token to swap to.
463
474
  :param tick_spacing: The tick spacing of the pool
464
475
  :param amount_in: The amount of the token to swap from
465
476
  :param chain:
466
477
  :param sender: The address of the transaction sender.
467
478
  :param amount_out_minimum: The minimum amount of the token to swap to, defaults to 0
479
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
468
480
  :param retries: Override the default retry configuration for this method
469
481
  :param server_url: Override the default server URL for this method
470
482
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -488,6 +500,7 @@ class AerodromeSlipstream(BaseSDK):
488
500
  amount_out_minimum=amount_out_minimum,
489
501
  chain=chain,
490
502
  sender=sender,
503
+ estimate_gas=estimate_gas,
491
504
  )
492
505
 
493
506
  req = self._build_request(
@@ -510,6 +523,7 @@ class AerodromeSlipstream(BaseSDK):
510
523
  "json",
511
524
  models.AerodromeSlipstreamSellExactlyRequest,
512
525
  ),
526
+ allow_empty_value=None,
513
527
  timeout_ms=timeout_ms,
514
528
  )
515
529
 
@@ -526,7 +540,7 @@ class AerodromeSlipstream(BaseSDK):
526
540
  config=self.sdk_configuration,
527
541
  base_url=base_url or "",
528
542
  operation_id="v1_aerodrome_slipstream_swap_sell_exactly",
529
- oauth2_scopes=[],
543
+ oauth2_scopes=None,
530
544
  security_source=self.sdk_configuration.security,
531
545
  ),
532
546
  request=req,
@@ -554,8 +568,8 @@ class AerodromeSlipstream(BaseSDK):
554
568
  async def aerodrome_slipstream_swap_sell_exactly_async(
555
569
  self,
556
570
  *,
557
- token_in: models.TokenEnum,
558
- token_out: models.TokenEnum,
571
+ token_in: str,
572
+ token_out: str,
559
573
  tick_spacing: int,
560
574
  amount_in: Union[
561
575
  models.AerodromeSlipstreamSellExactlyRequestAmountIn,
@@ -569,6 +583,7 @@ class AerodromeSlipstream(BaseSDK):
569
583
  models.AerodromeSlipstreamSellExactlyRequestAmountOutMinimumTypedDict,
570
584
  ]
571
585
  ] = None,
586
+ estimate_gas: Optional[bool] = None,
572
587
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
573
588
  server_url: Optional[str] = None,
574
589
  timeout_ms: Optional[int] = None,
@@ -594,13 +609,14 @@ class AerodromeSlipstream(BaseSDK):
594
609
  </Info>
595
610
 
596
611
 
597
- :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.
598
- :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.
612
+ :param token_in: The symbol or address of the token to swap from.
613
+ :param token_out: The symbol or address of the token to swap to.
599
614
  :param tick_spacing: The tick spacing of the pool
600
615
  :param amount_in: The amount of the token to swap from
601
616
  :param chain:
602
617
  :param sender: The address of the transaction sender.
603
618
  :param amount_out_minimum: The minimum amount of the token to swap to, defaults to 0
619
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
604
620
  :param retries: Override the default retry configuration for this method
605
621
  :param server_url: Override the default server URL for this method
606
622
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -624,6 +640,7 @@ class AerodromeSlipstream(BaseSDK):
624
640
  amount_out_minimum=amount_out_minimum,
625
641
  chain=chain,
626
642
  sender=sender,
643
+ estimate_gas=estimate_gas,
627
644
  )
628
645
 
629
646
  req = self._build_request_async(
@@ -646,6 +663,7 @@ class AerodromeSlipstream(BaseSDK):
646
663
  "json",
647
664
  models.AerodromeSlipstreamSellExactlyRequest,
648
665
  ),
666
+ allow_empty_value=None,
649
667
  timeout_ms=timeout_ms,
650
668
  )
651
669
 
@@ -662,7 +680,7 @@ class AerodromeSlipstream(BaseSDK):
662
680
  config=self.sdk_configuration,
663
681
  base_url=base_url or "",
664
682
  operation_id="v1_aerodrome_slipstream_swap_sell_exactly",
665
- oauth2_scopes=[],
683
+ oauth2_scopes=None,
666
684
  security_source=self.sdk_configuration.security,
667
685
  ),
668
686
  request=req,
@@ -690,8 +708,8 @@ class AerodromeSlipstream(BaseSDK):
690
708
  def aerodrome_slipstream_swap_buy_exactly(
691
709
  self,
692
710
  *,
693
- token_in: models.TokenEnum,
694
- token_out: models.TokenEnum,
711
+ token_in: str,
712
+ token_out: str,
695
713
  tick_spacing: int,
696
714
  amount_out: Union[
697
715
  models.AerodromeSlipstreamBuyExactlyRequestAmountOut,
@@ -703,6 +721,7 @@ class AerodromeSlipstream(BaseSDK):
703
721
  ],
704
722
  chain: models.AerodromeSlipstreamBuyExactlyRequestChain,
705
723
  sender: str,
724
+ estimate_gas: Optional[bool] = None,
706
725
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
707
726
  server_url: Optional[str] = None,
708
727
  timeout_ms: Optional[int] = None,
@@ -729,13 +748,14 @@ class AerodromeSlipstream(BaseSDK):
729
748
  </Info>
730
749
 
731
750
 
732
- :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.
733
- :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.
751
+ :param token_in: The symbol of the token to swap from.
752
+ :param token_out: The symbol of the token to swap to.
734
753
  :param tick_spacing: The tick spacing of the pool
735
754
  :param amount_out: The amount of the token to swap to
736
755
  :param amount_in_maximum: The maximum amount of the token to swap from
737
756
  :param chain:
738
757
  :param sender: The address of the transaction sender.
758
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
739
759
  :param retries: Override the default retry configuration for this method
740
760
  :param server_url: Override the default server URL for this method
741
761
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -759,6 +779,7 @@ class AerodromeSlipstream(BaseSDK):
759
779
  amount_in_maximum=amount_in_maximum,
760
780
  chain=chain,
761
781
  sender=sender,
782
+ estimate_gas=estimate_gas,
762
783
  )
763
784
 
764
785
  req = self._build_request(
@@ -781,6 +802,7 @@ class AerodromeSlipstream(BaseSDK):
781
802
  "json",
782
803
  models.AerodromeSlipstreamBuyExactlyRequest,
783
804
  ),
805
+ allow_empty_value=None,
784
806
  timeout_ms=timeout_ms,
785
807
  )
786
808
 
@@ -797,7 +819,7 @@ class AerodromeSlipstream(BaseSDK):
797
819
  config=self.sdk_configuration,
798
820
  base_url=base_url or "",
799
821
  operation_id="v1_aerodrome_slipstream_swap_buy_exactly",
800
- oauth2_scopes=[],
822
+ oauth2_scopes=None,
801
823
  security_source=self.sdk_configuration.security,
802
824
  ),
803
825
  request=req,
@@ -825,8 +847,8 @@ class AerodromeSlipstream(BaseSDK):
825
847
  async def aerodrome_slipstream_swap_buy_exactly_async(
826
848
  self,
827
849
  *,
828
- token_in: models.TokenEnum,
829
- token_out: models.TokenEnum,
850
+ token_in: str,
851
+ token_out: str,
830
852
  tick_spacing: int,
831
853
  amount_out: Union[
832
854
  models.AerodromeSlipstreamBuyExactlyRequestAmountOut,
@@ -838,6 +860,7 @@ class AerodromeSlipstream(BaseSDK):
838
860
  ],
839
861
  chain: models.AerodromeSlipstreamBuyExactlyRequestChain,
840
862
  sender: str,
863
+ estimate_gas: Optional[bool] = None,
841
864
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
842
865
  server_url: Optional[str] = None,
843
866
  timeout_ms: Optional[int] = None,
@@ -864,13 +887,14 @@ class AerodromeSlipstream(BaseSDK):
864
887
  </Info>
865
888
 
866
889
 
867
- :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.
868
- :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.
890
+ :param token_in: The symbol of the token to swap from.
891
+ :param token_out: The symbol of the token to swap to.
869
892
  :param tick_spacing: The tick spacing of the pool
870
893
  :param amount_out: The amount of the token to swap to
871
894
  :param amount_in_maximum: The maximum amount of the token to swap from
872
895
  :param chain:
873
896
  :param sender: The address of the transaction sender.
897
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
874
898
  :param retries: Override the default retry configuration for this method
875
899
  :param server_url: Override the default server URL for this method
876
900
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -894,6 +918,7 @@ class AerodromeSlipstream(BaseSDK):
894
918
  amount_in_maximum=amount_in_maximum,
895
919
  chain=chain,
896
920
  sender=sender,
921
+ estimate_gas=estimate_gas,
897
922
  )
898
923
 
899
924
  req = self._build_request_async(
@@ -916,6 +941,7 @@ class AerodromeSlipstream(BaseSDK):
916
941
  "json",
917
942
  models.AerodromeSlipstreamBuyExactlyRequest,
918
943
  ),
944
+ allow_empty_value=None,
919
945
  timeout_ms=timeout_ms,
920
946
  )
921
947
 
@@ -932,7 +958,7 @@ class AerodromeSlipstream(BaseSDK):
932
958
  config=self.sdk_configuration,
933
959
  base_url=base_url or "",
934
960
  operation_id="v1_aerodrome_slipstream_swap_buy_exactly",
935
- oauth2_scopes=[],
961
+ oauth2_scopes=None,
936
962
  security_source=self.sdk_configuration.security,
937
963
  ),
938
964
  request=req,
@@ -960,8 +986,8 @@ class AerodromeSlipstream(BaseSDK):
960
986
  def aerodrome_slipstream_liquidity_provision_mint(
961
987
  self,
962
988
  *,
963
- token0: models.TokenEnum,
964
- token1: models.TokenEnum,
989
+ token0: str,
990
+ token1: str,
965
991
  tick_spacing: int,
966
992
  tick_lower: int,
967
993
  tick_upper: int,
@@ -984,6 +1010,7 @@ class AerodromeSlipstream(BaseSDK):
984
1010
  chain: models.AerodromeSlipstreamMintLiquidityProvisionRequestChain,
985
1011
  sender: str,
986
1012
  recipient: OptionalNullable[str] = UNSET,
1013
+ estimate_gas: Optional[bool] = None,
987
1014
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
988
1015
  server_url: Optional[str] = None,
989
1016
  timeout_ms: Optional[int] = None,
@@ -1009,8 +1036,8 @@ class AerodromeSlipstream(BaseSDK):
1009
1036
  </Info>
1010
1037
 
1011
1038
 
1012
- :param token0: 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.
1013
- :param token1: 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.
1039
+ :param token0: The symbol or address of the first token in the pair.
1040
+ :param token1: The symbol or address of the second token in the pair.
1014
1041
  :param tick_spacing: The tick spacing of the pool
1015
1042
  :param tick_lower: The lower tick of the range to mint the position in
1016
1043
  :param tick_upper: The upper tick of the range to mint the position in
@@ -1021,6 +1048,7 @@ class AerodromeSlipstream(BaseSDK):
1021
1048
  :param chain:
1022
1049
  :param sender: The address of the transaction sender.
1023
1050
  :param recipient: The address that will receive the LP tokens
1051
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
1024
1052
  :param retries: Override the default retry configuration for this method
1025
1053
  :param server_url: Override the default server URL for this method
1026
1054
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1049,6 +1077,7 @@ class AerodromeSlipstream(BaseSDK):
1049
1077
  recipient=recipient,
1050
1078
  chain=chain,
1051
1079
  sender=sender,
1080
+ estimate_gas=estimate_gas,
1052
1081
  )
1053
1082
 
1054
1083
  req = self._build_request(
@@ -1071,6 +1100,7 @@ class AerodromeSlipstream(BaseSDK):
1071
1100
  "json",
1072
1101
  models.AerodromeSlipstreamMintLiquidityProvisionRequest,
1073
1102
  ),
1103
+ allow_empty_value=None,
1074
1104
  timeout_ms=timeout_ms,
1075
1105
  )
1076
1106
 
@@ -1087,7 +1117,7 @@ class AerodromeSlipstream(BaseSDK):
1087
1117
  config=self.sdk_configuration,
1088
1118
  base_url=base_url or "",
1089
1119
  operation_id="v1_aerodrome_slipstream_liquidity_provision_mint",
1090
- oauth2_scopes=[],
1120
+ oauth2_scopes=None,
1091
1121
  security_source=self.sdk_configuration.security,
1092
1122
  ),
1093
1123
  request=req,
@@ -1115,8 +1145,8 @@ class AerodromeSlipstream(BaseSDK):
1115
1145
  async def aerodrome_slipstream_liquidity_provision_mint_async(
1116
1146
  self,
1117
1147
  *,
1118
- token0: models.TokenEnum,
1119
- token1: models.TokenEnum,
1148
+ token0: str,
1149
+ token1: str,
1120
1150
  tick_spacing: int,
1121
1151
  tick_lower: int,
1122
1152
  tick_upper: int,
@@ -1139,6 +1169,7 @@ class AerodromeSlipstream(BaseSDK):
1139
1169
  chain: models.AerodromeSlipstreamMintLiquidityProvisionRequestChain,
1140
1170
  sender: str,
1141
1171
  recipient: OptionalNullable[str] = UNSET,
1172
+ estimate_gas: Optional[bool] = None,
1142
1173
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1143
1174
  server_url: Optional[str] = None,
1144
1175
  timeout_ms: Optional[int] = None,
@@ -1164,8 +1195,8 @@ class AerodromeSlipstream(BaseSDK):
1164
1195
  </Info>
1165
1196
 
1166
1197
 
1167
- :param token0: 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.
1168
- :param token1: 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.
1198
+ :param token0: The symbol or address of the first token in the pair.
1199
+ :param token1: The symbol or address of the second token in the pair.
1169
1200
  :param tick_spacing: The tick spacing of the pool
1170
1201
  :param tick_lower: The lower tick of the range to mint the position in
1171
1202
  :param tick_upper: The upper tick of the range to mint the position in
@@ -1176,6 +1207,7 @@ class AerodromeSlipstream(BaseSDK):
1176
1207
  :param chain:
1177
1208
  :param sender: The address of the transaction sender.
1178
1209
  :param recipient: The address that will receive the LP tokens
1210
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
1179
1211
  :param retries: Override the default retry configuration for this method
1180
1212
  :param server_url: Override the default server URL for this method
1181
1213
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1204,6 +1236,7 @@ class AerodromeSlipstream(BaseSDK):
1204
1236
  recipient=recipient,
1205
1237
  chain=chain,
1206
1238
  sender=sender,
1239
+ estimate_gas=estimate_gas,
1207
1240
  )
1208
1241
 
1209
1242
  req = self._build_request_async(
@@ -1226,6 +1259,7 @@ class AerodromeSlipstream(BaseSDK):
1226
1259
  "json",
1227
1260
  models.AerodromeSlipstreamMintLiquidityProvisionRequest,
1228
1261
  ),
1262
+ allow_empty_value=None,
1229
1263
  timeout_ms=timeout_ms,
1230
1264
  )
1231
1265
 
@@ -1242,7 +1276,7 @@ class AerodromeSlipstream(BaseSDK):
1242
1276
  config=self.sdk_configuration,
1243
1277
  base_url=base_url or "",
1244
1278
  operation_id="v1_aerodrome_slipstream_liquidity_provision_mint",
1245
- oauth2_scopes=[],
1279
+ oauth2_scopes=None,
1246
1280
  security_source=self.sdk_configuration.security,
1247
1281
  ),
1248
1282
  request=req,
@@ -1289,6 +1323,7 @@ class AerodromeSlipstream(BaseSDK):
1289
1323
  ],
1290
1324
  chain: models.AerodromeSlipstreamIncreaseLiquidityProvisionRequestChain,
1291
1325
  sender: str,
1326
+ estimate_gas: Optional[bool] = None,
1292
1327
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1293
1328
  server_url: Optional[str] = None,
1294
1329
  timeout_ms: Optional[int] = None,
@@ -1323,6 +1358,7 @@ class AerodromeSlipstream(BaseSDK):
1323
1358
  :param amount1_min: The minimum amount of the second token to deposit
1324
1359
  :param chain:
1325
1360
  :param sender: The address of the transaction sender.
1361
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
1326
1362
  :param retries: Override the default retry configuration for this method
1327
1363
  :param server_url: Override the default server URL for this method
1328
1364
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1346,6 +1382,7 @@ class AerodromeSlipstream(BaseSDK):
1346
1382
  amount1_min=amount1_min,
1347
1383
  chain=chain,
1348
1384
  sender=sender,
1385
+ estimate_gas=estimate_gas,
1349
1386
  )
1350
1387
 
1351
1388
  req = self._build_request(
@@ -1368,6 +1405,7 @@ class AerodromeSlipstream(BaseSDK):
1368
1405
  "json",
1369
1406
  models.AerodromeSlipstreamIncreaseLiquidityProvisionRequest,
1370
1407
  ),
1408
+ allow_empty_value=None,
1371
1409
  timeout_ms=timeout_ms,
1372
1410
  )
1373
1411
 
@@ -1384,7 +1422,7 @@ class AerodromeSlipstream(BaseSDK):
1384
1422
  config=self.sdk_configuration,
1385
1423
  base_url=base_url or "",
1386
1424
  operation_id="v1_aerodrome_slipstream_liquidity_provision_increase",
1387
- oauth2_scopes=[],
1425
+ oauth2_scopes=None,
1388
1426
  security_source=self.sdk_configuration.security,
1389
1427
  ),
1390
1428
  request=req,
@@ -1431,6 +1469,7 @@ class AerodromeSlipstream(BaseSDK):
1431
1469
  ],
1432
1470
  chain: models.AerodromeSlipstreamIncreaseLiquidityProvisionRequestChain,
1433
1471
  sender: str,
1472
+ estimate_gas: Optional[bool] = None,
1434
1473
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1435
1474
  server_url: Optional[str] = None,
1436
1475
  timeout_ms: Optional[int] = None,
@@ -1465,6 +1504,7 @@ class AerodromeSlipstream(BaseSDK):
1465
1504
  :param amount1_min: The minimum amount of the second token to deposit
1466
1505
  :param chain:
1467
1506
  :param sender: The address of the transaction sender.
1507
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
1468
1508
  :param retries: Override the default retry configuration for this method
1469
1509
  :param server_url: Override the default server URL for this method
1470
1510
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1488,6 +1528,7 @@ class AerodromeSlipstream(BaseSDK):
1488
1528
  amount1_min=amount1_min,
1489
1529
  chain=chain,
1490
1530
  sender=sender,
1531
+ estimate_gas=estimate_gas,
1491
1532
  )
1492
1533
 
1493
1534
  req = self._build_request_async(
@@ -1510,6 +1551,7 @@ class AerodromeSlipstream(BaseSDK):
1510
1551
  "json",
1511
1552
  models.AerodromeSlipstreamIncreaseLiquidityProvisionRequest,
1512
1553
  ),
1554
+ allow_empty_value=None,
1513
1555
  timeout_ms=timeout_ms,
1514
1556
  )
1515
1557
 
@@ -1526,7 +1568,7 @@ class AerodromeSlipstream(BaseSDK):
1526
1568
  config=self.sdk_configuration,
1527
1569
  base_url=base_url or "",
1528
1570
  operation_id="v1_aerodrome_slipstream_liquidity_provision_increase",
1529
- oauth2_scopes=[],
1571
+ oauth2_scopes=None,
1530
1572
  security_source=self.sdk_configuration.security,
1531
1573
  ),
1532
1574
  request=req,
@@ -1561,6 +1603,7 @@ class AerodromeSlipstream(BaseSDK):
1561
1603
  ],
1562
1604
  chain: models.AerodromeSlipstreamWithdrawLiquidityProvisionRequestChain,
1563
1605
  sender: str,
1606
+ estimate_gas: Optional[bool] = None,
1564
1607
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1565
1608
  server_url: Optional[str] = None,
1566
1609
  timeout_ms: Optional[int] = None,
@@ -1592,6 +1635,7 @@ class AerodromeSlipstream(BaseSDK):
1592
1635
  :param percentage_for_withdrawal: How much liquidity to take out in percentage.
1593
1636
  :param chain:
1594
1637
  :param sender: The address of the transaction sender.
1638
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
1595
1639
  :param retries: Override the default retry configuration for this method
1596
1640
  :param server_url: Override the default server URL for this method
1597
1641
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1612,6 +1656,7 @@ class AerodromeSlipstream(BaseSDK):
1612
1656
  percentage_for_withdrawal=percentage_for_withdrawal,
1613
1657
  chain=chain,
1614
1658
  sender=sender,
1659
+ estimate_gas=estimate_gas,
1615
1660
  )
1616
1661
 
1617
1662
  req = self._build_request(
@@ -1634,6 +1679,7 @@ class AerodromeSlipstream(BaseSDK):
1634
1679
  "json",
1635
1680
  models.AerodromeSlipstreamWithdrawLiquidityProvisionRequest,
1636
1681
  ),
1682
+ allow_empty_value=None,
1637
1683
  timeout_ms=timeout_ms,
1638
1684
  )
1639
1685
 
@@ -1650,7 +1696,7 @@ class AerodromeSlipstream(BaseSDK):
1650
1696
  config=self.sdk_configuration,
1651
1697
  base_url=base_url or "",
1652
1698
  operation_id="v1_aerodrome_slipstream_liquidity_provision_withdraw",
1653
- oauth2_scopes=[],
1699
+ oauth2_scopes=None,
1654
1700
  security_source=self.sdk_configuration.security,
1655
1701
  ),
1656
1702
  request=req,
@@ -1685,6 +1731,7 @@ class AerodromeSlipstream(BaseSDK):
1685
1731
  ],
1686
1732
  chain: models.AerodromeSlipstreamWithdrawLiquidityProvisionRequestChain,
1687
1733
  sender: str,
1734
+ estimate_gas: Optional[bool] = None,
1688
1735
  retries: OptionalNullable[utils.RetryConfig] = UNSET,
1689
1736
  server_url: Optional[str] = None,
1690
1737
  timeout_ms: Optional[int] = None,
@@ -1716,6 +1763,7 @@ class AerodromeSlipstream(BaseSDK):
1716
1763
  :param percentage_for_withdrawal: How much liquidity to take out in percentage.
1717
1764
  :param chain:
1718
1765
  :param sender: The address of the transaction sender.
1766
+ :param estimate_gas: Determines whether to estimate gas costs for transactions, also verifying that the transaction can be successfully executed.
1719
1767
  :param retries: Override the default retry configuration for this method
1720
1768
  :param server_url: Override the default server URL for this method
1721
1769
  :param timeout_ms: Override the default request timeout configuration for this method in milliseconds
@@ -1736,6 +1784,7 @@ class AerodromeSlipstream(BaseSDK):
1736
1784
  percentage_for_withdrawal=percentage_for_withdrawal,
1737
1785
  chain=chain,
1738
1786
  sender=sender,
1787
+ estimate_gas=estimate_gas,
1739
1788
  )
1740
1789
 
1741
1790
  req = self._build_request_async(
@@ -1758,6 +1807,7 @@ class AerodromeSlipstream(BaseSDK):
1758
1807
  "json",
1759
1808
  models.AerodromeSlipstreamWithdrawLiquidityProvisionRequest,
1760
1809
  ),
1810
+ allow_empty_value=None,
1761
1811
  timeout_ms=timeout_ms,
1762
1812
  )
1763
1813
 
@@ -1774,7 +1824,7 @@ class AerodromeSlipstream(BaseSDK):
1774
1824
  config=self.sdk_configuration,
1775
1825
  base_url=base_url or "",
1776
1826
  operation_id="v1_aerodrome_slipstream_liquidity_provision_withdraw",
1777
- oauth2_scopes=[],
1827
+ oauth2_scopes=None,
1778
1828
  security_source=self.sdk_configuration.security,
1779
1829
  ),
1780
1830
  request=req,