compass_api_sdk 0.9.50__py3-none-any.whl → 0.9.52__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of compass_api_sdk might be problematic. Click here for more details.
- compass_api_sdk/_version.py +3 -3
- compass_api_sdk/aave_v3.py +314 -260
- compass_api_sdk/aerodrome_slipstream.py +186 -184
- compass_api_sdk/erc_4626_vaults.py +82 -58
- compass_api_sdk/errors/__init__.py +3 -2
- compass_api_sdk/models/__init__.py +1742 -1516
- compass_api_sdk/models/aavereserveoverviewresponse.py +34 -3
- compass_api_sdk/models/{chain.py → compass_api_backend_config_chain_chain.py} +4 -4
- compass_api_sdk/models/compass_api_backend_models_aave_read_response_historical_transactions_aavehistoricaltransactionsresponse.py +115 -0
- compass_api_sdk/models/{borrow.py → compass_api_backend_models_aave_read_response_historical_transactions_borrow.py} +4 -2
- compass_api_sdk/models/{liquidationcall.py → compass_api_backend_models_aave_read_response_historical_transactions_liquidationcall.py} +6 -2
- compass_api_sdk/models/{redeemunderlying.py → compass_api_backend_models_aave_read_response_historical_transactions_redeemunderlying.py} +6 -2
- compass_api_sdk/models/{repay.py → compass_api_backend_models_aave_read_response_historical_transactions_repay.py} +4 -2
- compass_api_sdk/models/{supply.py → compass_api_backend_models_aave_read_response_historical_transactions_supply.py} +4 -2
- compass_api_sdk/models/{swapborrowrate.py → compass_api_backend_models_aave_read_response_historical_transactions_swapborrowrate.py} +6 -2
- compass_api_sdk/models/{usageascollateral.py → compass_api_backend_models_aave_read_response_historical_transactions_usageascollateral.py} +6 -2
- compass_api_sdk/models/{aaveborrowrequest.py → compass_api_backend_models_aave_transact_request_borrow_aaveborrowrequest.py} +24 -12
- compass_api_sdk/models/{aaverepayrequest.py → compass_api_backend_models_aave_transact_request_repay_aaverepayrequest.py} +24 -12
- compass_api_sdk/models/{aavesupplyrequest.py → compass_api_backend_models_aave_transact_request_supply_aavesupplyrequest.py} +24 -12
- compass_api_sdk/models/{aavewithdrawrequest.py → compass_api_backend_models_aave_transact_request_withdraw_aavewithdrawrequest.py} +25 -13
- compass_api_sdk/models/{aerodromelppositionsresponse.py → compass_api_backend_models_aerodrome_slipstream_read_response_positions_aerodromelppositionsresponse.py} +6 -2
- compass_api_sdk/models/compass_api_backend_models_aerodrome_slipstream_transact_request_liquidity_provision_increase_aerodromeslipstreamincreaseliquidityprovisionrequest.py +125 -0
- compass_api_sdk/models/{aerodromeslipstreammintliquidityprovisionrequest.py → compass_api_backend_models_aerodrome_slipstream_transact_request_liquidity_provision_mint_aerodromeslipstreammintliquidityprovisionrequest.py} +43 -35
- compass_api_sdk/models/compass_api_backend_models_aerodrome_slipstream_transact_request_liquidity_provision_withdraw_aerodromeslipstreamwithdrawliquidityprovisionrequest.py +68 -0
- compass_api_sdk/models/compass_api_backend_models_aerodrome_slipstream_transact_request_swap_buy_exactly_aerodromeslipstreambuyexactlyrequest.py +116 -0
- compass_api_sdk/models/{aerodromeslipstreamsellexactlyrequest.py → compass_api_backend_models_aerodrome_slipstream_transact_request_swap_sell_exactly_aerodromeslipstreamsellexactlyrequest.py} +31 -19
- compass_api_sdk/models/compass_api_backend_models_generic_read_response_chains_supportedchaininfo.py +21 -0
- compass_api_sdk/models/{portfolio.py → compass_api_backend_models_generic_read_response_portfolio_portfolio.py} +2 -2
- compass_api_sdk/models/compass_api_backend_models_generic_transact_request_allowance_setallowancerequest.py +139 -0
- compass_api_sdk/models/compass_api_backend_models_generic_transact_request_unwrap_weth_unwrapwethrequest.py +69 -0
- compass_api_sdk/models/compass_api_backend_models_generic_transact_request_wrap_eth_wrapethrequest.py +66 -0
- compass_api_sdk/models/{marketposition.py → compass_api_backend_models_morpho_read_response_check_user_position_marketposition.py} +6 -2
- compass_api_sdk/models/compass_api_backend_models_morpho_read_response_check_user_position_morphocheckuserpositionresponse.py +48 -0
- compass_api_sdk/models/{vault.py → compass_api_backend_models_morpho_read_response_check_user_position_vault.py} +4 -2
- compass_api_sdk/models/{vaultposition.py → compass_api_backend_models_morpho_read_response_check_user_position_vaultposition.py} +12 -5
- compass_api_sdk/models/{morphogetmarketresponse.py → compass_api_backend_models_morpho_read_response_get_market_morphogetmarketresponse.py} +6 -2
- compass_api_sdk/models/compass_api_backend_models_morpho_read_response_get_markets_morphogetmarketsresponse.py +26 -0
- compass_api_sdk/models/{morphomarket.py → compass_api_backend_models_morpho_read_response_get_markets_morphomarket.py} +4 -2
- compass_api_sdk/models/compass_api_backend_models_morpho_read_response_get_vaults_morphogetvaultsresponse.py +24 -0
- compass_api_sdk/models/{morphovault.py → compass_api_backend_models_morpho_read_response_get_vaults_morphovault.py} +2 -2
- compass_api_sdk/models/{morphoborrowrequest.py → compass_api_backend_models_morpho_transact_request_borrow_morphoborrowrequest.py} +22 -13
- compass_api_sdk/models/{morphodepositrequest.py → compass_api_backend_models_morpho_transact_request_deposit_morphodepositrequest.py} +26 -13
- compass_api_sdk/models/{morphorepayrequest.py → compass_api_backend_models_morpho_transact_request_repay_morphorepayrequest.py} +12 -7
- compass_api_sdk/models/{morphosupplycollateralrequest.py → compass_api_backend_models_morpho_transact_request_supply_collateral_morphosupplycollateralrequest.py} +22 -13
- compass_api_sdk/models/{morphowithdrawcollateralrequest.py → compass_api_backend_models_morpho_transact_request_withdraw_collateral_morphowithdrawcollateralrequest.py} +22 -13
- compass_api_sdk/models/{morphowithdrawrequest.py → compass_api_backend_models_morpho_transact_request_withdraw_morphowithdrawrequest.py} +18 -7
- compass_api_sdk/models/{multicallauthorizationrequest.py → compass_api_backend_models_multicall_read_request_get_authorization_multicallauthorizationrequest.py} +17 -7
- compass_api_sdk/models/{aavelooprequest.py → compass_api_backend_models_multicall_transact_request_aave_loop_request_aavelooprequest.py} +67 -13
- compass_api_sdk/models/compass_api_backend_models_multicall_transact_request_multicall_execution_request_multicallexecuterequest.py +92 -0
- compass_api_sdk/models/{useroperation.py → compass_api_backend_models_multicall_transact_request_multicall_execution_request_useroperation.py} +40 -42
- compass_api_sdk/models/{pendlegetmarketresponse.py → compass_api_backend_models_pendle_read_response_market_pendlegetmarketresponse.py} +4 -2
- compass_api_sdk/models/compass_api_backend_models_pendle_read_response_markets_pendlelistmarketsresponse.py +24 -0
- compass_api_sdk/models/{pendlemarket.py → compass_api_backend_models_pendle_read_response_markets_pendlemarket.py} +2 -2
- compass_api_sdk/models/{openposition.py → compass_api_backend_models_pendle_read_response_positions_openposition.py} +4 -2
- compass_api_sdk/models/compass_api_backend_models_pendle_read_response_positions_pendlelistuserpositionsresponse.py +24 -0
- compass_api_sdk/models/{position.py → compass_api_backend_models_pendle_read_response_positions_position.py} +18 -7
- compass_api_sdk/models/{pendleredeemyieldrequest.py → compass_api_backend_models_pendle_transact_request_redeem_yield_pendleredeemyieldrequest.py} +17 -7
- compass_api_sdk/models/{skybuyrequest.py → compass_api_backend_models_sky_transact_request_buy_skybuyrequest.py} +22 -19
- compass_api_sdk/models/{skydepositrequest.py → compass_api_backend_models_sky_transact_request_deposit_skydepositrequest.py} +26 -15
- compass_api_sdk/models/compass_api_backend_models_sky_transact_request_sell_skysellrequest.py +70 -0
- compass_api_sdk/models/{skywithdrawrequest.py → compass_api_backend_models_sky_transact_request_withdraw_skywithdrawrequest.py} +17 -10
- compass_api_sdk/models/compass_api_backend_models_smart_account_transact_request_user_operations_batcheduseroperationsrequest.py +49 -0
- compass_api_sdk/models/compass_api_backend_models_swap_transact_request_odos_odosswaprequest.py +108 -0
- compass_api_sdk/models/compass_api_backend_models_token_transact_request_transfer_tokentransferrequest.py +98 -0
- compass_api_sdk/models/compass_api_backend_models_uniswap_transact_liquidity_provision_request_increase_uniswapincreaseliquidityprovisionrequest.py +129 -0
- compass_api_sdk/models/{uniswapmintliquidityprovisionrequest.py → compass_api_backend_models_uniswap_transact_liquidity_provision_request_mint_uniswapmintliquidityprovisionrequest.py} +49 -31
- compass_api_sdk/models/compass_api_backend_models_uniswap_transact_liquidity_provision_request_withdraw_uniswapwithdrawliquidityprovisionrequest.py +68 -0
- compass_api_sdk/models/compass_api_backend_models_uniswap_transact_swap_request_buy_exactly_uniswapbuyexactlyrequest.py +123 -0
- compass_api_sdk/models/compass_api_backend_models_uniswap_transact_swap_request_sell_exactly_uniswapsellexactlyrequest.py +123 -0
- compass_api_sdk/models/{vaultgetvaultresponse.py → compass_api_backend_models_vaults_read_response_vault_vaultgetvaultresponse.py} +4 -2
- compass_api_sdk/models/compass_api_backend_models_vaults_transact_request_deposit_vaultdepositrequest.py +110 -0
- compass_api_sdk/models/compass_api_backend_models_vaults_transact_request_withdraw_vaultwithdrawrequest.py +96 -0
- compass_api_sdk/models/details.py +44 -7
- compass_api_sdk/models/movement10percent.py +65 -10
- compass_api_sdk/models/pendlemanageliquidityparams.py +81 -0
- compass_api_sdk/models/pendlemanageliquidityrequest.py +95 -0
- compass_api_sdk/models/pendletradeptparams.py +81 -0
- compass_api_sdk/models/pendletradeptrequest.py +95 -0
- compass_api_sdk/models/pendletradeytparams.py +81 -0
- compass_api_sdk/models/pendletradeytrequest.py +95 -0
- compass_api_sdk/models/pendletxresponse.py +45 -0
- compass_api_sdk/models/token_enum.py +17 -0
- compass_api_sdk/models/{tokentransferrequest.py → tokentransferparams.py} +16 -27
- compass_api_sdk/models/transactionresponse.py +40 -0
- compass_api_sdk/models/uniswapbuyexactlyparams.py +19 -24
- compass_api_sdk/models/uniswapbuyexactlytransactionresponse.py +45 -0
- compass_api_sdk/models/uniswapsellexactlyparams.py +43 -40
- compass_api_sdk/models/uniswapsellexactlytransactionresponse.py +45 -0
- compass_api_sdk/models/userstate.py +3 -3
- compass_api_sdk/models/{aave_aave_supported_tokensop.py → v1_aave_aave_supported_tokensop.py} +9 -13
- compass_api_sdk/models/{aave_avg_rateop.py → v1_aave_avg_rateop.py} +32 -19
- compass_api_sdk/models/{aave_historical_transactionsop.py → v1_aave_historical_transactionsop.py} +9 -13
- compass_api_sdk/models/{aave_liquidity_changeop.py → v1_aave_liquidity_changeop.py} +30 -17
- compass_api_sdk/models/{aave_rateop.py → v1_aave_rateop.py} +32 -19
- compass_api_sdk/models/{aave_reserve_overviewop.py → v1_aave_reserve_overviewop.py} +32 -19
- compass_api_sdk/models/{aave_std_rateop.py → v1_aave_std_rateop.py} +32 -19
- compass_api_sdk/models/{aave_token_priceop.py → v1_aave_token_priceop.py} +32 -19
- compass_api_sdk/models/{aave_user_position_per_tokenop.py → v1_aave_user_position_per_tokenop.py} +32 -19
- compass_api_sdk/models/{aave_user_position_summaryop.py → v1_aave_user_position_summaryop.py} +9 -13
- compass_api_sdk/models/{uniswap_liquidity_provision_positionsop.py → v1_aerodrome_slipstream_liquidity_provision_positionsop.py} +7 -13
- compass_api_sdk/models/{aerodrome_slipstream_pool_priceop.py → v1_aerodrome_slipstream_pool_priceop.py} +53 -25
- compass_api_sdk/models/{generic_allowanceop.py → v1_generic_allowanceop.py} +24 -25
- compass_api_sdk/models/{generic_ensop.py → v1_generic_ensop.py} +7 -13
- compass_api_sdk/models/{generic_portfolioop.py → v1_generic_portfolioop.py} +9 -13
- compass_api_sdk/models/{generic_supported_chainsop.py → v1_generic_supported_chainsop.py} +2 -2
- compass_api_sdk/models/v1_generic_supported_tokensop.py +24 -0
- compass_api_sdk/models/{morpho_market_positionop.py → v1_morpho_market_positionop.py} +9 -8
- compass_api_sdk/models/{morpho_marketop.py → v1_morpho_marketop.py} +9 -8
- compass_api_sdk/models/{morpho_marketsop.py → v1_morpho_marketsop.py} +34 -13
- compass_api_sdk/models/{morpho_user_positionop.py → v1_morpho_user_positionop.py} +9 -8
- compass_api_sdk/models/{morpho_vaultop.py → v1_morpho_vaultop.py} +9 -13
- compass_api_sdk/models/{morpho_vaultsop.py → v1_morpho_vaultsop.py} +22 -11
- compass_api_sdk/models/{pendle_marketop.py → v1_pendle_marketop.py} +9 -13
- compass_api_sdk/models/v1_pendle_marketsop.py +24 -0
- compass_api_sdk/models/{pendle_positionsop.py → v1_pendle_positionsop.py} +10 -14
- compass_api_sdk/models/{sky_positionop.py → v1_sky_positionop.py} +14 -15
- compass_api_sdk/models/{token_addressop.py → v1_token_addressop.py} +30 -17
- compass_api_sdk/models/{token_balanceop.py → v1_token_balanceop.py} +14 -18
- compass_api_sdk/models/{token_priceop.py → v1_token_priceop.py} +14 -18
- compass_api_sdk/models/v1_transaction_bundler_aave_loopop.py +24 -0
- compass_api_sdk/models/{uniswap_liquidity_provision_in_rangeop.py → v1_uniswap_liquidity_provision_in_rangeop.py} +9 -13
- compass_api_sdk/models/{aerodrome_slipstream_liquidity_provision_positionsop.py → v1_uniswap_liquidity_provision_positionsop.py} +9 -13
- compass_api_sdk/models/{uniswap_pool_priceop.py → v1_uniswap_pool_priceop.py} +59 -29
- compass_api_sdk/models/{uniswap_quote_buy_exactlyop.py → v1_uniswap_quote_buy_exactlyop.py} +65 -35
- compass_api_sdk/models/{uniswap_quote_sell_exactlyop.py → v1_uniswap_quote_sell_exactlyop.py} +65 -35
- compass_api_sdk/models/{vaults_vaultop.py → v1_vaults_vaultop.py} +9 -13
- compass_api_sdk/models/{vaultdepositrequest.py → vaultdepositparams.py} +7 -20
- compass_api_sdk/models/{vaultwithdrawrequest.py → vaultwithdrawparams.py} +2 -13
- compass_api_sdk/morpho.py +328 -228
- compass_api_sdk/pendle.py +307 -1081
- compass_api_sdk/sky.py +186 -94
- compass_api_sdk/smart_account.py +46 -18
- compass_api_sdk/swap.py +40 -26
- compass_api_sdk/token_sdk.py +76 -66
- compass_api_sdk/transaction_bundler.py +126 -76
- compass_api_sdk/uniswap_v3.py +302 -278
- compass_api_sdk/universal.py +189 -329
- compass_api_sdk/utils/__init__.py +3 -2
- {compass_api_sdk-0.9.50.dist-info → compass_api_sdk-0.9.52.dist-info}/METADATA +83 -88
- compass_api_sdk-0.9.52.dist-info/RECORD +263 -0
- compass_api_sdk/models/aavehistoricaltransactionsresponse.py +0 -65
- compass_api_sdk/models/aerodromeslipstreambuyexactlyrequest.py +0 -104
- compass_api_sdk/models/aerodromeslipstreamincreaseliquidityprovisionrequest.py +0 -123
- compass_api_sdk/models/aerodromeslipstreamwithdrawliquidityprovisionrequest.py +0 -64
- compass_api_sdk/models/batcheduseroperationsrequest.py +0 -32
- compass_api_sdk/models/generic_supported_tokensop.py +0 -28
- compass_api_sdk/models/generic_visualize_portfolioop.py +0 -37
- compass_api_sdk/models/image.py +0 -15
- compass_api_sdk/models/morphocheckuserpositionresponse.py +0 -32
- compass_api_sdk/models/morphogetmarketsresponse.py +0 -17
- compass_api_sdk/models/morphogetvaultsresponse.py +0 -17
- compass_api_sdk/models/multicallexecuterequest.py +0 -36
- compass_api_sdk/models/odosswaprequest.py +0 -86
- compass_api_sdk/models/pendle_marketsop.py +0 -28
- compass_api_sdk/models/pendle_quoteop.py +0 -128
- compass_api_sdk/models/pendleaddliquidityparams.py +0 -50
- compass_api_sdk/models/pendleaddliquidityrequest.py +0 -61
- compass_api_sdk/models/pendlebuyptparams.py +0 -48
- compass_api_sdk/models/pendlebuyptrequest.py +0 -59
- compass_api_sdk/models/pendlebuyytparams.py +0 -48
- compass_api_sdk/models/pendlebuyytrequest.py +0 -59
- compass_api_sdk/models/pendlegetquoteresponse.py +0 -15
- compass_api_sdk/models/pendlelistmarketsresponse.py +0 -17
- compass_api_sdk/models/pendlelistuserpositionsresponse.py +0 -17
- compass_api_sdk/models/pendleremoveliquidityparams.py +0 -50
- compass_api_sdk/models/pendleremoveliquidityrequest.py +0 -61
- compass_api_sdk/models/pendlesellptparams.py +0 -48
- compass_api_sdk/models/pendlesellptrequest.py +0 -61
- compass_api_sdk/models/pendlesellytparams.py +0 -48
- compass_api_sdk/models/pendlesellytrequest.py +0 -61
- compass_api_sdk/models/setallowancerequest.py +0 -109
- compass_api_sdk/models/skysellrequest.py +0 -64
- compass_api_sdk/models/supportedchaininfo.py +0 -19
- compass_api_sdk/models/txresponse.py +0 -27
- compass_api_sdk/models/uniswapbuyexactlyrequest.py +0 -112
- compass_api_sdk/models/uniswapincreaseliquidityprovisionrequest.py +0 -111
- compass_api_sdk/models/uniswapsellexactlyrequest.py +0 -104
- compass_api_sdk/models/uniswapwithdrawliquidityprovisionrequest.py +0 -63
- compass_api_sdk/models/unwrapwethrequest.py +0 -53
- compass_api_sdk/models/wrapethrequest.py +0 -52
- compass_api_sdk-0.9.50.dist-info/RECORD +0 -266
- {compass_api_sdk-0.9.50.dist-info → compass_api_sdk-0.9.52.dist-info}/WHEEL +0 -0
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from compass_api_sdk.types import BaseModel
|
|
5
|
-
from compass_api_sdk.utils import validate_const
|
|
6
|
-
import pydantic
|
|
7
|
-
from pydantic.functional_validators import AfterValidator
|
|
8
|
-
from typing import Literal, Optional, Union
|
|
9
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
PendleSellPtParamsAmountTypedDict = TypeAliasType(
|
|
13
|
-
"PendleSellPtParamsAmountTypedDict", Union[float, str]
|
|
14
|
-
)
|
|
15
|
-
r"""The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token."""
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
PendleSellPtParamsAmount = TypeAliasType("PendleSellPtParamsAmount", Union[float, str])
|
|
19
|
-
r"""The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token."""
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class PendleSellPtParamsTypedDict(TypedDict):
|
|
23
|
-
market_address: str
|
|
24
|
-
r"""The address of the market identifying which Principal Token (PT) you would like to sell."""
|
|
25
|
-
amount: PendleSellPtParamsAmountTypedDict
|
|
26
|
-
r"""The amount of market's Principal Token (PT) 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."""
|
|
29
|
-
action_type: Literal["PENDLE_SELL_PT"]
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
class PendleSellPtParams(BaseModel):
|
|
33
|
-
market_address: str
|
|
34
|
-
r"""The address of the market identifying which Principal Token (PT) you would like to sell."""
|
|
35
|
-
|
|
36
|
-
amount: PendleSellPtParamsAmount
|
|
37
|
-
r"""The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token."""
|
|
38
|
-
|
|
39
|
-
max_slippage_percent: float
|
|
40
|
-
r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
|
|
41
|
-
|
|
42
|
-
ACTION_TYPE: Annotated[
|
|
43
|
-
Annotated[
|
|
44
|
-
Optional[Literal["PENDLE_SELL_PT"]],
|
|
45
|
-
AfterValidator(validate_const("PENDLE_SELL_PT")),
|
|
46
|
-
],
|
|
47
|
-
pydantic.Field(alias="action_type"),
|
|
48
|
-
] = "PENDLE_SELL_PT"
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .chain import Chain
|
|
5
|
-
from compass_api_sdk.types import BaseModel
|
|
6
|
-
from compass_api_sdk.utils import validate_const
|
|
7
|
-
import pydantic
|
|
8
|
-
from pydantic.functional_validators import AfterValidator
|
|
9
|
-
from typing import Literal, Optional, Union
|
|
10
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
PendleSellPtRequestAmountTypedDict = TypeAliasType(
|
|
14
|
-
"PendleSellPtRequestAmountTypedDict", Union[float, str]
|
|
15
|
-
)
|
|
16
|
-
r"""The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token."""
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
PendleSellPtRequestAmount = TypeAliasType(
|
|
20
|
-
"PendleSellPtRequestAmount", Union[float, str]
|
|
21
|
-
)
|
|
22
|
-
r"""The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token."""
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class PendleSellPtRequestTypedDict(TypedDict):
|
|
26
|
-
market_address: str
|
|
27
|
-
r"""The address of the market identifying which Principal Token (PT) you would like to sell."""
|
|
28
|
-
amount: PendleSellPtRequestAmountTypedDict
|
|
29
|
-
r"""The amount of market's Principal Token (PT) 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."""
|
|
32
|
-
chain: Chain
|
|
33
|
-
r"""The chain to use."""
|
|
34
|
-
sender: str
|
|
35
|
-
r"""The address of the transaction sender."""
|
|
36
|
-
action_type: Literal["PENDLE_SELL_PT"]
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
class PendleSellPtRequest(BaseModel):
|
|
40
|
-
market_address: str
|
|
41
|
-
r"""The address of the market identifying which Principal Token (PT) you would like to sell."""
|
|
42
|
-
|
|
43
|
-
amount: PendleSellPtRequestAmount
|
|
44
|
-
r"""The amount of market's Principal Token (PT) you would like to sell for market's Underlying Token."""
|
|
45
|
-
|
|
46
|
-
max_slippage_percent: float
|
|
47
|
-
r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
|
|
48
|
-
|
|
49
|
-
chain: Chain
|
|
50
|
-
r"""The chain to use."""
|
|
51
|
-
|
|
52
|
-
sender: str
|
|
53
|
-
r"""The address of the transaction sender."""
|
|
54
|
-
|
|
55
|
-
ACTION_TYPE: Annotated[
|
|
56
|
-
Annotated[
|
|
57
|
-
Optional[Literal["PENDLE_SELL_PT"]],
|
|
58
|
-
AfterValidator(validate_const("PENDLE_SELL_PT")),
|
|
59
|
-
],
|
|
60
|
-
pydantic.Field(alias="action_type"),
|
|
61
|
-
] = "PENDLE_SELL_PT"
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from compass_api_sdk.types import BaseModel
|
|
5
|
-
from compass_api_sdk.utils import validate_const
|
|
6
|
-
import pydantic
|
|
7
|
-
from pydantic.functional_validators import AfterValidator
|
|
8
|
-
from typing import Literal, Optional, Union
|
|
9
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
PendleSellYtParamsAmountTypedDict = TypeAliasType(
|
|
13
|
-
"PendleSellYtParamsAmountTypedDict", Union[float, str]
|
|
14
|
-
)
|
|
15
|
-
r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
PendleSellYtParamsAmount = TypeAliasType("PendleSellYtParamsAmount", Union[float, str])
|
|
19
|
-
r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
class PendleSellYtParamsTypedDict(TypedDict):
|
|
23
|
-
market_address: str
|
|
24
|
-
r"""The address of the market identifying which Yield Token (YT) you would like to sell."""
|
|
25
|
-
amount: PendleSellYtParamsAmountTypedDict
|
|
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."""
|
|
29
|
-
action_type: Literal["PENDLE_SELL_YT"]
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
class PendleSellYtParams(BaseModel):
|
|
33
|
-
market_address: str
|
|
34
|
-
r"""The address of the market identifying which Yield Token (YT) you would like to sell."""
|
|
35
|
-
|
|
36
|
-
amount: PendleSellYtParamsAmount
|
|
37
|
-
r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
|
|
38
|
-
|
|
39
|
-
max_slippage_percent: float
|
|
40
|
-
r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
|
|
41
|
-
|
|
42
|
-
ACTION_TYPE: Annotated[
|
|
43
|
-
Annotated[
|
|
44
|
-
Optional[Literal["PENDLE_SELL_YT"]],
|
|
45
|
-
AfterValidator(validate_const("PENDLE_SELL_YT")),
|
|
46
|
-
],
|
|
47
|
-
pydantic.Field(alias="action_type"),
|
|
48
|
-
] = "PENDLE_SELL_YT"
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .chain import Chain
|
|
5
|
-
from compass_api_sdk.types import BaseModel
|
|
6
|
-
from compass_api_sdk.utils import validate_const
|
|
7
|
-
import pydantic
|
|
8
|
-
from pydantic.functional_validators import AfterValidator
|
|
9
|
-
from typing import Literal, Optional, Union
|
|
10
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
PendleSellYtRequestAmountTypedDict = TypeAliasType(
|
|
14
|
-
"PendleSellYtRequestAmountTypedDict", Union[float, str]
|
|
15
|
-
)
|
|
16
|
-
r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
PendleSellYtRequestAmount = TypeAliasType(
|
|
20
|
-
"PendleSellYtRequestAmount", Union[float, str]
|
|
21
|
-
)
|
|
22
|
-
r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
class PendleSellYtRequestTypedDict(TypedDict):
|
|
26
|
-
market_address: str
|
|
27
|
-
r"""The address of the market identifying which Yield Token (YT) you would like to sell."""
|
|
28
|
-
amount: PendleSellYtRequestAmountTypedDict
|
|
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."""
|
|
32
|
-
chain: Chain
|
|
33
|
-
r"""The chain to use."""
|
|
34
|
-
sender: str
|
|
35
|
-
r"""The address of the transaction sender."""
|
|
36
|
-
action_type: Literal["PENDLE_SELL_YT"]
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
class PendleSellYtRequest(BaseModel):
|
|
40
|
-
market_address: str
|
|
41
|
-
r"""The address of the market identifying which Yield Token (YT) you would like to sell."""
|
|
42
|
-
|
|
43
|
-
amount: PendleSellYtRequestAmount
|
|
44
|
-
r"""The amount of market's Yield Token (YT) you would like to sell for market's Underlying Token."""
|
|
45
|
-
|
|
46
|
-
max_slippage_percent: float
|
|
47
|
-
r"""The maximum slippage allowed in percent. e.g. `1` means `1%` slippage allowed."""
|
|
48
|
-
|
|
49
|
-
chain: Chain
|
|
50
|
-
r"""The chain to use."""
|
|
51
|
-
|
|
52
|
-
sender: str
|
|
53
|
-
r"""The address of the transaction sender."""
|
|
54
|
-
|
|
55
|
-
ACTION_TYPE: Annotated[
|
|
56
|
-
Annotated[
|
|
57
|
-
Optional[Literal["PENDLE_SELL_YT"]],
|
|
58
|
-
AfterValidator(validate_const("PENDLE_SELL_YT")),
|
|
59
|
-
],
|
|
60
|
-
pydantic.Field(alias="action_type"),
|
|
61
|
-
] = "PENDLE_SELL_YT"
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .chain import Chain
|
|
5
|
-
from .token_enum import TokenEnum
|
|
6
|
-
from compass_api_sdk.types import BaseModel
|
|
7
|
-
from compass_api_sdk.utils import validate_const
|
|
8
|
-
from enum import Enum
|
|
9
|
-
import pydantic
|
|
10
|
-
from pydantic.functional_validators import AfterValidator
|
|
11
|
-
from typing import Literal, Optional, Union
|
|
12
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
SetAllowanceRequestTokenTypedDict = TypeAliasType(
|
|
16
|
-
"SetAllowanceRequestTokenTypedDict", Union[TokenEnum, str]
|
|
17
|
-
)
|
|
18
|
-
r"""The symbol or address of the token for which the allowance is set.."""
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
SetAllowanceRequestToken = TypeAliasType(
|
|
22
|
-
"SetAllowanceRequestToken", Union[TokenEnum, str]
|
|
23
|
-
)
|
|
24
|
-
r"""The symbol or address of the token for which the allowance is set.."""
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
class SetAllowanceRequestContractEnum(str, Enum):
|
|
28
|
-
AAVE_V3_POOL = "AaveV3Pool"
|
|
29
|
-
AERODROME_BASIC_ROUTER = "AerodromeBasicRouter"
|
|
30
|
-
AERODROME_SLIPSTREAM_ROUTER = "AerodromeSlipstreamRouter"
|
|
31
|
-
AERODROME_SLIPSTREAM_NONFUNGIBLE_POSITION_MANAGER = (
|
|
32
|
-
"AerodromeSlipstreamNonfungiblePositionManager"
|
|
33
|
-
)
|
|
34
|
-
UNISWAP_V3_ROUTER = "UniswapV3Router"
|
|
35
|
-
UNISWAP_V3_NFT_POSITION_MANAGER = "UniswapV3NFTPositionManager"
|
|
36
|
-
MORPHO = "Morpho"
|
|
37
|
-
SKY_DAI_USDS_CONVERTER = "SkyDaiUsdsConverter"
|
|
38
|
-
SKY_USDC_USDS_CONVERTER = "SkyUsdcUsdsConverter"
|
|
39
|
-
SKY_USDS_VAULT = "SkyUsdsVault"
|
|
40
|
-
PENDLE_ROUTER = "PendleRouter"
|
|
41
|
-
ODOS_ROUTER = "OdosRouter"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
SetAllowanceRequestContractUnionTypedDict = TypeAliasType(
|
|
45
|
-
"SetAllowanceRequestContractUnionTypedDict",
|
|
46
|
-
Union[SetAllowanceRequestContractEnum, str],
|
|
47
|
-
)
|
|
48
|
-
r"""The name or address of the contract to set spending allowance for."""
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
SetAllowanceRequestContractUnion = TypeAliasType(
|
|
52
|
-
"SetAllowanceRequestContractUnion", Union[SetAllowanceRequestContractEnum, str]
|
|
53
|
-
)
|
|
54
|
-
r"""The name or address of the contract to set spending allowance for."""
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
SetAllowanceRequestAmountTypedDict = TypeAliasType(
|
|
58
|
-
"SetAllowanceRequestAmountTypedDict", Union[float, str]
|
|
59
|
-
)
|
|
60
|
-
r"""The amount to set the allowance to."""
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
SetAllowanceRequestAmount = TypeAliasType(
|
|
64
|
-
"SetAllowanceRequestAmount", Union[float, str]
|
|
65
|
-
)
|
|
66
|
-
r"""The amount to set the allowance to."""
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
class SetAllowanceRequestTypedDict(TypedDict):
|
|
70
|
-
r"""Request model for increasing token allowance for a contract."""
|
|
71
|
-
|
|
72
|
-
token: SetAllowanceRequestTokenTypedDict
|
|
73
|
-
r"""The symbol or address of the token for which the allowance is set.."""
|
|
74
|
-
contract: SetAllowanceRequestContractUnionTypedDict
|
|
75
|
-
r"""The name or address of the contract to set spending allowance for."""
|
|
76
|
-
amount: SetAllowanceRequestAmountTypedDict
|
|
77
|
-
r"""The amount to set the allowance to."""
|
|
78
|
-
chain: Chain
|
|
79
|
-
r"""The chain to use."""
|
|
80
|
-
sender: str
|
|
81
|
-
r"""The address of the transaction sender."""
|
|
82
|
-
action_type: Literal["SET_ALLOWANCE"]
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
class SetAllowanceRequest(BaseModel):
|
|
86
|
-
r"""Request model for increasing token allowance for a contract."""
|
|
87
|
-
|
|
88
|
-
token: SetAllowanceRequestToken
|
|
89
|
-
r"""The symbol or address of the token for which the allowance is set.."""
|
|
90
|
-
|
|
91
|
-
contract: SetAllowanceRequestContractUnion
|
|
92
|
-
r"""The name or address of the contract to set spending allowance for."""
|
|
93
|
-
|
|
94
|
-
amount: SetAllowanceRequestAmount
|
|
95
|
-
r"""The amount to set the allowance to."""
|
|
96
|
-
|
|
97
|
-
chain: Chain
|
|
98
|
-
r"""The chain to use."""
|
|
99
|
-
|
|
100
|
-
sender: str
|
|
101
|
-
r"""The address of the transaction sender."""
|
|
102
|
-
|
|
103
|
-
ACTION_TYPE: Annotated[
|
|
104
|
-
Annotated[
|
|
105
|
-
Optional[Literal["SET_ALLOWANCE"]],
|
|
106
|
-
AfterValidator(validate_const("SET_ALLOWANCE")),
|
|
107
|
-
],
|
|
108
|
-
pydantic.Field(alias="action_type"),
|
|
109
|
-
] = "SET_ALLOWANCE"
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from compass_api_sdk.types import BaseModel
|
|
5
|
-
from compass_api_sdk.utils import validate_const
|
|
6
|
-
from enum import Enum
|
|
7
|
-
import pydantic
|
|
8
|
-
from pydantic.functional_validators import AfterValidator
|
|
9
|
-
from typing import Literal, Optional, Union
|
|
10
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
class SkySellRequestTokenOut(str, Enum):
|
|
14
|
-
r"""The token you would like to swap 1:1 with USDS. Choose from DAI or USDC."""
|
|
15
|
-
|
|
16
|
-
DAI = "DAI"
|
|
17
|
-
USDC = "USDC"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
SkySellRequestAmountTypedDict = TypeAliasType(
|
|
21
|
-
"SkySellRequestAmountTypedDict", Union[float, str]
|
|
22
|
-
)
|
|
23
|
-
r"""The amount of USDS you would like to sell 1:1 for 'token_out'."""
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
SkySellRequestAmount = TypeAliasType("SkySellRequestAmount", Union[float, str])
|
|
27
|
-
r"""The amount of USDS you would like to sell 1:1 for 'token_out'."""
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
class SkySellRequestTypedDict(TypedDict):
|
|
31
|
-
token_out: SkySellRequestTokenOut
|
|
32
|
-
r"""The token you would like to swap 1:1 with USDS. Choose from DAI or USDC."""
|
|
33
|
-
amount: SkySellRequestAmountTypedDict
|
|
34
|
-
r"""The amount of USDS you would like to sell 1:1 for 'token_out'."""
|
|
35
|
-
sender: str
|
|
36
|
-
r"""The address of the transaction sender."""
|
|
37
|
-
action_type: Literal["SKY_SELL"]
|
|
38
|
-
chain: Literal["ethereum:mainnet"]
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
class SkySellRequest(BaseModel):
|
|
42
|
-
token_out: SkySellRequestTokenOut
|
|
43
|
-
r"""The token you would like to swap 1:1 with USDS. Choose from DAI or USDC."""
|
|
44
|
-
|
|
45
|
-
amount: SkySellRequestAmount
|
|
46
|
-
r"""The amount of USDS you would like to sell 1:1 for 'token_out'."""
|
|
47
|
-
|
|
48
|
-
sender: str
|
|
49
|
-
r"""The address of the transaction sender."""
|
|
50
|
-
|
|
51
|
-
ACTION_TYPE: Annotated[
|
|
52
|
-
Annotated[
|
|
53
|
-
Optional[Literal["SKY_SELL"]], AfterValidator(validate_const("SKY_SELL"))
|
|
54
|
-
],
|
|
55
|
-
pydantic.Field(alias="action_type"),
|
|
56
|
-
] = "SKY_SELL"
|
|
57
|
-
|
|
58
|
-
CHAIN: Annotated[
|
|
59
|
-
Annotated[
|
|
60
|
-
Optional[Literal["ethereum:mainnet"]],
|
|
61
|
-
AfterValidator(validate_const("ethereum:mainnet")),
|
|
62
|
-
],
|
|
63
|
-
pydantic.Field(alias="chain"),
|
|
64
|
-
] = "ethereum:mainnet"
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .chain import Chain
|
|
5
|
-
from compass_api_sdk.types import BaseModel
|
|
6
|
-
from typing import List
|
|
7
|
-
from typing_extensions import TypedDict
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class SupportedChainInfoTypedDict(TypedDict):
|
|
11
|
-
r"""Response model for a chain."""
|
|
12
|
-
|
|
13
|
-
chains: List[Chain]
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
class SupportedChainInfo(BaseModel):
|
|
17
|
-
r"""Response model for a chain."""
|
|
18
|
-
|
|
19
|
-
chains: List[Chain]
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .unsignedmulticalltransaction import (
|
|
5
|
-
UnsignedMulticallTransaction,
|
|
6
|
-
UnsignedMulticallTransactionTypedDict,
|
|
7
|
-
)
|
|
8
|
-
from .unsignedtransaction import UnsignedTransaction, UnsignedTransactionTypedDict
|
|
9
|
-
from .useroperationresponse import UserOperationResponse, UserOperationResponseTypedDict
|
|
10
|
-
from typing import Union
|
|
11
|
-
from typing_extensions import TypeAliasType
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
TxResponseTypedDict = TypeAliasType(
|
|
15
|
-
"TxResponseTypedDict",
|
|
16
|
-
Union[
|
|
17
|
-
UserOperationResponseTypedDict,
|
|
18
|
-
UnsignedTransactionTypedDict,
|
|
19
|
-
UnsignedMulticallTransactionTypedDict,
|
|
20
|
-
],
|
|
21
|
-
)
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
TxResponse = TypeAliasType(
|
|
25
|
-
"TxResponse",
|
|
26
|
-
Union[UserOperationResponse, UnsignedTransaction, UnsignedMulticallTransaction],
|
|
27
|
-
)
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .chain import Chain
|
|
5
|
-
from .feeenum import FeeEnum
|
|
6
|
-
from .token_enum import TokenEnum
|
|
7
|
-
from compass_api_sdk.types import BaseModel
|
|
8
|
-
from compass_api_sdk.utils import validate_const
|
|
9
|
-
import pydantic
|
|
10
|
-
from pydantic.functional_validators import AfterValidator
|
|
11
|
-
from typing import Literal, Optional, Union
|
|
12
|
-
from typing_extensions import Annotated, NotRequired, TypeAliasType, TypedDict
|
|
13
|
-
|
|
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
|
-
|
|
39
|
-
UniswapBuyExactlyRequestAmountTypedDict = TypeAliasType(
|
|
40
|
-
"UniswapBuyExactlyRequestAmountTypedDict", Union[float, str]
|
|
41
|
-
)
|
|
42
|
-
r"""The amount of the token to swap to"""
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
UniswapBuyExactlyRequestAmount = TypeAliasType(
|
|
46
|
-
"UniswapBuyExactlyRequestAmount", Union[float, str]
|
|
47
|
-
)
|
|
48
|
-
r"""The amount of the token to swap to"""
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
class UniswapBuyExactlyRequestTypedDict(TypedDict):
|
|
52
|
-
r"""Request model for buying an exact amount of tokens."""
|
|
53
|
-
|
|
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."""
|
|
58
|
-
fee: FeeEnum
|
|
59
|
-
r"""The transaction fee of a Uniswap pool in bips.
|
|
60
|
-
|
|
61
|
-
Uniswap supports 4 different fee levels.
|
|
62
|
-
"""
|
|
63
|
-
amount: UniswapBuyExactlyRequestAmountTypedDict
|
|
64
|
-
r"""The amount of the token to swap to"""
|
|
65
|
-
max_slippage_percent: float
|
|
66
|
-
r"""The maximum slippage allowed in percent. e.g. `1` means `1 %` slippage allowed."""
|
|
67
|
-
chain: Chain
|
|
68
|
-
r"""The chain to use."""
|
|
69
|
-
sender: str
|
|
70
|
-
r"""The address of the transaction sender."""
|
|
71
|
-
action_type: Literal["UNISWAP_BUY_EXACTLY"]
|
|
72
|
-
wrap_eth: NotRequired[bool]
|
|
73
|
-
r"""Whether to wrap ETH to WETH, only use when swapping WETH into something"""
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
class UniswapBuyExactlyRequest(BaseModel):
|
|
77
|
-
r"""Request model for buying an exact amount of tokens."""
|
|
78
|
-
|
|
79
|
-
token_in: UniswapBuyExactlyRequestTokenIn
|
|
80
|
-
r"""The symbol of the token to swap from."""
|
|
81
|
-
|
|
82
|
-
token_out: UniswapBuyExactlyRequestTokenOut
|
|
83
|
-
r"""The symbol of the token to swap to."""
|
|
84
|
-
|
|
85
|
-
fee: FeeEnum
|
|
86
|
-
r"""The transaction fee of a Uniswap pool in bips.
|
|
87
|
-
|
|
88
|
-
Uniswap supports 4 different fee levels.
|
|
89
|
-
"""
|
|
90
|
-
|
|
91
|
-
amount: UniswapBuyExactlyRequestAmount
|
|
92
|
-
r"""The amount of the token to swap to"""
|
|
93
|
-
|
|
94
|
-
max_slippage_percent: float
|
|
95
|
-
r"""The maximum slippage allowed in percent. e.g. `1` means `1 %` slippage allowed."""
|
|
96
|
-
|
|
97
|
-
chain: Chain
|
|
98
|
-
r"""The chain to use."""
|
|
99
|
-
|
|
100
|
-
sender: str
|
|
101
|
-
r"""The address of the transaction sender."""
|
|
102
|
-
|
|
103
|
-
ACTION_TYPE: Annotated[
|
|
104
|
-
Annotated[
|
|
105
|
-
Optional[Literal["UNISWAP_BUY_EXACTLY"]],
|
|
106
|
-
AfterValidator(validate_const("UNISWAP_BUY_EXACTLY")),
|
|
107
|
-
],
|
|
108
|
-
pydantic.Field(alias="action_type"),
|
|
109
|
-
] = "UNISWAP_BUY_EXACTLY"
|
|
110
|
-
|
|
111
|
-
wrap_eth: Optional[bool] = False
|
|
112
|
-
r"""Whether to wrap ETH to WETH, only use when swapping WETH into something"""
|
|
@@ -1,111 +0,0 @@
|
|
|
1
|
-
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
2
|
-
|
|
3
|
-
from __future__ import annotations
|
|
4
|
-
from .chain import Chain
|
|
5
|
-
from compass_api_sdk.types import BaseModel
|
|
6
|
-
from compass_api_sdk.utils import validate_const
|
|
7
|
-
import pydantic
|
|
8
|
-
from pydantic.functional_validators import AfterValidator
|
|
9
|
-
from typing import Literal, Optional, Union
|
|
10
|
-
from typing_extensions import Annotated, TypeAliasType, TypedDict
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
UniswapIncreaseLiquidityProvisionRequestAmount0DesiredTypedDict = TypeAliasType(
|
|
14
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount0DesiredTypedDict", Union[float, str]
|
|
15
|
-
)
|
|
16
|
-
r"""The desired amount of the first token to deposit"""
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
UniswapIncreaseLiquidityProvisionRequestAmount0Desired = TypeAliasType(
|
|
20
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount0Desired", Union[float, str]
|
|
21
|
-
)
|
|
22
|
-
r"""The desired amount of the first token to deposit"""
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
UniswapIncreaseLiquidityProvisionRequestAmount1DesiredTypedDict = TypeAliasType(
|
|
26
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount1DesiredTypedDict", Union[float, str]
|
|
27
|
-
)
|
|
28
|
-
r"""The desired amount of the second token to deposit"""
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
UniswapIncreaseLiquidityProvisionRequestAmount1Desired = TypeAliasType(
|
|
32
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount1Desired", Union[float, str]
|
|
33
|
-
)
|
|
34
|
-
r"""The desired amount of the second token to deposit"""
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
UniswapIncreaseLiquidityProvisionRequestAmount0MinTypedDict = TypeAliasType(
|
|
38
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount0MinTypedDict", Union[float, str]
|
|
39
|
-
)
|
|
40
|
-
r"""The minimum amount of the first token to deposit"""
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
UniswapIncreaseLiquidityProvisionRequestAmount0Min = TypeAliasType(
|
|
44
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount0Min", Union[float, str]
|
|
45
|
-
)
|
|
46
|
-
r"""The minimum amount of the first token to deposit"""
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
UniswapIncreaseLiquidityProvisionRequestAmount1MinTypedDict = TypeAliasType(
|
|
50
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount1MinTypedDict", Union[float, str]
|
|
51
|
-
)
|
|
52
|
-
r"""The minimum amount of the second token to deposit"""
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
UniswapIncreaseLiquidityProvisionRequestAmount1Min = TypeAliasType(
|
|
56
|
-
"UniswapIncreaseLiquidityProvisionRequestAmount1Min", Union[float, str]
|
|
57
|
-
)
|
|
58
|
-
r"""The minimum amount of the second token to deposit"""
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
class UniswapIncreaseLiquidityProvisionRequestTypedDict(TypedDict):
|
|
62
|
-
r"""Request model for increasing liquidity provision in Uniswap V3."""
|
|
63
|
-
|
|
64
|
-
token_id: int
|
|
65
|
-
r"""Token ID of the NFT representing the liquidity provisioned position."""
|
|
66
|
-
amount0_desired: UniswapIncreaseLiquidityProvisionRequestAmount0DesiredTypedDict
|
|
67
|
-
r"""The desired amount of the first token to deposit"""
|
|
68
|
-
amount1_desired: UniswapIncreaseLiquidityProvisionRequestAmount1DesiredTypedDict
|
|
69
|
-
r"""The desired amount of the second token to deposit"""
|
|
70
|
-
amount0_min: UniswapIncreaseLiquidityProvisionRequestAmount0MinTypedDict
|
|
71
|
-
r"""The minimum amount of the first token to deposit"""
|
|
72
|
-
amount1_min: UniswapIncreaseLiquidityProvisionRequestAmount1MinTypedDict
|
|
73
|
-
r"""The minimum amount of the second token to deposit"""
|
|
74
|
-
chain: Chain
|
|
75
|
-
r"""The chain to use."""
|
|
76
|
-
sender: str
|
|
77
|
-
r"""The address of the transaction sender."""
|
|
78
|
-
action_type: Literal["UNISWAP_ADD_LIQUIDITY"]
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
class UniswapIncreaseLiquidityProvisionRequest(BaseModel):
|
|
82
|
-
r"""Request model for increasing liquidity provision in Uniswap V3."""
|
|
83
|
-
|
|
84
|
-
token_id: int
|
|
85
|
-
r"""Token ID of the NFT representing the liquidity provisioned position."""
|
|
86
|
-
|
|
87
|
-
amount0_desired: UniswapIncreaseLiquidityProvisionRequestAmount0Desired
|
|
88
|
-
r"""The desired amount of the first token to deposit"""
|
|
89
|
-
|
|
90
|
-
amount1_desired: UniswapIncreaseLiquidityProvisionRequestAmount1Desired
|
|
91
|
-
r"""The desired amount of the second token to deposit"""
|
|
92
|
-
|
|
93
|
-
amount0_min: UniswapIncreaseLiquidityProvisionRequestAmount0Min
|
|
94
|
-
r"""The minimum amount of the first token to deposit"""
|
|
95
|
-
|
|
96
|
-
amount1_min: UniswapIncreaseLiquidityProvisionRequestAmount1Min
|
|
97
|
-
r"""The minimum amount of the second token to deposit"""
|
|
98
|
-
|
|
99
|
-
chain: Chain
|
|
100
|
-
r"""The chain to use."""
|
|
101
|
-
|
|
102
|
-
sender: str
|
|
103
|
-
r"""The address of the transaction sender."""
|
|
104
|
-
|
|
105
|
-
ACTION_TYPE: Annotated[
|
|
106
|
-
Annotated[
|
|
107
|
-
Optional[Literal["UNISWAP_ADD_LIQUIDITY"]],
|
|
108
|
-
AfterValidator(validate_const("UNISWAP_ADD_LIQUIDITY")),
|
|
109
|
-
],
|
|
110
|
-
pydantic.Field(alias="action_type"),
|
|
111
|
-
] = "UNISWAP_ADD_LIQUIDITY"
|