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.
- compass_api_sdk/_hooks/sdkhooks.py +4 -4
- compass_api_sdk/_hooks/types.py +1 -2
- compass_api_sdk/_version.py +3 -3
- compass_api_sdk/aave_v3.py +386 -114
- compass_api_sdk/aerodrome_slipstream.py +104 -54
- compass_api_sdk/basesdk.py +6 -0
- compass_api_sdk/bridge.py +536 -0
- compass_api_sdk/earn.py +1780 -0
- compass_api_sdk/erc_4626_vaults.py +28 -10
- compass_api_sdk/errors/__init__.py +8 -0
- compass_api_sdk/errors/apierror.py +1 -1
- compass_api_sdk/errors/compassapierror.py +1 -1
- compass_api_sdk/errors/httpvalidationerror.py +1 -1
- compass_api_sdk/errors/mintpreparenotfoundresponse_error.py +49 -0
- compass_api_sdk/errors/no_response_error.py +1 -1
- compass_api_sdk/errors/responsevalidationerror.py +1 -1
- compass_api_sdk/ethena.py +36 -10
- compass_api_sdk/gas_sponsorship.py +446 -0
- compass_api_sdk/httpclient.py +0 -1
- compass_api_sdk/models/__init__.py +764 -392
- compass_api_sdk/models/aaveborrowparams.py +4 -13
- compass_api_sdk/models/aaveborrowrequest.py +10 -14
- compass_api_sdk/models/aavehistoricaltransactionsresponse.py +3 -3
- compass_api_sdk/models/aavelooprequest.py +32 -28
- compass_api_sdk/models/aaveposition.py +49 -0
- compass_api_sdk/models/aaverepayparams.py +4 -13
- compass_api_sdk/models/aaverepayrequest.py +10 -14
- compass_api_sdk/models/aavesetuseremodeparams.py +28 -0
- compass_api_sdk/models/aavesetuseremoderequest.py +48 -0
- compass_api_sdk/models/aavesupplyparams.py +4 -13
- compass_api_sdk/models/aavesupplyrequest.py +10 -14
- compass_api_sdk/models/aavevenue.py +27 -0
- compass_api_sdk/models/aavewithdrawparams.py +4 -13
- compass_api_sdk/models/aavewithdrawrequest.py +10 -14
- compass_api_sdk/models/aerodromeenrichedposition.py +109 -0
- compass_api_sdk/models/aerodromelppositionsresponse.py +10 -7
- compass_api_sdk/models/aerodromeslipstreambuyexactlyparams.py +8 -25
- compass_api_sdk/models/aerodromeslipstreambuyexactlyrequest.py +14 -26
- compass_api_sdk/models/aerodromeslipstreamincreaseliquidityprovisionrequest.py +6 -1
- compass_api_sdk/models/aerodromeslipstreammintliquidityprovisionparams.py +8 -25
- compass_api_sdk/models/aerodromeslipstreammintliquidityprovisionrequest.py +14 -26
- compass_api_sdk/models/aerodromeslipstreampoolpriceresponse.py +8 -25
- compass_api_sdk/models/aerodromeslipstreamsellexactlyparams.py +8 -25
- compass_api_sdk/models/aerodromeslipstreamsellexactlyrequest.py +13 -25
- compass_api_sdk/models/aerodromeslipstreamwithdrawliquidityprovisionrequest.py +6 -1
- compass_api_sdk/models/approvetransferrequest.py +32 -0
- compass_api_sdk/models/approvetransferresponse.py +52 -0
- compass_api_sdk/models/batchedsafeoperationsresponse_input.py +52 -0
- compass_api_sdk/models/batchedsafeoperationsresponse_output.py +52 -0
- compass_api_sdk/models/batcheduseroperationsrequest.py +15 -4
- compass_api_sdk/models/chainmarketinfo.py +29 -0
- 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
- 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
- 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
- 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
- compass_api_sdk/models/compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultposition.py +30 -0
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- 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
- compass_api_sdk/models/compass_api_backend_v1_models_wildcat_read_response_market_userposition.py +22 -0
- compass_api_sdk/models/compass_api_backend_v2_models_earn_read_response_positions_vaultposition.py +49 -0
- compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712domain.py +36 -0
- compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712types.py +36 -0
- compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712domain.py +37 -0
- compass_api_sdk/models/compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712types.py +32 -0
- compass_api_sdk/models/compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712domain.py +29 -0
- compass_api_sdk/models/compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712types.py +34 -0
- compass_api_sdk/models/createaccountrequest.py +40 -0
- compass_api_sdk/models/createaccountresponse.py +56 -0
- compass_api_sdk/models/depositforburnrequest.py +77 -0
- compass_api_sdk/models/depositforburnresponse.py +100 -0
- compass_api_sdk/models/earnmanageparams.py +74 -0
- compass_api_sdk/models/earnmanagerequest.py +130 -0
- compass_api_sdk/models/earnmanageresponse.py +52 -0
- compass_api_sdk/models/earnpositionsresponse.py +39 -0
- compass_api_sdk/models/earnswapparams.py +74 -0
- compass_api_sdk/models/earnswaprequest.py +90 -0
- compass_api_sdk/models/earnswapresponse.py +55 -0
- compass_api_sdk/models/earntransferrequest.py +104 -0
- compass_api_sdk/models/earntransferresponse.py +71 -0
- compass_api_sdk/models/eip712domainfield.py +20 -0
- compass_api_sdk/models/eip712field.py +20 -0
- compass_api_sdk/models/ethenadepositrequest.py +6 -1
- compass_api_sdk/models/ethenagetvaultresponse.py +5 -5
- compass_api_sdk/models/ethenarequesttowithdrawrequest.py +6 -1
- compass_api_sdk/models/ethenaunstakerequest.py +6 -1
- compass_api_sdk/models/fee.py +42 -0
- compass_api_sdk/models/listaavemarketsresponse.py +21 -0
- compass_api_sdk/models/marketposition.py +5 -5
- compass_api_sdk/models/maxsupplyapyinfo.py +34 -0
- compass_api_sdk/models/mintpreparecompletedresponse.py +46 -0
- compass_api_sdk/models/mintpreparependingresponse.py +65 -0
- compass_api_sdk/models/mintpreparereadyresponse.py +43 -0
- compass_api_sdk/models/mintpreparerequest.py +25 -0
- compass_api_sdk/models/morphoborrowrequest.py +6 -1
- compass_api_sdk/models/morphocheckuserpositionresponse.py +9 -3
- compass_api_sdk/models/morphodepositrequest.py +6 -1
- compass_api_sdk/models/morphogetmarketresponse.py +72 -31
- compass_api_sdk/models/morphomarket.py +26 -20
- compass_api_sdk/models/morphorepayrequest.py +11 -1
- compass_api_sdk/models/morphosupplycollateralrequest.py +11 -1
- compass_api_sdk/models/morphovault.py +10 -10
- compass_api_sdk/models/morphowithdrawcollateralrequest.py +6 -1
- compass_api_sdk/models/morphowithdrawrequest.py +6 -1
- compass_api_sdk/models/multicallexecuterequest.py +7 -2
- compass_api_sdk/models/odosswapparams.py +9 -30
- compass_api_sdk/models/odosswaprequest.py +15 -33
- compass_api_sdk/models/oneinchswapparams.py +59 -0
- compass_api_sdk/models/openposition.py +7 -7
- compass_api_sdk/models/operationtype.py +11 -0
- compass_api_sdk/models/pendlegetmarketresponse.py +5 -5
- compass_api_sdk/models/pendlemanageliquidityparams.py +2 -15
- compass_api_sdk/models/pendlemanageliquidityrequest.py +8 -16
- compass_api_sdk/models/pendleredeemyieldrequest.py +6 -1
- compass_api_sdk/models/pendletradeptparams.py +2 -15
- compass_api_sdk/models/pendletradeptrequest.py +8 -16
- compass_api_sdk/models/pendletradeytparams.py +2 -15
- compass_api_sdk/models/pendletradeytrequest.py +8 -16
- compass_api_sdk/models/permit2typeddata_input.py +46 -0
- compass_api_sdk/models/permit2typeddata_output.py +46 -0
- compass_api_sdk/models/permitfield.py +20 -0
- compass_api_sdk/models/permitmessage.py +39 -0
- compass_api_sdk/models/permittransferfrommessage.py +29 -0
- compass_api_sdk/models/permittypeddataresponse_input.py +50 -0
- compass_api_sdk/models/permittypeddataresponse_output.py +50 -0
- compass_api_sdk/models/portfolio.py +5 -5
- compass_api_sdk/models/reserve.py +6 -15
- compass_api_sdk/models/safetransactionparams.py +78 -0
- compass_api_sdk/models/safetransactionresponse.py +28 -0
- compass_api_sdk/models/safetxfield.py +20 -0
- compass_api_sdk/models/safetxmessage.py +66 -0
- compass_api_sdk/models/setallowanceparams.py +3 -16
- compass_api_sdk/models/setallowancerequest.py +9 -17
- compass_api_sdk/models/skybuyrequest.py +6 -1
- compass_api_sdk/models/skydepositrequest.py +7 -2
- compass_api_sdk/models/skysellrequest.py +7 -2
- compass_api_sdk/models/skywithdrawrequest.py +7 -2
- compass_api_sdk/models/sponsorgasrequest.py +71 -0
- compass_api_sdk/models/sponsorgasresponse.py +14 -0
- compass_api_sdk/models/tokenbalanceresponse.py +5 -15
- compass_api_sdk/models/tokenconfig.py +30 -0
- compass_api_sdk/models/tokenlistresponse.py +21 -0
- compass_api_sdk/models/tokenmarketdata.py +27 -0
- compass_api_sdk/models/tokenpermissions.py +20 -0
- compass_api_sdk/models/tokentransferparams.py +2 -15
- compass_api_sdk/models/tokentransferrequest.py +8 -16
- compass_api_sdk/models/uniswapbuyexactlyparams.py +8 -33
- compass_api_sdk/models/uniswapbuyexactlyrequest.py +14 -34
- compass_api_sdk/models/uniswapincreaseliquidityprovisionrequest.py +6 -1
- compass_api_sdk/models/uniswapmintliquidityprovisionparams.py +8 -25
- compass_api_sdk/models/uniswapmintliquidityprovisionrequest.py +14 -26
- compass_api_sdk/models/uniswappoolpriceresponse.py +8 -25
- compass_api_sdk/models/uniswapsellexactlyparams.py +4 -29
- compass_api_sdk/models/uniswapsellexactlyrequest.py +10 -30
- compass_api_sdk/models/uniswapwithdrawliquidityprovisionrequest.py +6 -1
- compass_api_sdk/models/unsignedmulticalltransaction.py +34 -3
- compass_api_sdk/models/unsignedtransaction.py +34 -3
- compass_api_sdk/models/unwrapwethrequest.py +6 -1
- compass_api_sdk/models/useroperation.py +33 -24
- compass_api_sdk/models/v1_aave_aave_supported_tokensop.py +1 -1
- compass_api_sdk/models/v1_aave_avg_rateop.py +15 -93
- compass_api_sdk/models/v1_aave_historical_transactionsop.py +15 -15
- compass_api_sdk/models/v1_aave_liquidity_changeop.py +8 -86
- compass_api_sdk/models/v1_aave_rateop.py +8 -86
- compass_api_sdk/models/v1_aave_reserve_overviewop.py +8 -86
- compass_api_sdk/models/v1_aave_std_rateop.py +15 -93
- compass_api_sdk/models/v1_aave_token_priceop.py +8 -86
- compass_api_sdk/models/v1_aave_user_position_per_tokenop.py +14 -92
- compass_api_sdk/models/v1_aave_user_position_summaryop.py +8 -8
- compass_api_sdk/models/v1_aerodrome_slipstream_liquidity_provision_positionsop.py +48 -3
- compass_api_sdk/models/v1_aerodrome_slipstream_pool_priceop.py +12 -168
- compass_api_sdk/models/v1_ethena_vaultop.py +1 -1
- compass_api_sdk/models/v1_generic_allowanceop.py +12 -26
- compass_api_sdk/models/v1_generic_ensop.py +2 -2
- compass_api_sdk/models/v1_generic_portfolioop.py +2 -2
- compass_api_sdk/models/v1_morpho_market_positionop.py +3 -3
- compass_api_sdk/models/v1_morpho_marketop.py +2 -2
- compass_api_sdk/models/v1_morpho_marketsop.py +10 -30
- compass_api_sdk/models/v1_morpho_user_positionop.py +2 -2
- compass_api_sdk/models/v1_morpho_vaultop.py +8 -8
- compass_api_sdk/models/v1_morpho_vaultsop.py +6 -16
- compass_api_sdk/models/v1_pendle_marketop.py +8 -8
- compass_api_sdk/models/v1_pendle_marketsop.py +1 -1
- compass_api_sdk/models/v1_pendle_positionsop.py +2 -2
- compass_api_sdk/models/v1_sky_positionop.py +5 -6
- compass_api_sdk/models/v1_token_balanceop.py +12 -25
- compass_api_sdk/models/{v1_generic_supported_tokensop.py → v1_token_listop.py} +6 -6
- compass_api_sdk/models/v1_token_priceop.py +8 -9
- compass_api_sdk/models/v1_transaction_bundler_aave_loopop.py +6 -6
- compass_api_sdk/models/v1_uniswap_liquidity_provision_in_rangeop.py +2 -2
- compass_api_sdk/models/v1_uniswap_liquidity_provision_positionsop.py +2 -2
- compass_api_sdk/models/v1_uniswap_pool_priceop.py +12 -168
- compass_api_sdk/models/v1_uniswap_quote_buy_exactlyop.py +20 -176
- compass_api_sdk/models/v1_uniswap_quote_sell_exactlyop.py +20 -176
- compass_api_sdk/models/v1_vaults_vaultop.py +8 -8
- compass_api_sdk/models/v1_wildcat_marketop.py +82 -0
- compass_api_sdk/models/v2_cctp_mintop.py +47 -0
- compass_api_sdk/models/v2_earn_aave_marketsop.py +57 -0
- compass_api_sdk/models/v2_earn_positionsop.py +56 -0
- compass_api_sdk/models/v2_earn_vaultsop.py +105 -0
- compass_api_sdk/models/v2bundlerequest.py +33 -0
- compass_api_sdk/models/v2bundleresponse.py +67 -0
- compass_api_sdk/models/v2useroperation.py +37 -0
- compass_api_sdk/models/vault.py +14 -14
- compass_api_sdk/models/vaultdepositrequest.py +6 -1
- compass_api_sdk/models/vaultgetvaultresponse.py +5 -5
- compass_api_sdk/models/vaultinfo.py +129 -0
- compass_api_sdk/models/vaultsresponse.py +30 -0
- compass_api_sdk/models/vaultvenue.py +27 -0
- compass_api_sdk/models/vaultwithdrawrequest.py +6 -1
- compass_api_sdk/models/wildcatgetmarketresponse.py +151 -0
- compass_api_sdk/models/{redeemunderlying.py → withdraw.py} +2 -2
- compass_api_sdk/models/wrapethrequest.py +6 -1
- compass_api_sdk/morpho.py +126 -78
- compass_api_sdk/pendle.py +68 -44
- compass_api_sdk/sdk.py +18 -11
- compass_api_sdk/sky.py +62 -38
- compass_api_sdk/smart_account.py +10 -2
- compass_api_sdk/swap.py +22 -22
- compass_api_sdk/{token_sdk.py → token.py} +511 -103
- compass_api_sdk/transaction_bundler.py +46 -16
- compass_api_sdk/uniswap_v3.py +152 -114
- compass_api_sdk/universal.py +44 -606
- compass_api_sdk/utils/annotations.py +32 -8
- compass_api_sdk/utils/forms.py +21 -10
- compass_api_sdk/utils/queryparams.py +14 -2
- compass_api_sdk/utils/retries.py +69 -5
- compass_api_sdk/utils/unmarshal_json_response.py +15 -1
- compass_api_sdk/wildcat.py +208 -0
- compass_api_sdk-2.0.21rc1.dist-info/METADATA +623 -0
- compass_api_sdk-2.0.21rc1.dist-info/RECORD +346 -0
- {compass_api_sdk-1.1.1.dist-info → compass_api_sdk-2.0.21rc1.dist-info}/WHEEL +1 -1
- compass_api_sdk/models/aerodromeposition.py +0 -70
- compass_api_sdk/models/token_enum.py +0 -81
- compass_api_sdk/models/tokenaddressresponse.py +0 -15
- compass_api_sdk/models/tokeninfo.py +0 -17
- compass_api_sdk/models/v1_token_addressop.py +0 -109
- compass_api_sdk/models/vaultposition.py +0 -24
- compass_api_sdk-1.1.1.dist-info/METADATA +0 -592
- compass_api_sdk-1.1.1.dist-info/RECORD +0 -275
|
@@ -43,6 +43,7 @@ if TYPE_CHECKING:
|
|
|
43
43
|
Multiplier,
|
|
44
44
|
MultiplierTypedDict,
|
|
45
45
|
)
|
|
46
|
+
from .aaveposition import AavePosition, AavePositionTypedDict
|
|
46
47
|
from .aaverateresponse import AaveRateResponse, AaveRateResponseTypedDict
|
|
47
48
|
from .aaverepayparams import (
|
|
48
49
|
AaveRepayParams,
|
|
@@ -61,6 +62,15 @@ if TYPE_CHECKING:
|
|
|
61
62
|
AaveReserveOverviewResponse,
|
|
62
63
|
AaveReserveOverviewResponseTypedDict,
|
|
63
64
|
)
|
|
65
|
+
from .aavesetuseremodeparams import (
|
|
66
|
+
AaveSetUserEModeParams,
|
|
67
|
+
AaveSetUserEModeParamsTypedDict,
|
|
68
|
+
)
|
|
69
|
+
from .aavesetuseremoderequest import (
|
|
70
|
+
AaveSetUserEModeRequest,
|
|
71
|
+
AaveSetUserEModeRequestChain,
|
|
72
|
+
AaveSetUserEModeRequestTypedDict,
|
|
73
|
+
)
|
|
64
74
|
from .aavestdrateresponse import AaveSTDRateResponse, AaveSTDRateResponseTypedDict
|
|
65
75
|
from .aavesupplyparams import (
|
|
66
76
|
AaveSupplyParams,
|
|
@@ -95,6 +105,7 @@ if TYPE_CHECKING:
|
|
|
95
105
|
AaveUserPositionSummaryResponse,
|
|
96
106
|
AaveUserPositionSummaryResponseTypedDict,
|
|
97
107
|
)
|
|
108
|
+
from .aavevenue import AaveVenue, AaveVenueTypedDict
|
|
98
109
|
from .aavewithdrawparams import (
|
|
99
110
|
AaveWithdrawParams,
|
|
100
111
|
AaveWithdrawParamsAmount,
|
|
@@ -108,11 +119,14 @@ if TYPE_CHECKING:
|
|
|
108
119
|
AaveWithdrawRequestChain,
|
|
109
120
|
AaveWithdrawRequestTypedDict,
|
|
110
121
|
)
|
|
122
|
+
from .aerodromeenrichedposition import (
|
|
123
|
+
AerodromeEnrichedPosition,
|
|
124
|
+
AerodromeEnrichedPositionTypedDict,
|
|
125
|
+
)
|
|
111
126
|
from .aerodromelppositionsresponse import (
|
|
112
127
|
AerodromeLPPositionsResponse,
|
|
113
128
|
AerodromeLPPositionsResponseTypedDict,
|
|
114
129
|
)
|
|
115
|
-
from .aerodromeposition import AerodromePosition, AerodromePositionTypedDict
|
|
116
130
|
from .aerodromeslipstreambuyexactlyparams import (
|
|
117
131
|
AerodromeSlipstreamBuyExactlyParams,
|
|
118
132
|
AerodromeSlipstreamBuyExactlyParamsAmountInMaximum,
|
|
@@ -218,7 +232,23 @@ if TYPE_CHECKING:
|
|
|
218
232
|
AllowanceInfoResponse,
|
|
219
233
|
AllowanceInfoResponseTypedDict,
|
|
220
234
|
)
|
|
235
|
+
from .approvetransferrequest import (
|
|
236
|
+
ApproveTransferRequest,
|
|
237
|
+
ApproveTransferRequestTypedDict,
|
|
238
|
+
)
|
|
239
|
+
from .approvetransferresponse import (
|
|
240
|
+
ApproveTransferResponse,
|
|
241
|
+
ApproveTransferResponseTypedDict,
|
|
242
|
+
)
|
|
221
243
|
from .apy import Apy, ApyTypedDict
|
|
244
|
+
from .batchedsafeoperationsresponse_input import (
|
|
245
|
+
BatchedSafeOperationsResponseInput,
|
|
246
|
+
BatchedSafeOperationsResponseInputTypedDict,
|
|
247
|
+
)
|
|
248
|
+
from .batchedsafeoperationsresponse_output import (
|
|
249
|
+
BatchedSafeOperationsResponseOutput,
|
|
250
|
+
BatchedSafeOperationsResponseOutputTypedDict,
|
|
251
|
+
)
|
|
222
252
|
from .batcheduseroperationsrequest import (
|
|
223
253
|
BatchedUserOperationsRequest,
|
|
224
254
|
BatchedUserOperationsRequestChain,
|
|
@@ -235,65 +265,102 @@ if TYPE_CHECKING:
|
|
|
235
265
|
)
|
|
236
266
|
from .chain import Chain
|
|
237
267
|
from .chaininfo import ChainInfo, ChainInfoTypedDict
|
|
238
|
-
from .
|
|
239
|
-
|
|
240
|
-
|
|
268
|
+
from .chainmarketinfo import ChainMarketInfo, ChainMarketInfoTypedDict
|
|
269
|
+
from .compass_api_backend_v1_models_generic_read_response_portfolio_tokenbalance import (
|
|
270
|
+
CompassAPIBackendV1ModelsGenericReadResponsePortfolioTokenBalance,
|
|
271
|
+
CompassAPIBackendV1ModelsGenericReadResponsePortfolioTokenBalanceTypedDict,
|
|
272
|
+
)
|
|
273
|
+
from .compass_api_backend_v1_models_morpho_read_response_check_user_position_apydata import (
|
|
274
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionApyData,
|
|
275
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionApyDataTypedDict,
|
|
276
|
+
)
|
|
277
|
+
from .compass_api_backend_v1_models_morpho_read_response_check_user_position_asset import (
|
|
278
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionAsset,
|
|
279
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionAssetTypedDict,
|
|
241
280
|
)
|
|
242
|
-
from .
|
|
243
|
-
|
|
244
|
-
|
|
281
|
+
from .compass_api_backend_v1_models_morpho_read_response_check_user_position_marketstate import (
|
|
282
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionMarketState,
|
|
283
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionMarketStateTypedDict,
|
|
245
284
|
)
|
|
246
|
-
from .
|
|
247
|
-
|
|
248
|
-
|
|
285
|
+
from .compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultposition import (
|
|
286
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultPosition,
|
|
287
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultPositionTypedDict,
|
|
249
288
|
)
|
|
250
|
-
from .
|
|
251
|
-
|
|
252
|
-
|
|
289
|
+
from .compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultstate import (
|
|
290
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultState,
|
|
291
|
+
CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultStateTypedDict,
|
|
253
292
|
)
|
|
254
|
-
from .
|
|
255
|
-
|
|
256
|
-
|
|
293
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_market_apydata import (
|
|
294
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketApyData,
|
|
295
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketApyDataTypedDict,
|
|
257
296
|
)
|
|
258
|
-
from .
|
|
259
|
-
|
|
260
|
-
|
|
297
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_market_asset import (
|
|
298
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketAsset,
|
|
299
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketAssetTypedDict,
|
|
261
300
|
)
|
|
262
|
-
from .
|
|
263
|
-
|
|
264
|
-
|
|
301
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_market_marketstate import (
|
|
302
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketMarketState,
|
|
303
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketMarketStateTypedDict,
|
|
265
304
|
)
|
|
266
|
-
from .
|
|
267
|
-
|
|
268
|
-
|
|
305
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_markets_asset import (
|
|
306
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsAsset,
|
|
307
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsAssetTypedDict,
|
|
269
308
|
)
|
|
270
|
-
from .
|
|
271
|
-
|
|
272
|
-
|
|
309
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_markets_marketstate import (
|
|
310
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsMarketState,
|
|
311
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsMarketStateTypedDict,
|
|
273
312
|
)
|
|
274
|
-
from .
|
|
275
|
-
|
|
276
|
-
|
|
313
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_vaults_asset import (
|
|
314
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsAsset,
|
|
315
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsAssetTypedDict,
|
|
277
316
|
)
|
|
278
|
-
from .
|
|
279
|
-
|
|
280
|
-
|
|
317
|
+
from .compass_api_backend_v1_models_morpho_read_response_get_vaults_vaultstate import (
|
|
318
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsVaultState,
|
|
319
|
+
CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsVaultStateTypedDict,
|
|
281
320
|
)
|
|
282
|
-
from .
|
|
283
|
-
|
|
284
|
-
|
|
321
|
+
from .compass_api_backend_v1_models_pendle_read_response_market_userposition import (
|
|
322
|
+
CompassAPIBackendV1ModelsPendleReadResponseMarketUserPosition,
|
|
323
|
+
CompassAPIBackendV1ModelsPendleReadResponseMarketUserPositionTypedDict,
|
|
285
324
|
)
|
|
286
|
-
from .
|
|
287
|
-
|
|
288
|
-
|
|
325
|
+
from .compass_api_backend_v1_models_pendle_read_response_positions_tokenbalance import (
|
|
326
|
+
CompassAPIBackendV1ModelsPendleReadResponsePositionsTokenBalance,
|
|
327
|
+
CompassAPIBackendV1ModelsPendleReadResponsePositionsTokenBalanceTypedDict,
|
|
289
328
|
)
|
|
290
|
-
from .
|
|
291
|
-
|
|
292
|
-
|
|
329
|
+
from .compass_api_backend_v1_models_vaults_read_response_vault_userposition import (
|
|
330
|
+
CompassAPIBackendV1ModelsVaultsReadResponseVaultUserPosition,
|
|
331
|
+
CompassAPIBackendV1ModelsVaultsReadResponseVaultUserPositionTypedDict,
|
|
293
332
|
)
|
|
294
|
-
from .
|
|
295
|
-
|
|
296
|
-
|
|
333
|
+
from .compass_api_backend_v1_models_wildcat_read_response_market_userposition import (
|
|
334
|
+
CompassAPIBackendV1ModelsWildcatReadResponseMarketUserPosition,
|
|
335
|
+
CompassAPIBackendV1ModelsWildcatReadResponseMarketUserPositionTypedDict,
|
|
336
|
+
)
|
|
337
|
+
from .compass_api_backend_v2_models_earn_read_response_positions_vaultposition import (
|
|
338
|
+
CompassAPIBackendV2ModelsEarnReadResponsePositionsVaultPosition,
|
|
339
|
+
CompassAPIBackendV2ModelsEarnReadResponsePositionsVaultPositionTypedDict,
|
|
340
|
+
)
|
|
341
|
+
from .compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712domain import (
|
|
342
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712Domain,
|
|
343
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712DomainTypedDict,
|
|
344
|
+
)
|
|
345
|
+
from .compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712types import (
|
|
346
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712Types,
|
|
347
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712TypesTypedDict,
|
|
348
|
+
)
|
|
349
|
+
from .compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712domain import (
|
|
350
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712Domain,
|
|
351
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712DomainTypedDict,
|
|
352
|
+
)
|
|
353
|
+
from .compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712types import (
|
|
354
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712Types,
|
|
355
|
+
CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712TypesTypedDict,
|
|
356
|
+
)
|
|
357
|
+
from .compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712domain import (
|
|
358
|
+
CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712Domain,
|
|
359
|
+
CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712DomainTypedDict,
|
|
360
|
+
)
|
|
361
|
+
from .compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712types import (
|
|
362
|
+
CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712Types,
|
|
363
|
+
CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712TypesTypedDict,
|
|
297
364
|
)
|
|
298
365
|
from .cooldownposition import (
|
|
299
366
|
CooldownEnd,
|
|
@@ -301,7 +368,83 @@ if TYPE_CHECKING:
|
|
|
301
368
|
CooldownPosition,
|
|
302
369
|
CooldownPositionTypedDict,
|
|
303
370
|
)
|
|
371
|
+
from .createaccountrequest import (
|
|
372
|
+
CreateAccountRequest,
|
|
373
|
+
CreateAccountRequestChain,
|
|
374
|
+
CreateAccountRequestTypedDict,
|
|
375
|
+
)
|
|
376
|
+
from .createaccountresponse import (
|
|
377
|
+
CreateAccountResponse,
|
|
378
|
+
CreateAccountResponseTypedDict,
|
|
379
|
+
)
|
|
380
|
+
from .depositforburnrequest import (
|
|
381
|
+
DepositForBurnRequest,
|
|
382
|
+
DepositForBurnRequestAmount,
|
|
383
|
+
DepositForBurnRequestAmountTypedDict,
|
|
384
|
+
DepositForBurnRequestChain,
|
|
385
|
+
DepositForBurnRequestTransferMode,
|
|
386
|
+
DepositForBurnRequestTypedDict,
|
|
387
|
+
DestinationChain,
|
|
388
|
+
)
|
|
389
|
+
from .depositforburnresponse import (
|
|
390
|
+
DepositForBurnResponse,
|
|
391
|
+
DepositForBurnResponseTransferMode,
|
|
392
|
+
DepositForBurnResponseTypedDict,
|
|
393
|
+
)
|
|
304
394
|
from .details import Details, DetailsTypedDict
|
|
395
|
+
from .earnmanageparams import (
|
|
396
|
+
EarnManageParams,
|
|
397
|
+
EarnManageParamsAction,
|
|
398
|
+
EarnManageParamsTypedDict,
|
|
399
|
+
EarnManageParamsVenue,
|
|
400
|
+
EarnManageParamsVenueTypedDict,
|
|
401
|
+
)
|
|
402
|
+
from .earnmanagerequest import (
|
|
403
|
+
EarnManageRequest,
|
|
404
|
+
EarnManageRequestAction,
|
|
405
|
+
EarnManageRequestTypedDict,
|
|
406
|
+
EarnManageRequestVenue,
|
|
407
|
+
EarnManageRequestVenueTypedDict,
|
|
408
|
+
)
|
|
409
|
+
from .earnmanageresponse import EarnManageResponse, EarnManageResponseTypedDict
|
|
410
|
+
from .earnpositionsresponse import (
|
|
411
|
+
EarnPositionsResponse,
|
|
412
|
+
EarnPositionsResponseTypedDict,
|
|
413
|
+
UserPosition,
|
|
414
|
+
UserPositionTypedDict,
|
|
415
|
+
)
|
|
416
|
+
from .earnswapparams import (
|
|
417
|
+
EarnSwapParams,
|
|
418
|
+
EarnSwapParamsAmountIn,
|
|
419
|
+
EarnSwapParamsAmountInTypedDict,
|
|
420
|
+
EarnSwapParamsSlippage,
|
|
421
|
+
EarnSwapParamsSlippageTypedDict,
|
|
422
|
+
EarnSwapParamsTypedDict,
|
|
423
|
+
)
|
|
424
|
+
from .earnswaprequest import (
|
|
425
|
+
EarnSwapRequest,
|
|
426
|
+
EarnSwapRequestAmountIn,
|
|
427
|
+
EarnSwapRequestAmountInTypedDict,
|
|
428
|
+
EarnSwapRequestSlippage,
|
|
429
|
+
EarnSwapRequestSlippageTypedDict,
|
|
430
|
+
EarnSwapRequestTypedDict,
|
|
431
|
+
)
|
|
432
|
+
from .earnswapresponse import EarnSwapResponse, EarnSwapResponseTypedDict
|
|
433
|
+
from .earntransferrequest import (
|
|
434
|
+
EarnTransferRequest,
|
|
435
|
+
EarnTransferRequestAction,
|
|
436
|
+
EarnTransferRequestAmount,
|
|
437
|
+
EarnTransferRequestAmountTypedDict,
|
|
438
|
+
EarnTransferRequestTypedDict,
|
|
439
|
+
)
|
|
440
|
+
from .earntransferresponse import (
|
|
441
|
+
EarnTransferResponse,
|
|
442
|
+
EarnTransferResponseEip712,
|
|
443
|
+
EarnTransferResponseEip712TypedDict,
|
|
444
|
+
EarnTransferResponseTypedDict,
|
|
445
|
+
)
|
|
446
|
+
from .eip712domainfield import Eip712DomainField, Eip712DomainFieldTypedDict
|
|
447
|
+
from .eip712field import Eip712Field, Eip712FieldTypedDict
|
|
305
448
|
from .ensnameinforesponse import EnsNameInfoResponse, EnsNameInfoResponseTypedDict
|
|
306
449
|
from .erc20data import Erc20Data, Erc20DataTypedDict
|
|
307
450
|
from .ethenadepositparams import (
|
|
@@ -342,13 +485,32 @@ if TYPE_CHECKING:
|
|
|
342
485
|
EthenaUnstakeRequestChain,
|
|
343
486
|
EthenaUnstakeRequestTypedDict,
|
|
344
487
|
)
|
|
488
|
+
from .fee import Denomination, Fee, FeeAmount, FeeAmountTypedDict, FeeTypedDict
|
|
345
489
|
from .feeenum import FeeEnum
|
|
346
490
|
from .interestratemode import InterestRateMode
|
|
347
491
|
from .liquidationcall import LiquidationCall, LiquidationCallTypedDict
|
|
492
|
+
from .listaavemarketsresponse import (
|
|
493
|
+
ListAaveMarketsResponse,
|
|
494
|
+
ListAaveMarketsResponseTypedDict,
|
|
495
|
+
)
|
|
348
496
|
from .lpbalance import LpBalance, LpBalanceTypedDict
|
|
349
497
|
from .market import Market, MarketTypedDict
|
|
350
498
|
from .marketposition import MarketPosition, MarketPositionTypedDict
|
|
351
499
|
from .markettokens import MarketTokens, MarketTokensTypedDict
|
|
500
|
+
from .maxsupplyapyinfo import MaxSupplyApyInfo, MaxSupplyApyInfoTypedDict
|
|
501
|
+
from .mintpreparecompletedresponse import (
|
|
502
|
+
MintPrepareCompletedResponse,
|
|
503
|
+
MintPrepareCompletedResponseTypedDict,
|
|
504
|
+
)
|
|
505
|
+
from .mintpreparependingresponse import (
|
|
506
|
+
MintPreparePendingResponse,
|
|
507
|
+
MintPreparePendingResponseTypedDict,
|
|
508
|
+
)
|
|
509
|
+
from .mintpreparereadyresponse import (
|
|
510
|
+
MintPrepareReadyResponse,
|
|
511
|
+
MintPrepareReadyResponseTypedDict,
|
|
512
|
+
)
|
|
513
|
+
from .mintpreparerequest import MintPrepareRequest, MintPrepareRequestTypedDict
|
|
352
514
|
from .morphoborrowparams import (
|
|
353
515
|
MorphoBorrowParams,
|
|
354
516
|
MorphoBorrowParamsAmount,
|
|
@@ -455,23 +617,15 @@ if TYPE_CHECKING:
|
|
|
455
617
|
)
|
|
456
618
|
from .odosswapparams import (
|
|
457
619
|
OdosSwapParams,
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
OdosSwapParamsTokenIn,
|
|
461
|
-
OdosSwapParamsTokenInTypedDict,
|
|
462
|
-
OdosSwapParamsTokenOut,
|
|
463
|
-
OdosSwapParamsTokenOutTypedDict,
|
|
620
|
+
OdosSwapParamsAmountIn,
|
|
621
|
+
OdosSwapParamsAmountInTypedDict,
|
|
464
622
|
OdosSwapParamsTypedDict,
|
|
465
623
|
)
|
|
466
624
|
from .odosswaprequest import (
|
|
467
625
|
OdosSwapRequest,
|
|
468
|
-
|
|
469
|
-
|
|
626
|
+
OdosSwapRequestAmountIn,
|
|
627
|
+
OdosSwapRequestAmountInTypedDict,
|
|
470
628
|
OdosSwapRequestChain,
|
|
471
|
-
OdosSwapRequestTokenIn,
|
|
472
|
-
OdosSwapRequestTokenInTypedDict,
|
|
473
|
-
OdosSwapRequestTokenOut,
|
|
474
|
-
OdosSwapRequestTokenOutTypedDict,
|
|
475
629
|
OdosSwapRequestTypedDict,
|
|
476
630
|
)
|
|
477
631
|
from .odostransactionresponse import (
|
|
@@ -480,7 +634,14 @@ if TYPE_CHECKING:
|
|
|
480
634
|
OdosTransactionResponseTransactionTypedDict,
|
|
481
635
|
OdosTransactionResponseTypedDict,
|
|
482
636
|
)
|
|
637
|
+
from .oneinchswapparams import (
|
|
638
|
+
OneInchSwapParams,
|
|
639
|
+
OneInchSwapParamsAmountIn,
|
|
640
|
+
OneInchSwapParamsAmountInTypedDict,
|
|
641
|
+
OneInchSwapParamsTypedDict,
|
|
642
|
+
)
|
|
483
643
|
from .openposition import OpenPosition, OpenPositionTypedDict
|
|
644
|
+
from .operationtype import OperationType
|
|
484
645
|
from .pendlegetmarketresponse import (
|
|
485
646
|
PendleGetMarketResponse,
|
|
486
647
|
PendleGetMarketResponseTypedDict,
|
|
@@ -498,8 +659,6 @@ if TYPE_CHECKING:
|
|
|
498
659
|
PendleManageLiquidityParamsAction,
|
|
499
660
|
PendleManageLiquidityParamsAmountIn,
|
|
500
661
|
PendleManageLiquidityParamsAmountInTypedDict,
|
|
501
|
-
PendleManageLiquidityParamsToken,
|
|
502
|
-
PendleManageLiquidityParamsTokenTypedDict,
|
|
503
662
|
PendleManageLiquidityParamsTypedDict,
|
|
504
663
|
)
|
|
505
664
|
from .pendlemanageliquidityrequest import (
|
|
@@ -508,8 +667,6 @@ if TYPE_CHECKING:
|
|
|
508
667
|
PendleManageLiquidityRequestAmountIn,
|
|
509
668
|
PendleManageLiquidityRequestAmountInTypedDict,
|
|
510
669
|
PendleManageLiquidityRequestChain,
|
|
511
|
-
PendleManageLiquidityRequestToken,
|
|
512
|
-
PendleManageLiquidityRequestTokenTypedDict,
|
|
513
670
|
PendleManageLiquidityRequestTypedDict,
|
|
514
671
|
)
|
|
515
672
|
from .pendlemarket import PendleMarket, PendleMarketTypedDict
|
|
@@ -527,8 +684,6 @@ if TYPE_CHECKING:
|
|
|
527
684
|
PendleTradePtParamsAction,
|
|
528
685
|
PendleTradePtParamsAmountIn,
|
|
529
686
|
PendleTradePtParamsAmountInTypedDict,
|
|
530
|
-
PendleTradePtParamsToken,
|
|
531
|
-
PendleTradePtParamsTokenTypedDict,
|
|
532
687
|
PendleTradePtParamsTypedDict,
|
|
533
688
|
)
|
|
534
689
|
from .pendletradeptrequest import (
|
|
@@ -537,8 +692,6 @@ if TYPE_CHECKING:
|
|
|
537
692
|
PendleTradePtRequestAmountIn,
|
|
538
693
|
PendleTradePtRequestAmountInTypedDict,
|
|
539
694
|
PendleTradePtRequestChain,
|
|
540
|
-
PendleTradePtRequestToken,
|
|
541
|
-
PendleTradePtRequestTokenTypedDict,
|
|
542
695
|
PendleTradePtRequestTypedDict,
|
|
543
696
|
)
|
|
544
697
|
from .pendletradeytparams import (
|
|
@@ -546,8 +699,6 @@ if TYPE_CHECKING:
|
|
|
546
699
|
PendleTradeYtParamsAction,
|
|
547
700
|
PendleTradeYtParamsAmountIn,
|
|
548
701
|
PendleTradeYtParamsAmountInTypedDict,
|
|
549
|
-
PendleTradeYtParamsToken,
|
|
550
|
-
PendleTradeYtParamsTokenTypedDict,
|
|
551
702
|
PendleTradeYtParamsTypedDict,
|
|
552
703
|
)
|
|
553
704
|
from .pendletradeytrequest import (
|
|
@@ -556,8 +707,6 @@ if TYPE_CHECKING:
|
|
|
556
707
|
PendleTradeYtRequestAmountIn,
|
|
557
708
|
PendleTradeYtRequestAmountInTypedDict,
|
|
558
709
|
PendleTradeYtRequestChain,
|
|
559
|
-
PendleTradeYtRequestToken,
|
|
560
|
-
PendleTradeYtRequestTokenTypedDict,
|
|
561
710
|
PendleTradeYtRequestTypedDict,
|
|
562
711
|
)
|
|
563
712
|
from .pendletxresponse import (
|
|
@@ -566,12 +715,43 @@ if TYPE_CHECKING:
|
|
|
566
715
|
PendleTxResponseTransactionTypedDict,
|
|
567
716
|
PendleTxResponseTypedDict,
|
|
568
717
|
)
|
|
718
|
+
from .permit2typeddata_input import (
|
|
719
|
+
Permit2TypedDataInput,
|
|
720
|
+
Permit2TypedDataInputTypedDict,
|
|
721
|
+
)
|
|
722
|
+
from .permit2typeddata_output import (
|
|
723
|
+
Permit2TypedDataOutput,
|
|
724
|
+
Permit2TypedDataOutputTypedDict,
|
|
725
|
+
)
|
|
726
|
+
from .permitfield import PermitField, PermitFieldTypedDict
|
|
727
|
+
from .permitmessage import PermitMessage, PermitMessageTypedDict
|
|
728
|
+
from .permittransferfrommessage import (
|
|
729
|
+
PermitTransferFromMessage,
|
|
730
|
+
PermitTransferFromMessageTypedDict,
|
|
731
|
+
)
|
|
732
|
+
from .permittypeddataresponse_input import (
|
|
733
|
+
PermitTypedDataResponseInput,
|
|
734
|
+
PermitTypedDataResponseInputTypedDict,
|
|
735
|
+
)
|
|
736
|
+
from .permittypeddataresponse_output import (
|
|
737
|
+
PermitTypedDataResponseOutput,
|
|
738
|
+
PermitTypedDataResponseOutputTypedDict,
|
|
739
|
+
)
|
|
569
740
|
from .portfolio import Portfolio, PortfolioTypedDict
|
|
570
741
|
from .position import Position, PositionTypedDict
|
|
571
742
|
from .protocol import Protocol
|
|
572
|
-
from .redeemunderlying import RedeemUnderlying, RedeemUnderlyingTypedDict
|
|
573
743
|
from .repay import Repay, RepayTypedDict
|
|
574
744
|
from .reserve import Reserve, ReserveTypedDict
|
|
745
|
+
from .safetransactionparams import (
|
|
746
|
+
SafeTransactionParams,
|
|
747
|
+
SafeTransactionParamsTypedDict,
|
|
748
|
+
)
|
|
749
|
+
from .safetransactionresponse import (
|
|
750
|
+
SafeTransactionResponse,
|
|
751
|
+
SafeTransactionResponseTypedDict,
|
|
752
|
+
)
|
|
753
|
+
from .safetxfield import SafeTxField, SafeTxFieldTypedDict
|
|
754
|
+
from .safetxmessage import SafeTxMessage, SafeTxMessageTypedDict
|
|
575
755
|
from .security import Security, SecurityTypedDict
|
|
576
756
|
from .setallowanceparams import (
|
|
577
757
|
SetAllowanceParams,
|
|
@@ -580,8 +760,6 @@ if TYPE_CHECKING:
|
|
|
580
760
|
SetAllowanceParamsContractEnum,
|
|
581
761
|
SetAllowanceParamsContractUnion,
|
|
582
762
|
SetAllowanceParamsContractUnionTypedDict,
|
|
583
|
-
SetAllowanceParamsToken,
|
|
584
|
-
SetAllowanceParamsTokenTypedDict,
|
|
585
763
|
SetAllowanceParamsTypedDict,
|
|
586
764
|
)
|
|
587
765
|
from .setallowancerequest import (
|
|
@@ -592,8 +770,6 @@ if TYPE_CHECKING:
|
|
|
592
770
|
SetAllowanceRequestContractEnum,
|
|
593
771
|
SetAllowanceRequestContractUnion,
|
|
594
772
|
SetAllowanceRequestContractUnionTypedDict,
|
|
595
|
-
SetAllowanceRequestToken,
|
|
596
|
-
SetAllowanceRequestTokenTypedDict,
|
|
597
773
|
SetAllowanceRequestTypedDict,
|
|
598
774
|
)
|
|
599
775
|
from .signedauthorization import (
|
|
@@ -657,29 +833,30 @@ if TYPE_CHECKING:
|
|
|
657
833
|
SkyWithdrawRequestChain,
|
|
658
834
|
SkyWithdrawRequestTypedDict,
|
|
659
835
|
)
|
|
836
|
+
from .sponsorgasrequest import (
|
|
837
|
+
SponsorGasRequest,
|
|
838
|
+
SponsorGasRequestEip712,
|
|
839
|
+
SponsorGasRequestEip712TypedDict,
|
|
840
|
+
SponsorGasRequestTypedDict,
|
|
841
|
+
)
|
|
842
|
+
from .sponsorgasresponse import SponsorGasResponse, SponsorGasResponseTypedDict
|
|
660
843
|
from .supply import Supply, SupplyTypedDict
|
|
661
844
|
from .supportedchaininfo import SupportedChainInfo, SupportedChainInfoTypedDict
|
|
662
845
|
from .swapborrowrate import SwapBorrowRate, SwapBorrowRateTypedDict
|
|
663
846
|
from .syposition import SyPosition, SyPositionTypedDict
|
|
664
|
-
from .token_enum import TokenEnum
|
|
665
|
-
from .tokenaddressresponse import (
|
|
666
|
-
TokenAddressResponse,
|
|
667
|
-
TokenAddressResponseTypedDict,
|
|
668
|
-
)
|
|
669
847
|
from .tokenbalanceresponse import (
|
|
670
848
|
TokenBalanceResponse,
|
|
671
849
|
TokenBalanceResponseTypedDict,
|
|
672
|
-
TokenSymbol,
|
|
673
|
-
TokenSymbolTypedDict,
|
|
674
850
|
)
|
|
675
|
-
from .
|
|
851
|
+
from .tokenconfig import TokenConfig, TokenConfigTypedDict
|
|
852
|
+
from .tokenlistresponse import TokenListResponse, TokenListResponseTypedDict
|
|
853
|
+
from .tokenmarketdata import TokenMarketData, TokenMarketDataTypedDict
|
|
854
|
+
from .tokenpermissions import TokenPermissions, TokenPermissionsTypedDict
|
|
676
855
|
from .tokenpriceresponse import TokenPriceResponse, TokenPriceResponseTypedDict
|
|
677
856
|
from .tokentransferparams import (
|
|
678
857
|
TokenTransferParams,
|
|
679
858
|
TokenTransferParamsAmount,
|
|
680
859
|
TokenTransferParamsAmountTypedDict,
|
|
681
|
-
TokenTransferParamsToken,
|
|
682
|
-
TokenTransferParamsTokenTypedDict,
|
|
683
860
|
TokenTransferParamsTypedDict,
|
|
684
861
|
)
|
|
685
862
|
from .tokentransferrequest import (
|
|
@@ -687,8 +864,6 @@ if TYPE_CHECKING:
|
|
|
687
864
|
TokenTransferRequestAmount,
|
|
688
865
|
TokenTransferRequestAmountTypedDict,
|
|
689
866
|
TokenTransferRequestChain,
|
|
690
|
-
TokenTransferRequestToken,
|
|
691
|
-
TokenTransferRequestTokenTypedDict,
|
|
692
867
|
TokenTransferRequestTypedDict,
|
|
693
868
|
)
|
|
694
869
|
from .transactionresponse import (
|
|
@@ -702,10 +877,6 @@ if TYPE_CHECKING:
|
|
|
702
877
|
UniswapBuyExactlyParams,
|
|
703
878
|
UniswapBuyExactlyParamsAmountOut,
|
|
704
879
|
UniswapBuyExactlyParamsAmountOutTypedDict,
|
|
705
|
-
UniswapBuyExactlyParamsTokenIn,
|
|
706
|
-
UniswapBuyExactlyParamsTokenInTypedDict,
|
|
707
|
-
UniswapBuyExactlyParamsTokenOut,
|
|
708
|
-
UniswapBuyExactlyParamsTokenOutTypedDict,
|
|
709
880
|
UniswapBuyExactlyParamsTypedDict,
|
|
710
881
|
)
|
|
711
882
|
from .uniswapbuyexactlyrequest import (
|
|
@@ -713,10 +884,6 @@ if TYPE_CHECKING:
|
|
|
713
884
|
UniswapBuyExactlyRequestAmountOut,
|
|
714
885
|
UniswapBuyExactlyRequestAmountOutTypedDict,
|
|
715
886
|
UniswapBuyExactlyRequestChain,
|
|
716
|
-
UniswapBuyExactlyRequestTokenIn,
|
|
717
|
-
UniswapBuyExactlyRequestTokenInTypedDict,
|
|
718
|
-
UniswapBuyExactlyRequestTokenOut,
|
|
719
|
-
UniswapBuyExactlyRequestTokenOutTypedDict,
|
|
720
887
|
UniswapBuyExactlyRequestTypedDict,
|
|
721
888
|
)
|
|
722
889
|
from .uniswapbuyexactlytransactionresponse import (
|
|
@@ -799,10 +966,6 @@ if TYPE_CHECKING:
|
|
|
799
966
|
UniswapSellExactlyParams,
|
|
800
967
|
UniswapSellExactlyParamsAmountIn,
|
|
801
968
|
UniswapSellExactlyParamsAmountInTypedDict,
|
|
802
|
-
UniswapSellExactlyParamsTokenIn,
|
|
803
|
-
UniswapSellExactlyParamsTokenInTypedDict,
|
|
804
|
-
UniswapSellExactlyParamsTokenOut,
|
|
805
|
-
UniswapSellExactlyParamsTokenOutTypedDict,
|
|
806
969
|
UniswapSellExactlyParamsTypedDict,
|
|
807
970
|
)
|
|
808
971
|
from .uniswapsellexactlyrequest import (
|
|
@@ -810,10 +973,6 @@ if TYPE_CHECKING:
|
|
|
810
973
|
UniswapSellExactlyRequestAmountIn,
|
|
811
974
|
UniswapSellExactlyRequestAmountInTypedDict,
|
|
812
975
|
UniswapSellExactlyRequestChain,
|
|
813
|
-
UniswapSellExactlyRequestTokenIn,
|
|
814
|
-
UniswapSellExactlyRequestTokenInTypedDict,
|
|
815
|
-
UniswapSellExactlyRequestTokenOut,
|
|
816
|
-
UniswapSellExactlyRequestTokenOutTypedDict,
|
|
817
976
|
UniswapSellExactlyRequestTypedDict,
|
|
818
977
|
)
|
|
819
978
|
from .uniswapsellexactlytransactionresponse import (
|
|
@@ -859,9 +1018,9 @@ if TYPE_CHECKING:
|
|
|
859
1018
|
)
|
|
860
1019
|
from .usageascollateral import UsageAsCollateral, UsageAsCollateralTypedDict
|
|
861
1020
|
from .useroperation import (
|
|
862
|
-
Body,
|
|
863
|
-
BodyTypedDict,
|
|
864
1021
|
UserOperation,
|
|
1022
|
+
UserOperationBody,
|
|
1023
|
+
UserOperationBodyTypedDict,
|
|
865
1024
|
UserOperationTypedDict,
|
|
866
1025
|
)
|
|
867
1026
|
from .useroperationresponse import (
|
|
@@ -878,7 +1037,6 @@ if TYPE_CHECKING:
|
|
|
878
1037
|
V1AaveAvgRateChain,
|
|
879
1038
|
V1AaveAvgRateRequest,
|
|
880
1039
|
V1AaveAvgRateRequestTypedDict,
|
|
881
|
-
V1AaveAvgRateToken,
|
|
882
1040
|
)
|
|
883
1041
|
from .v1_aave_historical_transactionsop import (
|
|
884
1042
|
V1AaveHistoricalTransactionsChain,
|
|
@@ -889,37 +1047,31 @@ if TYPE_CHECKING:
|
|
|
889
1047
|
V1AaveLiquidityChangeChain,
|
|
890
1048
|
V1AaveLiquidityChangeRequest,
|
|
891
1049
|
V1AaveLiquidityChangeRequestTypedDict,
|
|
892
|
-
V1AaveLiquidityChangeToken,
|
|
893
1050
|
)
|
|
894
1051
|
from .v1_aave_rateop import (
|
|
895
1052
|
V1AaveRateChain,
|
|
896
1053
|
V1AaveRateRequest,
|
|
897
1054
|
V1AaveRateRequestTypedDict,
|
|
898
|
-
V1AaveRateToken,
|
|
899
1055
|
)
|
|
900
1056
|
from .v1_aave_reserve_overviewop import (
|
|
901
1057
|
V1AaveReserveOverviewChain,
|
|
902
1058
|
V1AaveReserveOverviewRequest,
|
|
903
1059
|
V1AaveReserveOverviewRequestTypedDict,
|
|
904
|
-
V1AaveReserveOverviewToken,
|
|
905
1060
|
)
|
|
906
1061
|
from .v1_aave_std_rateop import (
|
|
907
1062
|
V1AaveStdRateChain,
|
|
908
1063
|
V1AaveStdRateRequest,
|
|
909
1064
|
V1AaveStdRateRequestTypedDict,
|
|
910
|
-
V1AaveStdRateToken,
|
|
911
1065
|
)
|
|
912
1066
|
from .v1_aave_token_priceop import (
|
|
913
1067
|
V1AaveTokenPriceChain,
|
|
914
1068
|
V1AaveTokenPriceRequest,
|
|
915
1069
|
V1AaveTokenPriceRequestTypedDict,
|
|
916
|
-
V1AaveTokenPriceToken,
|
|
917
1070
|
)
|
|
918
1071
|
from .v1_aave_user_position_per_tokenop import (
|
|
919
1072
|
V1AaveUserPositionPerTokenChain,
|
|
920
1073
|
V1AaveUserPositionPerTokenRequest,
|
|
921
1074
|
V1AaveUserPositionPerTokenRequestTypedDict,
|
|
922
|
-
V1AaveUserPositionPerTokenToken,
|
|
923
1075
|
)
|
|
924
1076
|
from .v1_aave_user_position_summaryop import (
|
|
925
1077
|
V1AaveUserPositionSummaryChain,
|
|
@@ -935,8 +1087,6 @@ if TYPE_CHECKING:
|
|
|
935
1087
|
V1AerodromeSlipstreamPoolPriceChain,
|
|
936
1088
|
V1AerodromeSlipstreamPoolPriceRequest,
|
|
937
1089
|
V1AerodromeSlipstreamPoolPriceRequestTypedDict,
|
|
938
|
-
V1AerodromeSlipstreamPoolPriceTokenInToken,
|
|
939
|
-
V1AerodromeSlipstreamPoolPriceTokenOutToken,
|
|
940
1090
|
)
|
|
941
1091
|
from .v1_ethena_vaultop import (
|
|
942
1092
|
V1EthenaVaultChain,
|
|
@@ -950,8 +1100,6 @@ if TYPE_CHECKING:
|
|
|
950
1100
|
V1GenericAllowanceContractUnionTypedDict,
|
|
951
1101
|
V1GenericAllowanceRequest,
|
|
952
1102
|
V1GenericAllowanceRequestTypedDict,
|
|
953
|
-
V1GenericAllowanceToken,
|
|
954
|
-
V1GenericAllowanceTokenTypedDict,
|
|
955
1103
|
)
|
|
956
1104
|
from .v1_generic_ensop import (
|
|
957
1105
|
V1GenericEnsChain,
|
|
@@ -967,11 +1115,6 @@ if TYPE_CHECKING:
|
|
|
967
1115
|
V1GenericSupportedChainsRequest,
|
|
968
1116
|
V1GenericSupportedChainsRequestTypedDict,
|
|
969
1117
|
)
|
|
970
|
-
from .v1_generic_supported_tokensop import (
|
|
971
|
-
V1GenericSupportedTokensChain,
|
|
972
|
-
V1GenericSupportedTokensRequest,
|
|
973
|
-
V1GenericSupportedTokensRequestTypedDict,
|
|
974
|
-
)
|
|
975
1118
|
from .v1_morpho_market_positionop import (
|
|
976
1119
|
V1MorphoMarketPositionChain,
|
|
977
1120
|
V1MorphoMarketPositionRequest,
|
|
@@ -983,10 +1126,6 @@ if TYPE_CHECKING:
|
|
|
983
1126
|
V1MorphoMarketRequestTypedDict,
|
|
984
1127
|
)
|
|
985
1128
|
from .v1_morpho_marketsop import (
|
|
986
|
-
CollateralToken,
|
|
987
|
-
CollateralTokenTypedDict,
|
|
988
|
-
LoanToken,
|
|
989
|
-
LoanTokenTypedDict,
|
|
990
1129
|
V1MorphoMarketsChain,
|
|
991
1130
|
V1MorphoMarketsRequest,
|
|
992
1131
|
V1MorphoMarketsRequestTypedDict,
|
|
@@ -1002,8 +1141,6 @@ if TYPE_CHECKING:
|
|
|
1002
1141
|
V1MorphoVaultRequestTypedDict,
|
|
1003
1142
|
)
|
|
1004
1143
|
from .v1_morpho_vaultsop import (
|
|
1005
|
-
DepositToken,
|
|
1006
|
-
DepositTokenTypedDict,
|
|
1007
1144
|
V1MorphoVaultsChain,
|
|
1008
1145
|
V1MorphoVaultsRequest,
|
|
1009
1146
|
V1MorphoVaultsRequestTypedDict,
|
|
@@ -1028,18 +1165,15 @@ if TYPE_CHECKING:
|
|
|
1028
1165
|
V1SkyPositionRequest,
|
|
1029
1166
|
V1SkyPositionRequestTypedDict,
|
|
1030
1167
|
)
|
|
1031
|
-
from .v1_token_addressop import (
|
|
1032
|
-
V1TokenAddressChain,
|
|
1033
|
-
V1TokenAddressRequest,
|
|
1034
|
-
V1TokenAddressRequestTypedDict,
|
|
1035
|
-
V1TokenAddressToken,
|
|
1036
|
-
)
|
|
1037
1168
|
from .v1_token_balanceop import (
|
|
1038
1169
|
V1TokenBalanceChain,
|
|
1039
1170
|
V1TokenBalanceRequest,
|
|
1040
1171
|
V1TokenBalanceRequestTypedDict,
|
|
1041
|
-
|
|
1042
|
-
|
|
1172
|
+
)
|
|
1173
|
+
from .v1_token_listop import (
|
|
1174
|
+
V1TokenListChain,
|
|
1175
|
+
V1TokenListRequest,
|
|
1176
|
+
V1TokenListRequestTypedDict,
|
|
1043
1177
|
)
|
|
1044
1178
|
from .v1_token_priceop import (
|
|
1045
1179
|
V1TokenPriceChain,
|
|
@@ -1065,8 +1199,6 @@ if TYPE_CHECKING:
|
|
|
1065
1199
|
V1UniswapPoolPriceFeeEnum,
|
|
1066
1200
|
V1UniswapPoolPriceRequest,
|
|
1067
1201
|
V1UniswapPoolPriceRequestTypedDict,
|
|
1068
|
-
V1UniswapPoolPriceTokenInToken,
|
|
1069
|
-
V1UniswapPoolPriceTokenOutToken,
|
|
1070
1202
|
)
|
|
1071
1203
|
from .v1_uniswap_quote_buy_exactlyop import (
|
|
1072
1204
|
V1UniswapQuoteBuyExactlyAmountOut,
|
|
@@ -1075,8 +1207,6 @@ if TYPE_CHECKING:
|
|
|
1075
1207
|
V1UniswapQuoteBuyExactlyFeeEnum,
|
|
1076
1208
|
V1UniswapQuoteBuyExactlyRequest,
|
|
1077
1209
|
V1UniswapQuoteBuyExactlyRequestTypedDict,
|
|
1078
|
-
V1UniswapQuoteBuyExactlyTokenInToken,
|
|
1079
|
-
V1UniswapQuoteBuyExactlyTokenOutToken,
|
|
1080
1210
|
)
|
|
1081
1211
|
from .v1_uniswap_quote_sell_exactlyop import (
|
|
1082
1212
|
V1UniswapQuoteSellExactlyAmountIn,
|
|
@@ -1085,14 +1215,45 @@ if TYPE_CHECKING:
|
|
|
1085
1215
|
V1UniswapQuoteSellExactlyFeeEnum,
|
|
1086
1216
|
V1UniswapQuoteSellExactlyRequest,
|
|
1087
1217
|
V1UniswapQuoteSellExactlyRequestTypedDict,
|
|
1088
|
-
V1UniswapQuoteSellExactlyTokenInToken,
|
|
1089
|
-
V1UniswapQuoteSellExactlyTokenOutToken,
|
|
1090
1218
|
)
|
|
1091
1219
|
from .v1_vaults_vaultop import (
|
|
1092
1220
|
V1VaultsVaultChain,
|
|
1093
1221
|
V1VaultsVaultRequest,
|
|
1094
1222
|
V1VaultsVaultRequestTypedDict,
|
|
1095
1223
|
)
|
|
1224
|
+
from .v1_wildcat_marketop import (
|
|
1225
|
+
V1WildcatMarketChain,
|
|
1226
|
+
V1WildcatMarketRequest,
|
|
1227
|
+
V1WildcatMarketRequestTypedDict,
|
|
1228
|
+
)
|
|
1229
|
+
from .v2_cctp_mintop import (
|
|
1230
|
+
Response200V2CctpMint,
|
|
1231
|
+
Response200V2CctpMintTypedDict,
|
|
1232
|
+
V2CctpMintResponse,
|
|
1233
|
+
V2CctpMintResponseTypedDict,
|
|
1234
|
+
)
|
|
1235
|
+
from .v2_earn_aave_marketsop import (
|
|
1236
|
+
V2EarnAaveMarketsRequest,
|
|
1237
|
+
V2EarnAaveMarketsRequestTypedDict,
|
|
1238
|
+
)
|
|
1239
|
+
from .v2_earn_positionsop import (
|
|
1240
|
+
V2EarnPositionsChain,
|
|
1241
|
+
V2EarnPositionsRequest,
|
|
1242
|
+
V2EarnPositionsRequestTypedDict,
|
|
1243
|
+
)
|
|
1244
|
+
from .v2_earn_vaultsop import (
|
|
1245
|
+
Direction,
|
|
1246
|
+
V2EarnVaultsRequest,
|
|
1247
|
+
V2EarnVaultsRequestTypedDict,
|
|
1248
|
+
)
|
|
1249
|
+
from .v2bundlerequest import V2BundleRequest, V2BundleRequestTypedDict
|
|
1250
|
+
from .v2bundleresponse import V2BundleResponse, V2BundleResponseTypedDict
|
|
1251
|
+
from .v2useroperation import (
|
|
1252
|
+
V2UserOperation,
|
|
1253
|
+
V2UserOperationBody,
|
|
1254
|
+
V2UserOperationBodyTypedDict,
|
|
1255
|
+
V2UserOperationTypedDict,
|
|
1256
|
+
)
|
|
1096
1257
|
from .validationerror import (
|
|
1097
1258
|
Loc,
|
|
1098
1259
|
LocTypedDict,
|
|
@@ -1117,7 +1278,9 @@ if TYPE_CHECKING:
|
|
|
1117
1278
|
VaultGetVaultResponse,
|
|
1118
1279
|
VaultGetVaultResponseTypedDict,
|
|
1119
1280
|
)
|
|
1120
|
-
from .
|
|
1281
|
+
from .vaultinfo import VaultInfo, VaultInfoTypedDict
|
|
1282
|
+
from .vaultsresponse import VaultsResponse, VaultsResponseTypedDict
|
|
1283
|
+
from .vaultvenue import VaultVenue, VaultVenueTypedDict
|
|
1121
1284
|
from .vaultwithdrawparams import VaultWithdrawParams, VaultWithdrawParamsTypedDict
|
|
1122
1285
|
from .vaultwithdrawrequest import (
|
|
1123
1286
|
VaultWithdrawRequest,
|
|
@@ -1125,6 +1288,11 @@ if TYPE_CHECKING:
|
|
|
1125
1288
|
VaultWithdrawRequestTypedDict,
|
|
1126
1289
|
)
|
|
1127
1290
|
from .weeklyapys import WeeklyApys, WeeklyApysTypedDict
|
|
1291
|
+
from .wildcatgetmarketresponse import (
|
|
1292
|
+
WildcatGetMarketResponse,
|
|
1293
|
+
WildcatGetMarketResponseTypedDict,
|
|
1294
|
+
)
|
|
1295
|
+
from .withdraw import Withdraw, WithdrawTypedDict
|
|
1128
1296
|
from .wrapethparams import (
|
|
1129
1297
|
WrapEthParams,
|
|
1130
1298
|
WrapEthParamsAmount,
|
|
@@ -1161,6 +1329,8 @@ __all__ = [
|
|
|
1161
1329
|
"AaveLoopRequest",
|
|
1162
1330
|
"AaveLoopRequestChain",
|
|
1163
1331
|
"AaveLoopRequestTypedDict",
|
|
1332
|
+
"AavePosition",
|
|
1333
|
+
"AavePositionTypedDict",
|
|
1164
1334
|
"AaveRateResponse",
|
|
1165
1335
|
"AaveRateResponseTypedDict",
|
|
1166
1336
|
"AaveRepayParams",
|
|
@@ -1176,6 +1346,11 @@ __all__ = [
|
|
|
1176
1346
|
"AaveReserveOverviewResponseTypedDict",
|
|
1177
1347
|
"AaveSTDRateResponse",
|
|
1178
1348
|
"AaveSTDRateResponseTypedDict",
|
|
1349
|
+
"AaveSetUserEModeParams",
|
|
1350
|
+
"AaveSetUserEModeParamsTypedDict",
|
|
1351
|
+
"AaveSetUserEModeRequest",
|
|
1352
|
+
"AaveSetUserEModeRequestChain",
|
|
1353
|
+
"AaveSetUserEModeRequestTypedDict",
|
|
1179
1354
|
"AaveSupplyParams",
|
|
1180
1355
|
"AaveSupplyParamsAmount",
|
|
1181
1356
|
"AaveSupplyParamsAmountTypedDict",
|
|
@@ -1195,6 +1370,8 @@ __all__ = [
|
|
|
1195
1370
|
"AaveUserPositionPerTokenResponseTypedDict",
|
|
1196
1371
|
"AaveUserPositionSummaryResponse",
|
|
1197
1372
|
"AaveUserPositionSummaryResponseTypedDict",
|
|
1373
|
+
"AaveVenue",
|
|
1374
|
+
"AaveVenueTypedDict",
|
|
1198
1375
|
"AaveWithdrawParams",
|
|
1199
1376
|
"AaveWithdrawParamsAmount",
|
|
1200
1377
|
"AaveWithdrawParamsAmountTypedDict",
|
|
@@ -1204,10 +1381,10 @@ __all__ = [
|
|
|
1204
1381
|
"AaveWithdrawRequestAmountTypedDict",
|
|
1205
1382
|
"AaveWithdrawRequestChain",
|
|
1206
1383
|
"AaveWithdrawRequestTypedDict",
|
|
1384
|
+
"AerodromeEnrichedPosition",
|
|
1385
|
+
"AerodromeEnrichedPositionTypedDict",
|
|
1207
1386
|
"AerodromeLPPositionsResponse",
|
|
1208
1387
|
"AerodromeLPPositionsResponseTypedDict",
|
|
1209
|
-
"AerodromePosition",
|
|
1210
|
-
"AerodromePositionTypedDict",
|
|
1211
1388
|
"AerodromeSlipstreamBuyExactlyParams",
|
|
1212
1389
|
"AerodromeSlipstreamBuyExactlyParamsAmountInMaximum",
|
|
1213
1390
|
"AerodromeSlipstreamBuyExactlyParamsAmountInMaximumTypedDict",
|
|
@@ -1289,15 +1466,21 @@ __all__ = [
|
|
|
1289
1466
|
"AerodromeSlipstreamWithdrawLiquidityProvisionRequestTypedDict",
|
|
1290
1467
|
"AllowanceInfoResponse",
|
|
1291
1468
|
"AllowanceInfoResponseTypedDict",
|
|
1469
|
+
"ApproveTransferRequest",
|
|
1470
|
+
"ApproveTransferRequestTypedDict",
|
|
1471
|
+
"ApproveTransferResponse",
|
|
1472
|
+
"ApproveTransferResponseTypedDict",
|
|
1292
1473
|
"Apy",
|
|
1293
1474
|
"ApyTypedDict",
|
|
1475
|
+
"BatchedSafeOperationsResponseInput",
|
|
1476
|
+
"BatchedSafeOperationsResponseInputTypedDict",
|
|
1477
|
+
"BatchedSafeOperationsResponseOutput",
|
|
1478
|
+
"BatchedSafeOperationsResponseOutputTypedDict",
|
|
1294
1479
|
"BatchedUserOperationsRequest",
|
|
1295
1480
|
"BatchedUserOperationsRequestChain",
|
|
1296
1481
|
"BatchedUserOperationsRequestTypedDict",
|
|
1297
1482
|
"BatchedUserOperationsResponse",
|
|
1298
1483
|
"BatchedUserOperationsResponseTypedDict",
|
|
1299
|
-
"Body",
|
|
1300
|
-
"BodyTypedDict",
|
|
1301
1484
|
"Borrow",
|
|
1302
1485
|
"BorrowTypedDict",
|
|
1303
1486
|
"Borrowratemode",
|
|
@@ -1306,46 +1489,120 @@ __all__ = [
|
|
|
1306
1489
|
"Chain",
|
|
1307
1490
|
"ChainInfo",
|
|
1308
1491
|
"ChainInfoTypedDict",
|
|
1309
|
-
"
|
|
1310
|
-
"
|
|
1311
|
-
"
|
|
1312
|
-
"
|
|
1313
|
-
"
|
|
1314
|
-
"
|
|
1315
|
-
"
|
|
1316
|
-
"
|
|
1317
|
-
"
|
|
1318
|
-
"
|
|
1319
|
-
"
|
|
1320
|
-
"
|
|
1321
|
-
"
|
|
1322
|
-
"
|
|
1323
|
-
"
|
|
1324
|
-
"
|
|
1325
|
-
"
|
|
1326
|
-
"
|
|
1327
|
-
"
|
|
1328
|
-
"
|
|
1329
|
-
"
|
|
1330
|
-
"
|
|
1331
|
-
"
|
|
1332
|
-
"
|
|
1333
|
-
"
|
|
1334
|
-
"
|
|
1335
|
-
"
|
|
1336
|
-
"
|
|
1337
|
-
"
|
|
1338
|
-
"
|
|
1339
|
-
"
|
|
1340
|
-
"
|
|
1492
|
+
"ChainMarketInfo",
|
|
1493
|
+
"ChainMarketInfoTypedDict",
|
|
1494
|
+
"CompassAPIBackendV1ModelsGenericReadResponsePortfolioTokenBalance",
|
|
1495
|
+
"CompassAPIBackendV1ModelsGenericReadResponsePortfolioTokenBalanceTypedDict",
|
|
1496
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionApyData",
|
|
1497
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionApyDataTypedDict",
|
|
1498
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionAsset",
|
|
1499
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionAssetTypedDict",
|
|
1500
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionMarketState",
|
|
1501
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionMarketStateTypedDict",
|
|
1502
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultPosition",
|
|
1503
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultPositionTypedDict",
|
|
1504
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultState",
|
|
1505
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultStateTypedDict",
|
|
1506
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketApyData",
|
|
1507
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketApyDataTypedDict",
|
|
1508
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketAsset",
|
|
1509
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketAssetTypedDict",
|
|
1510
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketMarketState",
|
|
1511
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketMarketStateTypedDict",
|
|
1512
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsAsset",
|
|
1513
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsAssetTypedDict",
|
|
1514
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsMarketState",
|
|
1515
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsMarketStateTypedDict",
|
|
1516
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsAsset",
|
|
1517
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsAssetTypedDict",
|
|
1518
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsVaultState",
|
|
1519
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsVaultStateTypedDict",
|
|
1520
|
+
"CompassAPIBackendV1ModelsPendleReadResponseMarketUserPosition",
|
|
1521
|
+
"CompassAPIBackendV1ModelsPendleReadResponseMarketUserPositionTypedDict",
|
|
1522
|
+
"CompassAPIBackendV1ModelsPendleReadResponsePositionsTokenBalance",
|
|
1523
|
+
"CompassAPIBackendV1ModelsPendleReadResponsePositionsTokenBalanceTypedDict",
|
|
1524
|
+
"CompassAPIBackendV1ModelsVaultsReadResponseVaultUserPosition",
|
|
1525
|
+
"CompassAPIBackendV1ModelsVaultsReadResponseVaultUserPositionTypedDict",
|
|
1526
|
+
"CompassAPIBackendV1ModelsWildcatReadResponseMarketUserPosition",
|
|
1527
|
+
"CompassAPIBackendV1ModelsWildcatReadResponseMarketUserPositionTypedDict",
|
|
1528
|
+
"CompassAPIBackendV2ModelsEarnReadResponsePositionsVaultPosition",
|
|
1529
|
+
"CompassAPIBackendV2ModelsEarnReadResponsePositionsVaultPositionTypedDict",
|
|
1530
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712Domain",
|
|
1531
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712DomainTypedDict",
|
|
1532
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712Types",
|
|
1533
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712TypesTypedDict",
|
|
1534
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712Domain",
|
|
1535
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712DomainTypedDict",
|
|
1536
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712Types",
|
|
1537
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712TypesTypedDict",
|
|
1538
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712Domain",
|
|
1539
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712DomainTypedDict",
|
|
1540
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712Types",
|
|
1541
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712TypesTypedDict",
|
|
1341
1542
|
"CooldownEnd",
|
|
1342
1543
|
"CooldownEndTypedDict",
|
|
1343
1544
|
"CooldownPosition",
|
|
1344
1545
|
"CooldownPositionTypedDict",
|
|
1345
|
-
"
|
|
1346
|
-
"
|
|
1546
|
+
"CreateAccountRequest",
|
|
1547
|
+
"CreateAccountRequestChain",
|
|
1548
|
+
"CreateAccountRequestTypedDict",
|
|
1549
|
+
"CreateAccountResponse",
|
|
1550
|
+
"CreateAccountResponseTypedDict",
|
|
1551
|
+
"Denomination",
|
|
1552
|
+
"DepositForBurnRequest",
|
|
1553
|
+
"DepositForBurnRequestAmount",
|
|
1554
|
+
"DepositForBurnRequestAmountTypedDict",
|
|
1555
|
+
"DepositForBurnRequestChain",
|
|
1556
|
+
"DepositForBurnRequestTransferMode",
|
|
1557
|
+
"DepositForBurnRequestTypedDict",
|
|
1558
|
+
"DepositForBurnResponse",
|
|
1559
|
+
"DepositForBurnResponseTransferMode",
|
|
1560
|
+
"DepositForBurnResponseTypedDict",
|
|
1561
|
+
"DestinationChain",
|
|
1347
1562
|
"Details",
|
|
1348
1563
|
"DetailsTypedDict",
|
|
1564
|
+
"Direction",
|
|
1565
|
+
"EarnManageParams",
|
|
1566
|
+
"EarnManageParamsAction",
|
|
1567
|
+
"EarnManageParamsTypedDict",
|
|
1568
|
+
"EarnManageParamsVenue",
|
|
1569
|
+
"EarnManageParamsVenueTypedDict",
|
|
1570
|
+
"EarnManageRequest",
|
|
1571
|
+
"EarnManageRequestAction",
|
|
1572
|
+
"EarnManageRequestTypedDict",
|
|
1573
|
+
"EarnManageRequestVenue",
|
|
1574
|
+
"EarnManageRequestVenueTypedDict",
|
|
1575
|
+
"EarnManageResponse",
|
|
1576
|
+
"EarnManageResponseTypedDict",
|
|
1577
|
+
"EarnPositionsResponse",
|
|
1578
|
+
"EarnPositionsResponseTypedDict",
|
|
1579
|
+
"EarnSwapParams",
|
|
1580
|
+
"EarnSwapParamsAmountIn",
|
|
1581
|
+
"EarnSwapParamsAmountInTypedDict",
|
|
1582
|
+
"EarnSwapParamsSlippage",
|
|
1583
|
+
"EarnSwapParamsSlippageTypedDict",
|
|
1584
|
+
"EarnSwapParamsTypedDict",
|
|
1585
|
+
"EarnSwapRequest",
|
|
1586
|
+
"EarnSwapRequestAmountIn",
|
|
1587
|
+
"EarnSwapRequestAmountInTypedDict",
|
|
1588
|
+
"EarnSwapRequestSlippage",
|
|
1589
|
+
"EarnSwapRequestSlippageTypedDict",
|
|
1590
|
+
"EarnSwapRequestTypedDict",
|
|
1591
|
+
"EarnSwapResponse",
|
|
1592
|
+
"EarnSwapResponseTypedDict",
|
|
1593
|
+
"EarnTransferRequest",
|
|
1594
|
+
"EarnTransferRequestAction",
|
|
1595
|
+
"EarnTransferRequestAmount",
|
|
1596
|
+
"EarnTransferRequestAmountTypedDict",
|
|
1597
|
+
"EarnTransferRequestTypedDict",
|
|
1598
|
+
"EarnTransferResponse",
|
|
1599
|
+
"EarnTransferResponseEip712",
|
|
1600
|
+
"EarnTransferResponseEip712TypedDict",
|
|
1601
|
+
"EarnTransferResponseTypedDict",
|
|
1602
|
+
"Eip712DomainField",
|
|
1603
|
+
"Eip712DomainFieldTypedDict",
|
|
1604
|
+
"Eip712Field",
|
|
1605
|
+
"Eip712FieldTypedDict",
|
|
1349
1606
|
"EnsNameInfoResponse",
|
|
1350
1607
|
"EnsNameInfoResponseTypedDict",
|
|
1351
1608
|
"Erc20Data",
|
|
@@ -1375,16 +1632,20 @@ __all__ = [
|
|
|
1375
1632
|
"EthenaUnstakeRequest",
|
|
1376
1633
|
"EthenaUnstakeRequestChain",
|
|
1377
1634
|
"EthenaUnstakeRequestTypedDict",
|
|
1635
|
+
"Fee",
|
|
1636
|
+
"FeeAmount",
|
|
1637
|
+
"FeeAmountTypedDict",
|
|
1378
1638
|
"FeeEnum",
|
|
1639
|
+
"FeeTypedDict",
|
|
1379
1640
|
"InitialCollateralAmount",
|
|
1380
1641
|
"InitialCollateralAmountTypedDict",
|
|
1381
1642
|
"InterestRateMode",
|
|
1382
1643
|
"LiquidationCall",
|
|
1383
1644
|
"LiquidationCallTypedDict",
|
|
1645
|
+
"ListAaveMarketsResponse",
|
|
1646
|
+
"ListAaveMarketsResponseTypedDict",
|
|
1384
1647
|
"LoanToValue",
|
|
1385
1648
|
"LoanToValueTypedDict",
|
|
1386
|
-
"LoanToken",
|
|
1387
|
-
"LoanTokenTypedDict",
|
|
1388
1649
|
"Loc",
|
|
1389
1650
|
"LocTypedDict",
|
|
1390
1651
|
"LpBalance",
|
|
@@ -1397,6 +1658,16 @@ __all__ = [
|
|
|
1397
1658
|
"MarketTypedDict",
|
|
1398
1659
|
"MaxSlippagePercent",
|
|
1399
1660
|
"MaxSlippagePercentTypedDict",
|
|
1661
|
+
"MaxSupplyApyInfo",
|
|
1662
|
+
"MaxSupplyApyInfoTypedDict",
|
|
1663
|
+
"MintPrepareCompletedResponse",
|
|
1664
|
+
"MintPrepareCompletedResponseTypedDict",
|
|
1665
|
+
"MintPreparePendingResponse",
|
|
1666
|
+
"MintPreparePendingResponseTypedDict",
|
|
1667
|
+
"MintPrepareReadyResponse",
|
|
1668
|
+
"MintPrepareReadyResponseTypedDict",
|
|
1669
|
+
"MintPrepareRequest",
|
|
1670
|
+
"MintPrepareRequestTypedDict",
|
|
1400
1671
|
"MorphoBorrowParams",
|
|
1401
1672
|
"MorphoBorrowParamsAmount",
|
|
1402
1673
|
"MorphoBorrowParamsAmountTypedDict",
|
|
@@ -1470,28 +1741,25 @@ __all__ = [
|
|
|
1470
1741
|
"Multiplier",
|
|
1471
1742
|
"MultiplierTypedDict",
|
|
1472
1743
|
"OdosSwapParams",
|
|
1473
|
-
"
|
|
1474
|
-
"
|
|
1475
|
-
"OdosSwapParamsTokenIn",
|
|
1476
|
-
"OdosSwapParamsTokenInTypedDict",
|
|
1477
|
-
"OdosSwapParamsTokenOut",
|
|
1478
|
-
"OdosSwapParamsTokenOutTypedDict",
|
|
1744
|
+
"OdosSwapParamsAmountIn",
|
|
1745
|
+
"OdosSwapParamsAmountInTypedDict",
|
|
1479
1746
|
"OdosSwapParamsTypedDict",
|
|
1480
1747
|
"OdosSwapRequest",
|
|
1481
|
-
"
|
|
1482
|
-
"
|
|
1748
|
+
"OdosSwapRequestAmountIn",
|
|
1749
|
+
"OdosSwapRequestAmountInTypedDict",
|
|
1483
1750
|
"OdosSwapRequestChain",
|
|
1484
|
-
"OdosSwapRequestTokenIn",
|
|
1485
|
-
"OdosSwapRequestTokenInTypedDict",
|
|
1486
|
-
"OdosSwapRequestTokenOut",
|
|
1487
|
-
"OdosSwapRequestTokenOutTypedDict",
|
|
1488
1751
|
"OdosSwapRequestTypedDict",
|
|
1489
1752
|
"OdosTransactionResponse",
|
|
1490
1753
|
"OdosTransactionResponseTransaction",
|
|
1491
1754
|
"OdosTransactionResponseTransactionTypedDict",
|
|
1492
1755
|
"OdosTransactionResponseTypedDict",
|
|
1756
|
+
"OneInchSwapParams",
|
|
1757
|
+
"OneInchSwapParamsAmountIn",
|
|
1758
|
+
"OneInchSwapParamsAmountInTypedDict",
|
|
1759
|
+
"OneInchSwapParamsTypedDict",
|
|
1493
1760
|
"OpenPosition",
|
|
1494
1761
|
"OpenPositionTypedDict",
|
|
1762
|
+
"OperationType",
|
|
1495
1763
|
"PendleGetMarketResponse",
|
|
1496
1764
|
"PendleGetMarketResponseTypedDict",
|
|
1497
1765
|
"PendleListMarketsResponse",
|
|
@@ -1502,16 +1770,12 @@ __all__ = [
|
|
|
1502
1770
|
"PendleManageLiquidityParamsAction",
|
|
1503
1771
|
"PendleManageLiquidityParamsAmountIn",
|
|
1504
1772
|
"PendleManageLiquidityParamsAmountInTypedDict",
|
|
1505
|
-
"PendleManageLiquidityParamsToken",
|
|
1506
|
-
"PendleManageLiquidityParamsTokenTypedDict",
|
|
1507
1773
|
"PendleManageLiquidityParamsTypedDict",
|
|
1508
1774
|
"PendleManageLiquidityRequest",
|
|
1509
1775
|
"PendleManageLiquidityRequestAction",
|
|
1510
1776
|
"PendleManageLiquidityRequestAmountIn",
|
|
1511
1777
|
"PendleManageLiquidityRequestAmountInTypedDict",
|
|
1512
1778
|
"PendleManageLiquidityRequestChain",
|
|
1513
|
-
"PendleManageLiquidityRequestToken",
|
|
1514
|
-
"PendleManageLiquidityRequestTokenTypedDict",
|
|
1515
1779
|
"PendleManageLiquidityRequestTypedDict",
|
|
1516
1780
|
"PendleMarket",
|
|
1517
1781
|
"PendleMarketTypedDict",
|
|
@@ -1524,36 +1788,42 @@ __all__ = [
|
|
|
1524
1788
|
"PendleTradePtParamsAction",
|
|
1525
1789
|
"PendleTradePtParamsAmountIn",
|
|
1526
1790
|
"PendleTradePtParamsAmountInTypedDict",
|
|
1527
|
-
"PendleTradePtParamsToken",
|
|
1528
|
-
"PendleTradePtParamsTokenTypedDict",
|
|
1529
1791
|
"PendleTradePtParamsTypedDict",
|
|
1530
1792
|
"PendleTradePtRequest",
|
|
1531
1793
|
"PendleTradePtRequestAction",
|
|
1532
1794
|
"PendleTradePtRequestAmountIn",
|
|
1533
1795
|
"PendleTradePtRequestAmountInTypedDict",
|
|
1534
1796
|
"PendleTradePtRequestChain",
|
|
1535
|
-
"PendleTradePtRequestToken",
|
|
1536
|
-
"PendleTradePtRequestTokenTypedDict",
|
|
1537
1797
|
"PendleTradePtRequestTypedDict",
|
|
1538
1798
|
"PendleTradeYtParams",
|
|
1539
1799
|
"PendleTradeYtParamsAction",
|
|
1540
1800
|
"PendleTradeYtParamsAmountIn",
|
|
1541
1801
|
"PendleTradeYtParamsAmountInTypedDict",
|
|
1542
|
-
"PendleTradeYtParamsToken",
|
|
1543
|
-
"PendleTradeYtParamsTokenTypedDict",
|
|
1544
1802
|
"PendleTradeYtParamsTypedDict",
|
|
1545
1803
|
"PendleTradeYtRequest",
|
|
1546
1804
|
"PendleTradeYtRequestAction",
|
|
1547
1805
|
"PendleTradeYtRequestAmountIn",
|
|
1548
1806
|
"PendleTradeYtRequestAmountInTypedDict",
|
|
1549
1807
|
"PendleTradeYtRequestChain",
|
|
1550
|
-
"PendleTradeYtRequestToken",
|
|
1551
|
-
"PendleTradeYtRequestTokenTypedDict",
|
|
1552
1808
|
"PendleTradeYtRequestTypedDict",
|
|
1553
1809
|
"PendleTxResponse",
|
|
1554
1810
|
"PendleTxResponseTransaction",
|
|
1555
1811
|
"PendleTxResponseTransactionTypedDict",
|
|
1556
1812
|
"PendleTxResponseTypedDict",
|
|
1813
|
+
"Permit2TypedDataInput",
|
|
1814
|
+
"Permit2TypedDataInputTypedDict",
|
|
1815
|
+
"Permit2TypedDataOutput",
|
|
1816
|
+
"Permit2TypedDataOutputTypedDict",
|
|
1817
|
+
"PermitField",
|
|
1818
|
+
"PermitFieldTypedDict",
|
|
1819
|
+
"PermitMessage",
|
|
1820
|
+
"PermitMessageTypedDict",
|
|
1821
|
+
"PermitTransferFromMessage",
|
|
1822
|
+
"PermitTransferFromMessageTypedDict",
|
|
1823
|
+
"PermitTypedDataResponseInput",
|
|
1824
|
+
"PermitTypedDataResponseInputTypedDict",
|
|
1825
|
+
"PermitTypedDataResponseOutput",
|
|
1826
|
+
"PermitTypedDataResponseOutputTypedDict",
|
|
1557
1827
|
"Portfolio",
|
|
1558
1828
|
"PortfolioTypedDict",
|
|
1559
1829
|
"Position",
|
|
@@ -1561,16 +1831,24 @@ __all__ = [
|
|
|
1561
1831
|
"Protocol",
|
|
1562
1832
|
"R",
|
|
1563
1833
|
"RTypedDict",
|
|
1564
|
-
"RedeemUnderlying",
|
|
1565
|
-
"RedeemUnderlyingTypedDict",
|
|
1566
1834
|
"Repay",
|
|
1567
1835
|
"RepayTypedDict",
|
|
1568
1836
|
"Reserve",
|
|
1569
1837
|
"ReserveTypedDict",
|
|
1838
|
+
"Response200V2CctpMint",
|
|
1839
|
+
"Response200V2CctpMintTypedDict",
|
|
1570
1840
|
"ResponseV1TransactionBundlerAaveLoop",
|
|
1571
1841
|
"ResponseV1TransactionBundlerAaveLoopTypedDict",
|
|
1572
1842
|
"S",
|
|
1573
1843
|
"STypedDict",
|
|
1844
|
+
"SafeTransactionParams",
|
|
1845
|
+
"SafeTransactionParamsTypedDict",
|
|
1846
|
+
"SafeTransactionResponse",
|
|
1847
|
+
"SafeTransactionResponseTypedDict",
|
|
1848
|
+
"SafeTxField",
|
|
1849
|
+
"SafeTxFieldTypedDict",
|
|
1850
|
+
"SafeTxMessage",
|
|
1851
|
+
"SafeTxMessageTypedDict",
|
|
1574
1852
|
"Security",
|
|
1575
1853
|
"SecurityTypedDict",
|
|
1576
1854
|
"SetAllowanceParams",
|
|
@@ -1579,8 +1857,6 @@ __all__ = [
|
|
|
1579
1857
|
"SetAllowanceParamsContractEnum",
|
|
1580
1858
|
"SetAllowanceParamsContractUnion",
|
|
1581
1859
|
"SetAllowanceParamsContractUnionTypedDict",
|
|
1582
|
-
"SetAllowanceParamsToken",
|
|
1583
|
-
"SetAllowanceParamsTokenTypedDict",
|
|
1584
1860
|
"SetAllowanceParamsTypedDict",
|
|
1585
1861
|
"SetAllowanceRequest",
|
|
1586
1862
|
"SetAllowanceRequestAmount",
|
|
@@ -1589,8 +1865,6 @@ __all__ = [
|
|
|
1589
1865
|
"SetAllowanceRequestContractEnum",
|
|
1590
1866
|
"SetAllowanceRequestContractUnion",
|
|
1591
1867
|
"SetAllowanceRequestContractUnionTypedDict",
|
|
1592
|
-
"SetAllowanceRequestToken",
|
|
1593
|
-
"SetAllowanceRequestTokenTypedDict",
|
|
1594
1868
|
"SetAllowanceRequestTypedDict",
|
|
1595
1869
|
"SignedAuthorization",
|
|
1596
1870
|
"SignedAuthorizationTypedDict",
|
|
@@ -1632,6 +1906,12 @@ __all__ = [
|
|
|
1632
1906
|
"SkyWithdrawRequest",
|
|
1633
1907
|
"SkyWithdrawRequestChain",
|
|
1634
1908
|
"SkyWithdrawRequestTypedDict",
|
|
1909
|
+
"SponsorGasRequest",
|
|
1910
|
+
"SponsorGasRequestEip712",
|
|
1911
|
+
"SponsorGasRequestEip712TypedDict",
|
|
1912
|
+
"SponsorGasRequestTypedDict",
|
|
1913
|
+
"SponsorGasResponse",
|
|
1914
|
+
"SponsorGasResponseTypedDict",
|
|
1635
1915
|
"Supply",
|
|
1636
1916
|
"SupplyTypedDict",
|
|
1637
1917
|
"SupportedChainInfo",
|
|
@@ -1640,29 +1920,26 @@ __all__ = [
|
|
|
1640
1920
|
"SwapBorrowRateTypedDict",
|
|
1641
1921
|
"SyPosition",
|
|
1642
1922
|
"SyPositionTypedDict",
|
|
1643
|
-
"TokenAddressResponse",
|
|
1644
|
-
"TokenAddressResponseTypedDict",
|
|
1645
1923
|
"TokenBalanceResponse",
|
|
1646
1924
|
"TokenBalanceResponseTypedDict",
|
|
1647
|
-
"
|
|
1648
|
-
"
|
|
1649
|
-
"
|
|
1925
|
+
"TokenConfig",
|
|
1926
|
+
"TokenConfigTypedDict",
|
|
1927
|
+
"TokenListResponse",
|
|
1928
|
+
"TokenListResponseTypedDict",
|
|
1929
|
+
"TokenMarketData",
|
|
1930
|
+
"TokenMarketDataTypedDict",
|
|
1931
|
+
"TokenPermissions",
|
|
1932
|
+
"TokenPermissionsTypedDict",
|
|
1650
1933
|
"TokenPriceResponse",
|
|
1651
1934
|
"TokenPriceResponseTypedDict",
|
|
1652
|
-
"TokenSymbol",
|
|
1653
|
-
"TokenSymbolTypedDict",
|
|
1654
1935
|
"TokenTransferParams",
|
|
1655
1936
|
"TokenTransferParamsAmount",
|
|
1656
1937
|
"TokenTransferParamsAmountTypedDict",
|
|
1657
|
-
"TokenTransferParamsToken",
|
|
1658
|
-
"TokenTransferParamsTokenTypedDict",
|
|
1659
1938
|
"TokenTransferParamsTypedDict",
|
|
1660
1939
|
"TokenTransferRequest",
|
|
1661
1940
|
"TokenTransferRequestAmount",
|
|
1662
1941
|
"TokenTransferRequestAmountTypedDict",
|
|
1663
1942
|
"TokenTransferRequestChain",
|
|
1664
|
-
"TokenTransferRequestToken",
|
|
1665
|
-
"TokenTransferRequestTokenTypedDict",
|
|
1666
1943
|
"TokenTransferRequestTypedDict",
|
|
1667
1944
|
"TransactionResponse",
|
|
1668
1945
|
"TransactionResponseTransaction",
|
|
@@ -1673,19 +1950,11 @@ __all__ = [
|
|
|
1673
1950
|
"UniswapBuyExactlyParams",
|
|
1674
1951
|
"UniswapBuyExactlyParamsAmountOut",
|
|
1675
1952
|
"UniswapBuyExactlyParamsAmountOutTypedDict",
|
|
1676
|
-
"UniswapBuyExactlyParamsTokenIn",
|
|
1677
|
-
"UniswapBuyExactlyParamsTokenInTypedDict",
|
|
1678
|
-
"UniswapBuyExactlyParamsTokenOut",
|
|
1679
|
-
"UniswapBuyExactlyParamsTokenOutTypedDict",
|
|
1680
1953
|
"UniswapBuyExactlyParamsTypedDict",
|
|
1681
1954
|
"UniswapBuyExactlyRequest",
|
|
1682
1955
|
"UniswapBuyExactlyRequestAmountOut",
|
|
1683
1956
|
"UniswapBuyExactlyRequestAmountOutTypedDict",
|
|
1684
1957
|
"UniswapBuyExactlyRequestChain",
|
|
1685
|
-
"UniswapBuyExactlyRequestTokenIn",
|
|
1686
|
-
"UniswapBuyExactlyRequestTokenInTypedDict",
|
|
1687
|
-
"UniswapBuyExactlyRequestTokenOut",
|
|
1688
|
-
"UniswapBuyExactlyRequestTokenOutTypedDict",
|
|
1689
1958
|
"UniswapBuyExactlyRequestTypedDict",
|
|
1690
1959
|
"UniswapBuyExactlyTransactionResponse",
|
|
1691
1960
|
"UniswapBuyExactlyTransactionResponseTransaction",
|
|
@@ -1746,19 +2015,11 @@ __all__ = [
|
|
|
1746
2015
|
"UniswapSellExactlyParams",
|
|
1747
2016
|
"UniswapSellExactlyParamsAmountIn",
|
|
1748
2017
|
"UniswapSellExactlyParamsAmountInTypedDict",
|
|
1749
|
-
"UniswapSellExactlyParamsTokenIn",
|
|
1750
|
-
"UniswapSellExactlyParamsTokenInTypedDict",
|
|
1751
|
-
"UniswapSellExactlyParamsTokenOut",
|
|
1752
|
-
"UniswapSellExactlyParamsTokenOutTypedDict",
|
|
1753
2018
|
"UniswapSellExactlyParamsTypedDict",
|
|
1754
2019
|
"UniswapSellExactlyRequest",
|
|
1755
2020
|
"UniswapSellExactlyRequestAmountIn",
|
|
1756
2021
|
"UniswapSellExactlyRequestAmountInTypedDict",
|
|
1757
2022
|
"UniswapSellExactlyRequestChain",
|
|
1758
|
-
"UniswapSellExactlyRequestTokenIn",
|
|
1759
|
-
"UniswapSellExactlyRequestTokenInTypedDict",
|
|
1760
|
-
"UniswapSellExactlyRequestTokenOut",
|
|
1761
|
-
"UniswapSellExactlyRequestTokenOutTypedDict",
|
|
1762
2023
|
"UniswapSellExactlyRequestTypedDict",
|
|
1763
2024
|
"UniswapSellExactlyTransactionResponse",
|
|
1764
2025
|
"UniswapSellExactlyTransactionResponseTransaction",
|
|
@@ -1791,9 +2052,13 @@ __all__ = [
|
|
|
1791
2052
|
"UsageAsCollateral",
|
|
1792
2053
|
"UsageAsCollateralTypedDict",
|
|
1793
2054
|
"UserOperation",
|
|
2055
|
+
"UserOperationBody",
|
|
2056
|
+
"UserOperationBodyTypedDict",
|
|
1794
2057
|
"UserOperationResponse",
|
|
1795
2058
|
"UserOperationResponseTypedDict",
|
|
1796
2059
|
"UserOperationTypedDict",
|
|
2060
|
+
"UserPosition",
|
|
2061
|
+
"UserPositionTypedDict",
|
|
1797
2062
|
"UserState",
|
|
1798
2063
|
"UserStateTypedDict",
|
|
1799
2064
|
"V1AaveAaveSupportedTokensChain",
|
|
@@ -1802,34 +2067,27 @@ __all__ = [
|
|
|
1802
2067
|
"V1AaveAvgRateChain",
|
|
1803
2068
|
"V1AaveAvgRateRequest",
|
|
1804
2069
|
"V1AaveAvgRateRequestTypedDict",
|
|
1805
|
-
"V1AaveAvgRateToken",
|
|
1806
2070
|
"V1AaveHistoricalTransactionsChain",
|
|
1807
2071
|
"V1AaveHistoricalTransactionsRequest",
|
|
1808
2072
|
"V1AaveHistoricalTransactionsRequestTypedDict",
|
|
1809
2073
|
"V1AaveLiquidityChangeChain",
|
|
1810
2074
|
"V1AaveLiquidityChangeRequest",
|
|
1811
2075
|
"V1AaveLiquidityChangeRequestTypedDict",
|
|
1812
|
-
"V1AaveLiquidityChangeToken",
|
|
1813
2076
|
"V1AaveRateChain",
|
|
1814
2077
|
"V1AaveRateRequest",
|
|
1815
2078
|
"V1AaveRateRequestTypedDict",
|
|
1816
|
-
"V1AaveRateToken",
|
|
1817
2079
|
"V1AaveReserveOverviewChain",
|
|
1818
2080
|
"V1AaveReserveOverviewRequest",
|
|
1819
2081
|
"V1AaveReserveOverviewRequestTypedDict",
|
|
1820
|
-
"V1AaveReserveOverviewToken",
|
|
1821
2082
|
"V1AaveStdRateChain",
|
|
1822
2083
|
"V1AaveStdRateRequest",
|
|
1823
2084
|
"V1AaveStdRateRequestTypedDict",
|
|
1824
|
-
"V1AaveStdRateToken",
|
|
1825
2085
|
"V1AaveTokenPriceChain",
|
|
1826
2086
|
"V1AaveTokenPriceRequest",
|
|
1827
2087
|
"V1AaveTokenPriceRequestTypedDict",
|
|
1828
|
-
"V1AaveTokenPriceToken",
|
|
1829
2088
|
"V1AaveUserPositionPerTokenChain",
|
|
1830
2089
|
"V1AaveUserPositionPerTokenRequest",
|
|
1831
2090
|
"V1AaveUserPositionPerTokenRequestTypedDict",
|
|
1832
|
-
"V1AaveUserPositionPerTokenToken",
|
|
1833
2091
|
"V1AaveUserPositionSummaryChain",
|
|
1834
2092
|
"V1AaveUserPositionSummaryRequest",
|
|
1835
2093
|
"V1AaveUserPositionSummaryRequestTypedDict",
|
|
@@ -1839,8 +2097,6 @@ __all__ = [
|
|
|
1839
2097
|
"V1AerodromeSlipstreamPoolPriceChain",
|
|
1840
2098
|
"V1AerodromeSlipstreamPoolPriceRequest",
|
|
1841
2099
|
"V1AerodromeSlipstreamPoolPriceRequestTypedDict",
|
|
1842
|
-
"V1AerodromeSlipstreamPoolPriceTokenInToken",
|
|
1843
|
-
"V1AerodromeSlipstreamPoolPriceTokenOutToken",
|
|
1844
2100
|
"V1EthenaVaultChain",
|
|
1845
2101
|
"V1EthenaVaultRequest",
|
|
1846
2102
|
"V1EthenaVaultRequestTypedDict",
|
|
@@ -1850,8 +2106,6 @@ __all__ = [
|
|
|
1850
2106
|
"V1GenericAllowanceContractUnionTypedDict",
|
|
1851
2107
|
"V1GenericAllowanceRequest",
|
|
1852
2108
|
"V1GenericAllowanceRequestTypedDict",
|
|
1853
|
-
"V1GenericAllowanceToken",
|
|
1854
|
-
"V1GenericAllowanceTokenTypedDict",
|
|
1855
2109
|
"V1GenericEnsChain",
|
|
1856
2110
|
"V1GenericEnsRequest",
|
|
1857
2111
|
"V1GenericEnsRequestTypedDict",
|
|
@@ -1860,9 +2114,6 @@ __all__ = [
|
|
|
1860
2114
|
"V1GenericPortfolioRequestTypedDict",
|
|
1861
2115
|
"V1GenericSupportedChainsRequest",
|
|
1862
2116
|
"V1GenericSupportedChainsRequestTypedDict",
|
|
1863
|
-
"V1GenericSupportedTokensChain",
|
|
1864
|
-
"V1GenericSupportedTokensRequest",
|
|
1865
|
-
"V1GenericSupportedTokensRequestTypedDict",
|
|
1866
2117
|
"V1MorphoMarketChain",
|
|
1867
2118
|
"V1MorphoMarketPositionChain",
|
|
1868
2119
|
"V1MorphoMarketPositionRequest",
|
|
@@ -1893,15 +2144,12 @@ __all__ = [
|
|
|
1893
2144
|
"V1SkyPositionChain",
|
|
1894
2145
|
"V1SkyPositionRequest",
|
|
1895
2146
|
"V1SkyPositionRequestTypedDict",
|
|
1896
|
-
"V1TokenAddressChain",
|
|
1897
|
-
"V1TokenAddressRequest",
|
|
1898
|
-
"V1TokenAddressRequestTypedDict",
|
|
1899
|
-
"V1TokenAddressToken",
|
|
1900
2147
|
"V1TokenBalanceChain",
|
|
1901
2148
|
"V1TokenBalanceRequest",
|
|
1902
2149
|
"V1TokenBalanceRequestTypedDict",
|
|
1903
|
-
"
|
|
1904
|
-
"
|
|
2150
|
+
"V1TokenListChain",
|
|
2151
|
+
"V1TokenListRequest",
|
|
2152
|
+
"V1TokenListRequestTypedDict",
|
|
1905
2153
|
"V1TokenPriceChain",
|
|
1906
2154
|
"V1TokenPriceRequest",
|
|
1907
2155
|
"V1TokenPriceRequestTypedDict",
|
|
@@ -1915,27 +2163,41 @@ __all__ = [
|
|
|
1915
2163
|
"V1UniswapPoolPriceFeeEnum",
|
|
1916
2164
|
"V1UniswapPoolPriceRequest",
|
|
1917
2165
|
"V1UniswapPoolPriceRequestTypedDict",
|
|
1918
|
-
"V1UniswapPoolPriceTokenInToken",
|
|
1919
|
-
"V1UniswapPoolPriceTokenOutToken",
|
|
1920
2166
|
"V1UniswapQuoteBuyExactlyAmountOut",
|
|
1921
2167
|
"V1UniswapQuoteBuyExactlyAmountOutTypedDict",
|
|
1922
2168
|
"V1UniswapQuoteBuyExactlyChain",
|
|
1923
2169
|
"V1UniswapQuoteBuyExactlyFeeEnum",
|
|
1924
2170
|
"V1UniswapQuoteBuyExactlyRequest",
|
|
1925
2171
|
"V1UniswapQuoteBuyExactlyRequestTypedDict",
|
|
1926
|
-
"V1UniswapQuoteBuyExactlyTokenInToken",
|
|
1927
|
-
"V1UniswapQuoteBuyExactlyTokenOutToken",
|
|
1928
2172
|
"V1UniswapQuoteSellExactlyAmountIn",
|
|
1929
2173
|
"V1UniswapQuoteSellExactlyAmountInTypedDict",
|
|
1930
2174
|
"V1UniswapQuoteSellExactlyChain",
|
|
1931
2175
|
"V1UniswapQuoteSellExactlyFeeEnum",
|
|
1932
2176
|
"V1UniswapQuoteSellExactlyRequest",
|
|
1933
2177
|
"V1UniswapQuoteSellExactlyRequestTypedDict",
|
|
1934
|
-
"V1UniswapQuoteSellExactlyTokenInToken",
|
|
1935
|
-
"V1UniswapQuoteSellExactlyTokenOutToken",
|
|
1936
2178
|
"V1VaultsVaultChain",
|
|
1937
2179
|
"V1VaultsVaultRequest",
|
|
1938
2180
|
"V1VaultsVaultRequestTypedDict",
|
|
2181
|
+
"V1WildcatMarketChain",
|
|
2182
|
+
"V1WildcatMarketRequest",
|
|
2183
|
+
"V1WildcatMarketRequestTypedDict",
|
|
2184
|
+
"V2BundleRequest",
|
|
2185
|
+
"V2BundleRequestTypedDict",
|
|
2186
|
+
"V2BundleResponse",
|
|
2187
|
+
"V2BundleResponseTypedDict",
|
|
2188
|
+
"V2CctpMintResponse",
|
|
2189
|
+
"V2CctpMintResponseTypedDict",
|
|
2190
|
+
"V2EarnAaveMarketsRequest",
|
|
2191
|
+
"V2EarnAaveMarketsRequestTypedDict",
|
|
2192
|
+
"V2EarnPositionsChain",
|
|
2193
|
+
"V2EarnPositionsRequest",
|
|
2194
|
+
"V2EarnPositionsRequestTypedDict",
|
|
2195
|
+
"V2EarnVaultsRequest",
|
|
2196
|
+
"V2EarnVaultsRequestTypedDict",
|
|
2197
|
+
"V2UserOperation",
|
|
2198
|
+
"V2UserOperationBody",
|
|
2199
|
+
"V2UserOperationBodyTypedDict",
|
|
2200
|
+
"V2UserOperationTypedDict",
|
|
1939
2201
|
"ValidationError",
|
|
1940
2202
|
"ValidationErrorTypedDict",
|
|
1941
2203
|
"Vault",
|
|
@@ -1950,16 +2212,24 @@ __all__ = [
|
|
|
1950
2212
|
"VaultDepositRequestTypedDict",
|
|
1951
2213
|
"VaultGetVaultResponse",
|
|
1952
2214
|
"VaultGetVaultResponseTypedDict",
|
|
1953
|
-
"
|
|
1954
|
-
"
|
|
2215
|
+
"VaultInfo",
|
|
2216
|
+
"VaultInfoTypedDict",
|
|
1955
2217
|
"VaultTypedDict",
|
|
2218
|
+
"VaultVenue",
|
|
2219
|
+
"VaultVenueTypedDict",
|
|
1956
2220
|
"VaultWithdrawParams",
|
|
1957
2221
|
"VaultWithdrawParamsTypedDict",
|
|
1958
2222
|
"VaultWithdrawRequest",
|
|
1959
2223
|
"VaultWithdrawRequestChain",
|
|
1960
2224
|
"VaultWithdrawRequestTypedDict",
|
|
2225
|
+
"VaultsResponse",
|
|
2226
|
+
"VaultsResponseTypedDict",
|
|
1961
2227
|
"WeeklyApys",
|
|
1962
2228
|
"WeeklyApysTypedDict",
|
|
2229
|
+
"WildcatGetMarketResponse",
|
|
2230
|
+
"WildcatGetMarketResponseTypedDict",
|
|
2231
|
+
"Withdraw",
|
|
2232
|
+
"WithdrawTypedDict",
|
|
1963
2233
|
"WrapEthParams",
|
|
1964
2234
|
"WrapEthParamsAmount",
|
|
1965
2235
|
"WrapEthParamsAmountTypedDict",
|
|
@@ -2002,6 +2272,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2002
2272
|
"MaxSlippagePercentTypedDict": ".aavelooprequest",
|
|
2003
2273
|
"Multiplier": ".aavelooprequest",
|
|
2004
2274
|
"MultiplierTypedDict": ".aavelooprequest",
|
|
2275
|
+
"AavePosition": ".aaveposition",
|
|
2276
|
+
"AavePositionTypedDict": ".aaveposition",
|
|
2005
2277
|
"AaveRateResponse": ".aaverateresponse",
|
|
2006
2278
|
"AaveRateResponseTypedDict": ".aaverateresponse",
|
|
2007
2279
|
"AaveRepayParams": ".aaverepayparams",
|
|
@@ -2015,6 +2287,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2015
2287
|
"AaveRepayRequestTypedDict": ".aaverepayrequest",
|
|
2016
2288
|
"AaveReserveOverviewResponse": ".aavereserveoverviewresponse",
|
|
2017
2289
|
"AaveReserveOverviewResponseTypedDict": ".aavereserveoverviewresponse",
|
|
2290
|
+
"AaveSetUserEModeParams": ".aavesetuseremodeparams",
|
|
2291
|
+
"AaveSetUserEModeParamsTypedDict": ".aavesetuseremodeparams",
|
|
2292
|
+
"AaveSetUserEModeRequest": ".aavesetuseremoderequest",
|
|
2293
|
+
"AaveSetUserEModeRequestChain": ".aavesetuseremoderequest",
|
|
2294
|
+
"AaveSetUserEModeRequestTypedDict": ".aavesetuseremoderequest",
|
|
2018
2295
|
"AaveSTDRateResponse": ".aavestdrateresponse",
|
|
2019
2296
|
"AaveSTDRateResponseTypedDict": ".aavestdrateresponse",
|
|
2020
2297
|
"AaveSupplyParams": ".aavesupplyparams",
|
|
@@ -2036,6 +2313,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2036
2313
|
"AaveUserPositionPerTokenResponseTypedDict": ".aaveuserpositionpertokenresponse",
|
|
2037
2314
|
"AaveUserPositionSummaryResponse": ".aaveuserpositionsummaryresponse",
|
|
2038
2315
|
"AaveUserPositionSummaryResponseTypedDict": ".aaveuserpositionsummaryresponse",
|
|
2316
|
+
"AaveVenue": ".aavevenue",
|
|
2317
|
+
"AaveVenueTypedDict": ".aavevenue",
|
|
2039
2318
|
"AaveWithdrawParams": ".aavewithdrawparams",
|
|
2040
2319
|
"AaveWithdrawParamsAmount": ".aavewithdrawparams",
|
|
2041
2320
|
"AaveWithdrawParamsAmountTypedDict": ".aavewithdrawparams",
|
|
@@ -2045,10 +2324,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2045
2324
|
"AaveWithdrawRequestAmountTypedDict": ".aavewithdrawrequest",
|
|
2046
2325
|
"AaveWithdrawRequestChain": ".aavewithdrawrequest",
|
|
2047
2326
|
"AaveWithdrawRequestTypedDict": ".aavewithdrawrequest",
|
|
2327
|
+
"AerodromeEnrichedPosition": ".aerodromeenrichedposition",
|
|
2328
|
+
"AerodromeEnrichedPositionTypedDict": ".aerodromeenrichedposition",
|
|
2048
2329
|
"AerodromeLPPositionsResponse": ".aerodromelppositionsresponse",
|
|
2049
2330
|
"AerodromeLPPositionsResponseTypedDict": ".aerodromelppositionsresponse",
|
|
2050
|
-
"AerodromePosition": ".aerodromeposition",
|
|
2051
|
-
"AerodromePositionTypedDict": ".aerodromeposition",
|
|
2052
2331
|
"AerodromeSlipstreamBuyExactlyParams": ".aerodromeslipstreambuyexactlyparams",
|
|
2053
2332
|
"AerodromeSlipstreamBuyExactlyParamsAmountInMaximum": ".aerodromeslipstreambuyexactlyparams",
|
|
2054
2333
|
"AerodromeSlipstreamBuyExactlyParamsAmountInMaximumTypedDict": ".aerodromeslipstreambuyexactlyparams",
|
|
@@ -2130,8 +2409,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2130
2409
|
"AerodromeSlipstreamWithdrawLiquidityProvisionRequestTypedDict": ".aerodromeslipstreamwithdrawliquidityprovisionrequest",
|
|
2131
2410
|
"AllowanceInfoResponse": ".allowanceinforesponse",
|
|
2132
2411
|
"AllowanceInfoResponseTypedDict": ".allowanceinforesponse",
|
|
2412
|
+
"ApproveTransferRequest": ".approvetransferrequest",
|
|
2413
|
+
"ApproveTransferRequestTypedDict": ".approvetransferrequest",
|
|
2414
|
+
"ApproveTransferResponse": ".approvetransferresponse",
|
|
2415
|
+
"ApproveTransferResponseTypedDict": ".approvetransferresponse",
|
|
2133
2416
|
"Apy": ".apy",
|
|
2134
2417
|
"ApyTypedDict": ".apy",
|
|
2418
|
+
"BatchedSafeOperationsResponseInput": ".batchedsafeoperationsresponse_input",
|
|
2419
|
+
"BatchedSafeOperationsResponseInputTypedDict": ".batchedsafeoperationsresponse_input",
|
|
2420
|
+
"BatchedSafeOperationsResponseOutput": ".batchedsafeoperationsresponse_output",
|
|
2421
|
+
"BatchedSafeOperationsResponseOutputTypedDict": ".batchedsafeoperationsresponse_output",
|
|
2135
2422
|
"BatchedUserOperationsRequest": ".batcheduseroperationsrequest",
|
|
2136
2423
|
"BatchedUserOperationsRequestChain": ".batcheduseroperationsrequest",
|
|
2137
2424
|
"BatchedUserOperationsRequestTypedDict": ".batcheduseroperationsrequest",
|
|
@@ -2145,42 +2432,120 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2145
2432
|
"Chain": ".chain",
|
|
2146
2433
|
"ChainInfo": ".chaininfo",
|
|
2147
2434
|
"ChainInfoTypedDict": ".chaininfo",
|
|
2148
|
-
"
|
|
2149
|
-
"
|
|
2150
|
-
"
|
|
2151
|
-
"
|
|
2152
|
-
"
|
|
2153
|
-
"
|
|
2154
|
-
"
|
|
2155
|
-
"
|
|
2156
|
-
"
|
|
2157
|
-
"
|
|
2158
|
-
"
|
|
2159
|
-
"
|
|
2160
|
-
"
|
|
2161
|
-
"
|
|
2162
|
-
"
|
|
2163
|
-
"
|
|
2164
|
-
"
|
|
2165
|
-
"
|
|
2166
|
-
"
|
|
2167
|
-
"
|
|
2168
|
-
"
|
|
2169
|
-
"
|
|
2170
|
-
"
|
|
2171
|
-
"
|
|
2172
|
-
"
|
|
2173
|
-
"
|
|
2174
|
-
"
|
|
2175
|
-
"
|
|
2176
|
-
"
|
|
2177
|
-
"
|
|
2435
|
+
"ChainMarketInfo": ".chainmarketinfo",
|
|
2436
|
+
"ChainMarketInfoTypedDict": ".chainmarketinfo",
|
|
2437
|
+
"CompassAPIBackendV1ModelsGenericReadResponsePortfolioTokenBalance": ".compass_api_backend_v1_models_generic_read_response_portfolio_tokenbalance",
|
|
2438
|
+
"CompassAPIBackendV1ModelsGenericReadResponsePortfolioTokenBalanceTypedDict": ".compass_api_backend_v1_models_generic_read_response_portfolio_tokenbalance",
|
|
2439
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionApyData": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_apydata",
|
|
2440
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionApyDataTypedDict": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_apydata",
|
|
2441
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionAsset": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_asset",
|
|
2442
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionAssetTypedDict": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_asset",
|
|
2443
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionMarketState": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_marketstate",
|
|
2444
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionMarketStateTypedDict": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_marketstate",
|
|
2445
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultPosition": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultposition",
|
|
2446
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultPositionTypedDict": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultposition",
|
|
2447
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultState": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultstate",
|
|
2448
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseCheckUserPositionVaultStateTypedDict": ".compass_api_backend_v1_models_morpho_read_response_check_user_position_vaultstate",
|
|
2449
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketApyData": ".compass_api_backend_v1_models_morpho_read_response_get_market_apydata",
|
|
2450
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketApyDataTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_market_apydata",
|
|
2451
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketAsset": ".compass_api_backend_v1_models_morpho_read_response_get_market_asset",
|
|
2452
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketAssetTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_market_asset",
|
|
2453
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketMarketState": ".compass_api_backend_v1_models_morpho_read_response_get_market_marketstate",
|
|
2454
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketMarketStateTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_market_marketstate",
|
|
2455
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsAsset": ".compass_api_backend_v1_models_morpho_read_response_get_markets_asset",
|
|
2456
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsAssetTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_markets_asset",
|
|
2457
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsMarketState": ".compass_api_backend_v1_models_morpho_read_response_get_markets_marketstate",
|
|
2458
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetMarketsMarketStateTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_markets_marketstate",
|
|
2459
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsAsset": ".compass_api_backend_v1_models_morpho_read_response_get_vaults_asset",
|
|
2460
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsAssetTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_vaults_asset",
|
|
2461
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsVaultState": ".compass_api_backend_v1_models_morpho_read_response_get_vaults_vaultstate",
|
|
2462
|
+
"CompassAPIBackendV1ModelsMorphoReadResponseGetVaultsVaultStateTypedDict": ".compass_api_backend_v1_models_morpho_read_response_get_vaults_vaultstate",
|
|
2463
|
+
"CompassAPIBackendV1ModelsPendleReadResponseMarketUserPosition": ".compass_api_backend_v1_models_pendle_read_response_market_userposition",
|
|
2464
|
+
"CompassAPIBackendV1ModelsPendleReadResponseMarketUserPositionTypedDict": ".compass_api_backend_v1_models_pendle_read_response_market_userposition",
|
|
2465
|
+
"CompassAPIBackendV1ModelsPendleReadResponsePositionsTokenBalance": ".compass_api_backend_v1_models_pendle_read_response_positions_tokenbalance",
|
|
2466
|
+
"CompassAPIBackendV1ModelsPendleReadResponsePositionsTokenBalanceTypedDict": ".compass_api_backend_v1_models_pendle_read_response_positions_tokenbalance",
|
|
2467
|
+
"CompassAPIBackendV1ModelsVaultsReadResponseVaultUserPosition": ".compass_api_backend_v1_models_vaults_read_response_vault_userposition",
|
|
2468
|
+
"CompassAPIBackendV1ModelsVaultsReadResponseVaultUserPositionTypedDict": ".compass_api_backend_v1_models_vaults_read_response_vault_userposition",
|
|
2469
|
+
"CompassAPIBackendV1ModelsWildcatReadResponseMarketUserPosition": ".compass_api_backend_v1_models_wildcat_read_response_market_userposition",
|
|
2470
|
+
"CompassAPIBackendV1ModelsWildcatReadResponseMarketUserPositionTypedDict": ".compass_api_backend_v1_models_wildcat_read_response_market_userposition",
|
|
2471
|
+
"CompassAPIBackendV2ModelsEarnReadResponsePositionsVaultPosition": ".compass_api_backend_v2_models_earn_read_response_positions_vaultposition",
|
|
2472
|
+
"CompassAPIBackendV2ModelsEarnReadResponsePositionsVaultPositionTypedDict": ".compass_api_backend_v2_models_earn_read_response_positions_vaultposition",
|
|
2473
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712Domain": ".compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712domain",
|
|
2474
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712DomainTypedDict": ".compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712domain",
|
|
2475
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712Types": ".compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712types",
|
|
2476
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermit2TypedDataEip712TypesTypedDict": ".compass_api_backend_v2_models_gas_sponsorship_permit_2_typed_data_eip712types",
|
|
2477
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712Domain": ".compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712domain",
|
|
2478
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712DomainTypedDict": ".compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712domain",
|
|
2479
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712Types": ".compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712types",
|
|
2480
|
+
"CompassAPIBackendV2ModelsGasSponsorshipPermitTypedDataEip712TypesTypedDict": ".compass_api_backend_v2_models_gas_sponsorship_permit_typed_data_eip712types",
|
|
2481
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712Domain": ".compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712domain",
|
|
2482
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712DomainTypedDict": ".compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712domain",
|
|
2483
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712Types": ".compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712types",
|
|
2484
|
+
"CompassAPIBackendV2ModelsSafeTransactResponseBatchedSafeOperationsEip712TypesTypedDict": ".compass_api_backend_v2_models_safe_transact_response_batched_safe_operations_eip712types",
|
|
2178
2485
|
"CooldownEnd": ".cooldownposition",
|
|
2179
2486
|
"CooldownEndTypedDict": ".cooldownposition",
|
|
2180
2487
|
"CooldownPosition": ".cooldownposition",
|
|
2181
2488
|
"CooldownPositionTypedDict": ".cooldownposition",
|
|
2489
|
+
"CreateAccountRequest": ".createaccountrequest",
|
|
2490
|
+
"CreateAccountRequestChain": ".createaccountrequest",
|
|
2491
|
+
"CreateAccountRequestTypedDict": ".createaccountrequest",
|
|
2492
|
+
"CreateAccountResponse": ".createaccountresponse",
|
|
2493
|
+
"CreateAccountResponseTypedDict": ".createaccountresponse",
|
|
2494
|
+
"DepositForBurnRequest": ".depositforburnrequest",
|
|
2495
|
+
"DepositForBurnRequestAmount": ".depositforburnrequest",
|
|
2496
|
+
"DepositForBurnRequestAmountTypedDict": ".depositforburnrequest",
|
|
2497
|
+
"DepositForBurnRequestChain": ".depositforburnrequest",
|
|
2498
|
+
"DepositForBurnRequestTransferMode": ".depositforburnrequest",
|
|
2499
|
+
"DepositForBurnRequestTypedDict": ".depositforburnrequest",
|
|
2500
|
+
"DestinationChain": ".depositforburnrequest",
|
|
2501
|
+
"DepositForBurnResponse": ".depositforburnresponse",
|
|
2502
|
+
"DepositForBurnResponseTransferMode": ".depositforburnresponse",
|
|
2503
|
+
"DepositForBurnResponseTypedDict": ".depositforburnresponse",
|
|
2182
2504
|
"Details": ".details",
|
|
2183
2505
|
"DetailsTypedDict": ".details",
|
|
2506
|
+
"EarnManageParams": ".earnmanageparams",
|
|
2507
|
+
"EarnManageParamsAction": ".earnmanageparams",
|
|
2508
|
+
"EarnManageParamsTypedDict": ".earnmanageparams",
|
|
2509
|
+
"EarnManageParamsVenue": ".earnmanageparams",
|
|
2510
|
+
"EarnManageParamsVenueTypedDict": ".earnmanageparams",
|
|
2511
|
+
"EarnManageRequest": ".earnmanagerequest",
|
|
2512
|
+
"EarnManageRequestAction": ".earnmanagerequest",
|
|
2513
|
+
"EarnManageRequestTypedDict": ".earnmanagerequest",
|
|
2514
|
+
"EarnManageRequestVenue": ".earnmanagerequest",
|
|
2515
|
+
"EarnManageRequestVenueTypedDict": ".earnmanagerequest",
|
|
2516
|
+
"EarnManageResponse": ".earnmanageresponse",
|
|
2517
|
+
"EarnManageResponseTypedDict": ".earnmanageresponse",
|
|
2518
|
+
"EarnPositionsResponse": ".earnpositionsresponse",
|
|
2519
|
+
"EarnPositionsResponseTypedDict": ".earnpositionsresponse",
|
|
2520
|
+
"UserPosition": ".earnpositionsresponse",
|
|
2521
|
+
"UserPositionTypedDict": ".earnpositionsresponse",
|
|
2522
|
+
"EarnSwapParams": ".earnswapparams",
|
|
2523
|
+
"EarnSwapParamsAmountIn": ".earnswapparams",
|
|
2524
|
+
"EarnSwapParamsAmountInTypedDict": ".earnswapparams",
|
|
2525
|
+
"EarnSwapParamsSlippage": ".earnswapparams",
|
|
2526
|
+
"EarnSwapParamsSlippageTypedDict": ".earnswapparams",
|
|
2527
|
+
"EarnSwapParamsTypedDict": ".earnswapparams",
|
|
2528
|
+
"EarnSwapRequest": ".earnswaprequest",
|
|
2529
|
+
"EarnSwapRequestAmountIn": ".earnswaprequest",
|
|
2530
|
+
"EarnSwapRequestAmountInTypedDict": ".earnswaprequest",
|
|
2531
|
+
"EarnSwapRequestSlippage": ".earnswaprequest",
|
|
2532
|
+
"EarnSwapRequestSlippageTypedDict": ".earnswaprequest",
|
|
2533
|
+
"EarnSwapRequestTypedDict": ".earnswaprequest",
|
|
2534
|
+
"EarnSwapResponse": ".earnswapresponse",
|
|
2535
|
+
"EarnSwapResponseTypedDict": ".earnswapresponse",
|
|
2536
|
+
"EarnTransferRequest": ".earntransferrequest",
|
|
2537
|
+
"EarnTransferRequestAction": ".earntransferrequest",
|
|
2538
|
+
"EarnTransferRequestAmount": ".earntransferrequest",
|
|
2539
|
+
"EarnTransferRequestAmountTypedDict": ".earntransferrequest",
|
|
2540
|
+
"EarnTransferRequestTypedDict": ".earntransferrequest",
|
|
2541
|
+
"EarnTransferResponse": ".earntransferresponse",
|
|
2542
|
+
"EarnTransferResponseEip712": ".earntransferresponse",
|
|
2543
|
+
"EarnTransferResponseEip712TypedDict": ".earntransferresponse",
|
|
2544
|
+
"EarnTransferResponseTypedDict": ".earntransferresponse",
|
|
2545
|
+
"Eip712DomainField": ".eip712domainfield",
|
|
2546
|
+
"Eip712DomainFieldTypedDict": ".eip712domainfield",
|
|
2547
|
+
"Eip712Field": ".eip712field",
|
|
2548
|
+
"Eip712FieldTypedDict": ".eip712field",
|
|
2184
2549
|
"EnsNameInfoResponse": ".ensnameinforesponse",
|
|
2185
2550
|
"EnsNameInfoResponseTypedDict": ".ensnameinforesponse",
|
|
2186
2551
|
"Erc20Data": ".erc20data",
|
|
@@ -2210,10 +2575,17 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2210
2575
|
"EthenaUnstakeRequest": ".ethenaunstakerequest",
|
|
2211
2576
|
"EthenaUnstakeRequestChain": ".ethenaunstakerequest",
|
|
2212
2577
|
"EthenaUnstakeRequestTypedDict": ".ethenaunstakerequest",
|
|
2578
|
+
"Denomination": ".fee",
|
|
2579
|
+
"Fee": ".fee",
|
|
2580
|
+
"FeeAmount": ".fee",
|
|
2581
|
+
"FeeAmountTypedDict": ".fee",
|
|
2582
|
+
"FeeTypedDict": ".fee",
|
|
2213
2583
|
"FeeEnum": ".feeenum",
|
|
2214
2584
|
"InterestRateMode": ".interestratemode",
|
|
2215
2585
|
"LiquidationCall": ".liquidationcall",
|
|
2216
2586
|
"LiquidationCallTypedDict": ".liquidationcall",
|
|
2587
|
+
"ListAaveMarketsResponse": ".listaavemarketsresponse",
|
|
2588
|
+
"ListAaveMarketsResponseTypedDict": ".listaavemarketsresponse",
|
|
2217
2589
|
"LpBalance": ".lpbalance",
|
|
2218
2590
|
"LpBalanceTypedDict": ".lpbalance",
|
|
2219
2591
|
"Market": ".market",
|
|
@@ -2222,6 +2594,16 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2222
2594
|
"MarketPositionTypedDict": ".marketposition",
|
|
2223
2595
|
"MarketTokens": ".markettokens",
|
|
2224
2596
|
"MarketTokensTypedDict": ".markettokens",
|
|
2597
|
+
"MaxSupplyApyInfo": ".maxsupplyapyinfo",
|
|
2598
|
+
"MaxSupplyApyInfoTypedDict": ".maxsupplyapyinfo",
|
|
2599
|
+
"MintPrepareCompletedResponse": ".mintpreparecompletedresponse",
|
|
2600
|
+
"MintPrepareCompletedResponseTypedDict": ".mintpreparecompletedresponse",
|
|
2601
|
+
"MintPreparePendingResponse": ".mintpreparependingresponse",
|
|
2602
|
+
"MintPreparePendingResponseTypedDict": ".mintpreparependingresponse",
|
|
2603
|
+
"MintPrepareReadyResponse": ".mintpreparereadyresponse",
|
|
2604
|
+
"MintPrepareReadyResponseTypedDict": ".mintpreparereadyresponse",
|
|
2605
|
+
"MintPrepareRequest": ".mintpreparerequest",
|
|
2606
|
+
"MintPrepareRequestTypedDict": ".mintpreparerequest",
|
|
2225
2607
|
"MorphoBorrowParams": ".morphoborrowparams",
|
|
2226
2608
|
"MorphoBorrowParamsAmount": ".morphoborrowparams",
|
|
2227
2609
|
"MorphoBorrowParamsAmountTypedDict": ".morphoborrowparams",
|
|
@@ -2293,28 +2675,25 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2293
2675
|
"MulticallExecuteRequestChain": ".multicallexecuterequest",
|
|
2294
2676
|
"MulticallExecuteRequestTypedDict": ".multicallexecuterequest",
|
|
2295
2677
|
"OdosSwapParams": ".odosswapparams",
|
|
2296
|
-
"
|
|
2297
|
-
"
|
|
2298
|
-
"OdosSwapParamsTokenIn": ".odosswapparams",
|
|
2299
|
-
"OdosSwapParamsTokenInTypedDict": ".odosswapparams",
|
|
2300
|
-
"OdosSwapParamsTokenOut": ".odosswapparams",
|
|
2301
|
-
"OdosSwapParamsTokenOutTypedDict": ".odosswapparams",
|
|
2678
|
+
"OdosSwapParamsAmountIn": ".odosswapparams",
|
|
2679
|
+
"OdosSwapParamsAmountInTypedDict": ".odosswapparams",
|
|
2302
2680
|
"OdosSwapParamsTypedDict": ".odosswapparams",
|
|
2303
2681
|
"OdosSwapRequest": ".odosswaprequest",
|
|
2304
|
-
"
|
|
2305
|
-
"
|
|
2682
|
+
"OdosSwapRequestAmountIn": ".odosswaprequest",
|
|
2683
|
+
"OdosSwapRequestAmountInTypedDict": ".odosswaprequest",
|
|
2306
2684
|
"OdosSwapRequestChain": ".odosswaprequest",
|
|
2307
|
-
"OdosSwapRequestTokenIn": ".odosswaprequest",
|
|
2308
|
-
"OdosSwapRequestTokenInTypedDict": ".odosswaprequest",
|
|
2309
|
-
"OdosSwapRequestTokenOut": ".odosswaprequest",
|
|
2310
|
-
"OdosSwapRequestTokenOutTypedDict": ".odosswaprequest",
|
|
2311
2685
|
"OdosSwapRequestTypedDict": ".odosswaprequest",
|
|
2312
2686
|
"OdosTransactionResponse": ".odostransactionresponse",
|
|
2313
2687
|
"OdosTransactionResponseTransaction": ".odostransactionresponse",
|
|
2314
2688
|
"OdosTransactionResponseTransactionTypedDict": ".odostransactionresponse",
|
|
2315
2689
|
"OdosTransactionResponseTypedDict": ".odostransactionresponse",
|
|
2690
|
+
"OneInchSwapParams": ".oneinchswapparams",
|
|
2691
|
+
"OneInchSwapParamsAmountIn": ".oneinchswapparams",
|
|
2692
|
+
"OneInchSwapParamsAmountInTypedDict": ".oneinchswapparams",
|
|
2693
|
+
"OneInchSwapParamsTypedDict": ".oneinchswapparams",
|
|
2316
2694
|
"OpenPosition": ".openposition",
|
|
2317
2695
|
"OpenPositionTypedDict": ".openposition",
|
|
2696
|
+
"OperationType": ".operationtype",
|
|
2318
2697
|
"PendleGetMarketResponse": ".pendlegetmarketresponse",
|
|
2319
2698
|
"PendleGetMarketResponseTypedDict": ".pendlegetmarketresponse",
|
|
2320
2699
|
"PendleListMarketsResponse": ".pendlelistmarketsresponse",
|
|
@@ -2325,16 +2704,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2325
2704
|
"PendleManageLiquidityParamsAction": ".pendlemanageliquidityparams",
|
|
2326
2705
|
"PendleManageLiquidityParamsAmountIn": ".pendlemanageliquidityparams",
|
|
2327
2706
|
"PendleManageLiquidityParamsAmountInTypedDict": ".pendlemanageliquidityparams",
|
|
2328
|
-
"PendleManageLiquidityParamsToken": ".pendlemanageliquidityparams",
|
|
2329
|
-
"PendleManageLiquidityParamsTokenTypedDict": ".pendlemanageliquidityparams",
|
|
2330
2707
|
"PendleManageLiquidityParamsTypedDict": ".pendlemanageliquidityparams",
|
|
2331
2708
|
"PendleManageLiquidityRequest": ".pendlemanageliquidityrequest",
|
|
2332
2709
|
"PendleManageLiquidityRequestAction": ".pendlemanageliquidityrequest",
|
|
2333
2710
|
"PendleManageLiquidityRequestAmountIn": ".pendlemanageliquidityrequest",
|
|
2334
2711
|
"PendleManageLiquidityRequestAmountInTypedDict": ".pendlemanageliquidityrequest",
|
|
2335
2712
|
"PendleManageLiquidityRequestChain": ".pendlemanageliquidityrequest",
|
|
2336
|
-
"PendleManageLiquidityRequestToken": ".pendlemanageliquidityrequest",
|
|
2337
|
-
"PendleManageLiquidityRequestTokenTypedDict": ".pendlemanageliquidityrequest",
|
|
2338
2713
|
"PendleManageLiquidityRequestTypedDict": ".pendlemanageliquidityrequest",
|
|
2339
2714
|
"PendleMarket": ".pendlemarket",
|
|
2340
2715
|
"PendleMarketTypedDict": ".pendlemarket",
|
|
@@ -2347,47 +2722,59 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2347
2722
|
"PendleTradePtParamsAction": ".pendletradeptparams",
|
|
2348
2723
|
"PendleTradePtParamsAmountIn": ".pendletradeptparams",
|
|
2349
2724
|
"PendleTradePtParamsAmountInTypedDict": ".pendletradeptparams",
|
|
2350
|
-
"PendleTradePtParamsToken": ".pendletradeptparams",
|
|
2351
|
-
"PendleTradePtParamsTokenTypedDict": ".pendletradeptparams",
|
|
2352
2725
|
"PendleTradePtParamsTypedDict": ".pendletradeptparams",
|
|
2353
2726
|
"PendleTradePtRequest": ".pendletradeptrequest",
|
|
2354
2727
|
"PendleTradePtRequestAction": ".pendletradeptrequest",
|
|
2355
2728
|
"PendleTradePtRequestAmountIn": ".pendletradeptrequest",
|
|
2356
2729
|
"PendleTradePtRequestAmountInTypedDict": ".pendletradeptrequest",
|
|
2357
2730
|
"PendleTradePtRequestChain": ".pendletradeptrequest",
|
|
2358
|
-
"PendleTradePtRequestToken": ".pendletradeptrequest",
|
|
2359
|
-
"PendleTradePtRequestTokenTypedDict": ".pendletradeptrequest",
|
|
2360
2731
|
"PendleTradePtRequestTypedDict": ".pendletradeptrequest",
|
|
2361
2732
|
"PendleTradeYtParams": ".pendletradeytparams",
|
|
2362
2733
|
"PendleTradeYtParamsAction": ".pendletradeytparams",
|
|
2363
2734
|
"PendleTradeYtParamsAmountIn": ".pendletradeytparams",
|
|
2364
2735
|
"PendleTradeYtParamsAmountInTypedDict": ".pendletradeytparams",
|
|
2365
|
-
"PendleTradeYtParamsToken": ".pendletradeytparams",
|
|
2366
|
-
"PendleTradeYtParamsTokenTypedDict": ".pendletradeytparams",
|
|
2367
2736
|
"PendleTradeYtParamsTypedDict": ".pendletradeytparams",
|
|
2368
2737
|
"PendleTradeYtRequest": ".pendletradeytrequest",
|
|
2369
2738
|
"PendleTradeYtRequestAction": ".pendletradeytrequest",
|
|
2370
2739
|
"PendleTradeYtRequestAmountIn": ".pendletradeytrequest",
|
|
2371
2740
|
"PendleTradeYtRequestAmountInTypedDict": ".pendletradeytrequest",
|
|
2372
2741
|
"PendleTradeYtRequestChain": ".pendletradeytrequest",
|
|
2373
|
-
"PendleTradeYtRequestToken": ".pendletradeytrequest",
|
|
2374
|
-
"PendleTradeYtRequestTokenTypedDict": ".pendletradeytrequest",
|
|
2375
2742
|
"PendleTradeYtRequestTypedDict": ".pendletradeytrequest",
|
|
2376
2743
|
"PendleTxResponse": ".pendletxresponse",
|
|
2377
2744
|
"PendleTxResponseTransaction": ".pendletxresponse",
|
|
2378
2745
|
"PendleTxResponseTransactionTypedDict": ".pendletxresponse",
|
|
2379
2746
|
"PendleTxResponseTypedDict": ".pendletxresponse",
|
|
2747
|
+
"Permit2TypedDataInput": ".permit2typeddata_input",
|
|
2748
|
+
"Permit2TypedDataInputTypedDict": ".permit2typeddata_input",
|
|
2749
|
+
"Permit2TypedDataOutput": ".permit2typeddata_output",
|
|
2750
|
+
"Permit2TypedDataOutputTypedDict": ".permit2typeddata_output",
|
|
2751
|
+
"PermitField": ".permitfield",
|
|
2752
|
+
"PermitFieldTypedDict": ".permitfield",
|
|
2753
|
+
"PermitMessage": ".permitmessage",
|
|
2754
|
+
"PermitMessageTypedDict": ".permitmessage",
|
|
2755
|
+
"PermitTransferFromMessage": ".permittransferfrommessage",
|
|
2756
|
+
"PermitTransferFromMessageTypedDict": ".permittransferfrommessage",
|
|
2757
|
+
"PermitTypedDataResponseInput": ".permittypeddataresponse_input",
|
|
2758
|
+
"PermitTypedDataResponseInputTypedDict": ".permittypeddataresponse_input",
|
|
2759
|
+
"PermitTypedDataResponseOutput": ".permittypeddataresponse_output",
|
|
2760
|
+
"PermitTypedDataResponseOutputTypedDict": ".permittypeddataresponse_output",
|
|
2380
2761
|
"Portfolio": ".portfolio",
|
|
2381
2762
|
"PortfolioTypedDict": ".portfolio",
|
|
2382
2763
|
"Position": ".position",
|
|
2383
2764
|
"PositionTypedDict": ".position",
|
|
2384
2765
|
"Protocol": ".protocol",
|
|
2385
|
-
"RedeemUnderlying": ".redeemunderlying",
|
|
2386
|
-
"RedeemUnderlyingTypedDict": ".redeemunderlying",
|
|
2387
2766
|
"Repay": ".repay",
|
|
2388
2767
|
"RepayTypedDict": ".repay",
|
|
2389
2768
|
"Reserve": ".reserve",
|
|
2390
2769
|
"ReserveTypedDict": ".reserve",
|
|
2770
|
+
"SafeTransactionParams": ".safetransactionparams",
|
|
2771
|
+
"SafeTransactionParamsTypedDict": ".safetransactionparams",
|
|
2772
|
+
"SafeTransactionResponse": ".safetransactionresponse",
|
|
2773
|
+
"SafeTransactionResponseTypedDict": ".safetransactionresponse",
|
|
2774
|
+
"SafeTxField": ".safetxfield",
|
|
2775
|
+
"SafeTxFieldTypedDict": ".safetxfield",
|
|
2776
|
+
"SafeTxMessage": ".safetxmessage",
|
|
2777
|
+
"SafeTxMessageTypedDict": ".safetxmessage",
|
|
2391
2778
|
"Security": ".security",
|
|
2392
2779
|
"SecurityTypedDict": ".security",
|
|
2393
2780
|
"SetAllowanceParams": ".setallowanceparams",
|
|
@@ -2396,8 +2783,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2396
2783
|
"SetAllowanceParamsContractEnum": ".setallowanceparams",
|
|
2397
2784
|
"SetAllowanceParamsContractUnion": ".setallowanceparams",
|
|
2398
2785
|
"SetAllowanceParamsContractUnionTypedDict": ".setallowanceparams",
|
|
2399
|
-
"SetAllowanceParamsToken": ".setallowanceparams",
|
|
2400
|
-
"SetAllowanceParamsTokenTypedDict": ".setallowanceparams",
|
|
2401
2786
|
"SetAllowanceParamsTypedDict": ".setallowanceparams",
|
|
2402
2787
|
"SetAllowanceRequest": ".setallowancerequest",
|
|
2403
2788
|
"SetAllowanceRequestAmount": ".setallowancerequest",
|
|
@@ -2406,8 +2791,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2406
2791
|
"SetAllowanceRequestContractEnum": ".setallowancerequest",
|
|
2407
2792
|
"SetAllowanceRequestContractUnion": ".setallowancerequest",
|
|
2408
2793
|
"SetAllowanceRequestContractUnionTypedDict": ".setallowancerequest",
|
|
2409
|
-
"SetAllowanceRequestToken": ".setallowancerequest",
|
|
2410
|
-
"SetAllowanceRequestTokenTypedDict": ".setallowancerequest",
|
|
2411
2794
|
"SetAllowanceRequestTypedDict": ".setallowancerequest",
|
|
2412
2795
|
"R": ".signedauthorization",
|
|
2413
2796
|
"RTypedDict": ".signedauthorization",
|
|
@@ -2453,6 +2836,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2453
2836
|
"SkyWithdrawRequest": ".skywithdrawrequest",
|
|
2454
2837
|
"SkyWithdrawRequestChain": ".skywithdrawrequest",
|
|
2455
2838
|
"SkyWithdrawRequestTypedDict": ".skywithdrawrequest",
|
|
2839
|
+
"SponsorGasRequest": ".sponsorgasrequest",
|
|
2840
|
+
"SponsorGasRequestEip712": ".sponsorgasrequest",
|
|
2841
|
+
"SponsorGasRequestEip712TypedDict": ".sponsorgasrequest",
|
|
2842
|
+
"SponsorGasRequestTypedDict": ".sponsorgasrequest",
|
|
2843
|
+
"SponsorGasResponse": ".sponsorgasresponse",
|
|
2844
|
+
"SponsorGasResponseTypedDict": ".sponsorgasresponse",
|
|
2456
2845
|
"Supply": ".supply",
|
|
2457
2846
|
"SupplyTypedDict": ".supply",
|
|
2458
2847
|
"SupportedChainInfo": ".supportedchaininfo",
|
|
@@ -2461,29 +2850,26 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2461
2850
|
"SwapBorrowRateTypedDict": ".swapborrowrate",
|
|
2462
2851
|
"SyPosition": ".syposition",
|
|
2463
2852
|
"SyPositionTypedDict": ".syposition",
|
|
2464
|
-
"TokenEnum": ".token_enum",
|
|
2465
|
-
"TokenAddressResponse": ".tokenaddressresponse",
|
|
2466
|
-
"TokenAddressResponseTypedDict": ".tokenaddressresponse",
|
|
2467
2853
|
"TokenBalanceResponse": ".tokenbalanceresponse",
|
|
2468
2854
|
"TokenBalanceResponseTypedDict": ".tokenbalanceresponse",
|
|
2469
|
-
"
|
|
2470
|
-
"
|
|
2471
|
-
"
|
|
2472
|
-
"
|
|
2855
|
+
"TokenConfig": ".tokenconfig",
|
|
2856
|
+
"TokenConfigTypedDict": ".tokenconfig",
|
|
2857
|
+
"TokenListResponse": ".tokenlistresponse",
|
|
2858
|
+
"TokenListResponseTypedDict": ".tokenlistresponse",
|
|
2859
|
+
"TokenMarketData": ".tokenmarketdata",
|
|
2860
|
+
"TokenMarketDataTypedDict": ".tokenmarketdata",
|
|
2861
|
+
"TokenPermissions": ".tokenpermissions",
|
|
2862
|
+
"TokenPermissionsTypedDict": ".tokenpermissions",
|
|
2473
2863
|
"TokenPriceResponse": ".tokenpriceresponse",
|
|
2474
2864
|
"TokenPriceResponseTypedDict": ".tokenpriceresponse",
|
|
2475
2865
|
"TokenTransferParams": ".tokentransferparams",
|
|
2476
2866
|
"TokenTransferParamsAmount": ".tokentransferparams",
|
|
2477
2867
|
"TokenTransferParamsAmountTypedDict": ".tokentransferparams",
|
|
2478
|
-
"TokenTransferParamsToken": ".tokentransferparams",
|
|
2479
|
-
"TokenTransferParamsTokenTypedDict": ".tokentransferparams",
|
|
2480
2868
|
"TokenTransferParamsTypedDict": ".tokentransferparams",
|
|
2481
2869
|
"TokenTransferRequest": ".tokentransferrequest",
|
|
2482
2870
|
"TokenTransferRequestAmount": ".tokentransferrequest",
|
|
2483
2871
|
"TokenTransferRequestAmountTypedDict": ".tokentransferrequest",
|
|
2484
2872
|
"TokenTransferRequestChain": ".tokentransferrequest",
|
|
2485
|
-
"TokenTransferRequestToken": ".tokentransferrequest",
|
|
2486
|
-
"TokenTransferRequestTokenTypedDict": ".tokentransferrequest",
|
|
2487
2873
|
"TokenTransferRequestTypedDict": ".tokentransferrequest",
|
|
2488
2874
|
"TransactionResponse": ".transactionresponse",
|
|
2489
2875
|
"TransactionResponseTransaction": ".transactionresponse",
|
|
@@ -2494,19 +2880,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2494
2880
|
"UniswapBuyExactlyParams": ".uniswapbuyexactlyparams",
|
|
2495
2881
|
"UniswapBuyExactlyParamsAmountOut": ".uniswapbuyexactlyparams",
|
|
2496
2882
|
"UniswapBuyExactlyParamsAmountOutTypedDict": ".uniswapbuyexactlyparams",
|
|
2497
|
-
"UniswapBuyExactlyParamsTokenIn": ".uniswapbuyexactlyparams",
|
|
2498
|
-
"UniswapBuyExactlyParamsTokenInTypedDict": ".uniswapbuyexactlyparams",
|
|
2499
|
-
"UniswapBuyExactlyParamsTokenOut": ".uniswapbuyexactlyparams",
|
|
2500
|
-
"UniswapBuyExactlyParamsTokenOutTypedDict": ".uniswapbuyexactlyparams",
|
|
2501
2883
|
"UniswapBuyExactlyParamsTypedDict": ".uniswapbuyexactlyparams",
|
|
2502
2884
|
"UniswapBuyExactlyRequest": ".uniswapbuyexactlyrequest",
|
|
2503
2885
|
"UniswapBuyExactlyRequestAmountOut": ".uniswapbuyexactlyrequest",
|
|
2504
2886
|
"UniswapBuyExactlyRequestAmountOutTypedDict": ".uniswapbuyexactlyrequest",
|
|
2505
2887
|
"UniswapBuyExactlyRequestChain": ".uniswapbuyexactlyrequest",
|
|
2506
|
-
"UniswapBuyExactlyRequestTokenIn": ".uniswapbuyexactlyrequest",
|
|
2507
|
-
"UniswapBuyExactlyRequestTokenInTypedDict": ".uniswapbuyexactlyrequest",
|
|
2508
|
-
"UniswapBuyExactlyRequestTokenOut": ".uniswapbuyexactlyrequest",
|
|
2509
|
-
"UniswapBuyExactlyRequestTokenOutTypedDict": ".uniswapbuyexactlyrequest",
|
|
2510
2888
|
"UniswapBuyExactlyRequestTypedDict": ".uniswapbuyexactlyrequest",
|
|
2511
2889
|
"UniswapBuyExactlyTransactionResponse": ".uniswapbuyexactlytransactionresponse",
|
|
2512
2890
|
"UniswapBuyExactlyTransactionResponseTransaction": ".uniswapbuyexactlytransactionresponse",
|
|
@@ -2567,19 +2945,11 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2567
2945
|
"UniswapSellExactlyParams": ".uniswapsellexactlyparams",
|
|
2568
2946
|
"UniswapSellExactlyParamsAmountIn": ".uniswapsellexactlyparams",
|
|
2569
2947
|
"UniswapSellExactlyParamsAmountInTypedDict": ".uniswapsellexactlyparams",
|
|
2570
|
-
"UniswapSellExactlyParamsTokenIn": ".uniswapsellexactlyparams",
|
|
2571
|
-
"UniswapSellExactlyParamsTokenInTypedDict": ".uniswapsellexactlyparams",
|
|
2572
|
-
"UniswapSellExactlyParamsTokenOut": ".uniswapsellexactlyparams",
|
|
2573
|
-
"UniswapSellExactlyParamsTokenOutTypedDict": ".uniswapsellexactlyparams",
|
|
2574
2948
|
"UniswapSellExactlyParamsTypedDict": ".uniswapsellexactlyparams",
|
|
2575
2949
|
"UniswapSellExactlyRequest": ".uniswapsellexactlyrequest",
|
|
2576
2950
|
"UniswapSellExactlyRequestAmountIn": ".uniswapsellexactlyrequest",
|
|
2577
2951
|
"UniswapSellExactlyRequestAmountInTypedDict": ".uniswapsellexactlyrequest",
|
|
2578
2952
|
"UniswapSellExactlyRequestChain": ".uniswapsellexactlyrequest",
|
|
2579
|
-
"UniswapSellExactlyRequestTokenIn": ".uniswapsellexactlyrequest",
|
|
2580
|
-
"UniswapSellExactlyRequestTokenInTypedDict": ".uniswapsellexactlyrequest",
|
|
2581
|
-
"UniswapSellExactlyRequestTokenOut": ".uniswapsellexactlyrequest",
|
|
2582
|
-
"UniswapSellExactlyRequestTokenOutTypedDict": ".uniswapsellexactlyrequest",
|
|
2583
2953
|
"UniswapSellExactlyRequestTypedDict": ".uniswapsellexactlyrequest",
|
|
2584
2954
|
"UniswapSellExactlyTransactionResponse": ".uniswapsellexactlytransactionresponse",
|
|
2585
2955
|
"UniswapSellExactlyTransactionResponseTransaction": ".uniswapsellexactlytransactionresponse",
|
|
@@ -2611,9 +2981,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2611
2981
|
"UnwrapWethRequestTypedDict": ".unwrapwethrequest",
|
|
2612
2982
|
"UsageAsCollateral": ".usageascollateral",
|
|
2613
2983
|
"UsageAsCollateralTypedDict": ".usageascollateral",
|
|
2614
|
-
"Body": ".useroperation",
|
|
2615
|
-
"BodyTypedDict": ".useroperation",
|
|
2616
2984
|
"UserOperation": ".useroperation",
|
|
2985
|
+
"UserOperationBody": ".useroperation",
|
|
2986
|
+
"UserOperationBodyTypedDict": ".useroperation",
|
|
2617
2987
|
"UserOperationTypedDict": ".useroperation",
|
|
2618
2988
|
"UserOperationResponse": ".useroperationresponse",
|
|
2619
2989
|
"UserOperationResponseTypedDict": ".useroperationresponse",
|
|
@@ -2625,34 +2995,27 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2625
2995
|
"V1AaveAvgRateChain": ".v1_aave_avg_rateop",
|
|
2626
2996
|
"V1AaveAvgRateRequest": ".v1_aave_avg_rateop",
|
|
2627
2997
|
"V1AaveAvgRateRequestTypedDict": ".v1_aave_avg_rateop",
|
|
2628
|
-
"V1AaveAvgRateToken": ".v1_aave_avg_rateop",
|
|
2629
2998
|
"V1AaveHistoricalTransactionsChain": ".v1_aave_historical_transactionsop",
|
|
2630
2999
|
"V1AaveHistoricalTransactionsRequest": ".v1_aave_historical_transactionsop",
|
|
2631
3000
|
"V1AaveHistoricalTransactionsRequestTypedDict": ".v1_aave_historical_transactionsop",
|
|
2632
3001
|
"V1AaveLiquidityChangeChain": ".v1_aave_liquidity_changeop",
|
|
2633
3002
|
"V1AaveLiquidityChangeRequest": ".v1_aave_liquidity_changeop",
|
|
2634
3003
|
"V1AaveLiquidityChangeRequestTypedDict": ".v1_aave_liquidity_changeop",
|
|
2635
|
-
"V1AaveLiquidityChangeToken": ".v1_aave_liquidity_changeop",
|
|
2636
3004
|
"V1AaveRateChain": ".v1_aave_rateop",
|
|
2637
3005
|
"V1AaveRateRequest": ".v1_aave_rateop",
|
|
2638
3006
|
"V1AaveRateRequestTypedDict": ".v1_aave_rateop",
|
|
2639
|
-
"V1AaveRateToken": ".v1_aave_rateop",
|
|
2640
3007
|
"V1AaveReserveOverviewChain": ".v1_aave_reserve_overviewop",
|
|
2641
3008
|
"V1AaveReserveOverviewRequest": ".v1_aave_reserve_overviewop",
|
|
2642
3009
|
"V1AaveReserveOverviewRequestTypedDict": ".v1_aave_reserve_overviewop",
|
|
2643
|
-
"V1AaveReserveOverviewToken": ".v1_aave_reserve_overviewop",
|
|
2644
3010
|
"V1AaveStdRateChain": ".v1_aave_std_rateop",
|
|
2645
3011
|
"V1AaveStdRateRequest": ".v1_aave_std_rateop",
|
|
2646
3012
|
"V1AaveStdRateRequestTypedDict": ".v1_aave_std_rateop",
|
|
2647
|
-
"V1AaveStdRateToken": ".v1_aave_std_rateop",
|
|
2648
3013
|
"V1AaveTokenPriceChain": ".v1_aave_token_priceop",
|
|
2649
3014
|
"V1AaveTokenPriceRequest": ".v1_aave_token_priceop",
|
|
2650
3015
|
"V1AaveTokenPriceRequestTypedDict": ".v1_aave_token_priceop",
|
|
2651
|
-
"V1AaveTokenPriceToken": ".v1_aave_token_priceop",
|
|
2652
3016
|
"V1AaveUserPositionPerTokenChain": ".v1_aave_user_position_per_tokenop",
|
|
2653
3017
|
"V1AaveUserPositionPerTokenRequest": ".v1_aave_user_position_per_tokenop",
|
|
2654
3018
|
"V1AaveUserPositionPerTokenRequestTypedDict": ".v1_aave_user_position_per_tokenop",
|
|
2655
|
-
"V1AaveUserPositionPerTokenToken": ".v1_aave_user_position_per_tokenop",
|
|
2656
3019
|
"V1AaveUserPositionSummaryChain": ".v1_aave_user_position_summaryop",
|
|
2657
3020
|
"V1AaveUserPositionSummaryRequest": ".v1_aave_user_position_summaryop",
|
|
2658
3021
|
"V1AaveUserPositionSummaryRequestTypedDict": ".v1_aave_user_position_summaryop",
|
|
@@ -2662,8 +3025,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2662
3025
|
"V1AerodromeSlipstreamPoolPriceChain": ".v1_aerodrome_slipstream_pool_priceop",
|
|
2663
3026
|
"V1AerodromeSlipstreamPoolPriceRequest": ".v1_aerodrome_slipstream_pool_priceop",
|
|
2664
3027
|
"V1AerodromeSlipstreamPoolPriceRequestTypedDict": ".v1_aerodrome_slipstream_pool_priceop",
|
|
2665
|
-
"V1AerodromeSlipstreamPoolPriceTokenInToken": ".v1_aerodrome_slipstream_pool_priceop",
|
|
2666
|
-
"V1AerodromeSlipstreamPoolPriceTokenOutToken": ".v1_aerodrome_slipstream_pool_priceop",
|
|
2667
3028
|
"V1EthenaVaultChain": ".v1_ethena_vaultop",
|
|
2668
3029
|
"V1EthenaVaultRequest": ".v1_ethena_vaultop",
|
|
2669
3030
|
"V1EthenaVaultRequestTypedDict": ".v1_ethena_vaultop",
|
|
@@ -2673,8 +3034,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2673
3034
|
"V1GenericAllowanceContractUnionTypedDict": ".v1_generic_allowanceop",
|
|
2674
3035
|
"V1GenericAllowanceRequest": ".v1_generic_allowanceop",
|
|
2675
3036
|
"V1GenericAllowanceRequestTypedDict": ".v1_generic_allowanceop",
|
|
2676
|
-
"V1GenericAllowanceToken": ".v1_generic_allowanceop",
|
|
2677
|
-
"V1GenericAllowanceTokenTypedDict": ".v1_generic_allowanceop",
|
|
2678
3037
|
"V1GenericEnsChain": ".v1_generic_ensop",
|
|
2679
3038
|
"V1GenericEnsRequest": ".v1_generic_ensop",
|
|
2680
3039
|
"V1GenericEnsRequestTypedDict": ".v1_generic_ensop",
|
|
@@ -2683,19 +3042,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2683
3042
|
"V1GenericPortfolioRequestTypedDict": ".v1_generic_portfolioop",
|
|
2684
3043
|
"V1GenericSupportedChainsRequest": ".v1_generic_supported_chainsop",
|
|
2685
3044
|
"V1GenericSupportedChainsRequestTypedDict": ".v1_generic_supported_chainsop",
|
|
2686
|
-
"V1GenericSupportedTokensChain": ".v1_generic_supported_tokensop",
|
|
2687
|
-
"V1GenericSupportedTokensRequest": ".v1_generic_supported_tokensop",
|
|
2688
|
-
"V1GenericSupportedTokensRequestTypedDict": ".v1_generic_supported_tokensop",
|
|
2689
3045
|
"V1MorphoMarketPositionChain": ".v1_morpho_market_positionop",
|
|
2690
3046
|
"V1MorphoMarketPositionRequest": ".v1_morpho_market_positionop",
|
|
2691
3047
|
"V1MorphoMarketPositionRequestTypedDict": ".v1_morpho_market_positionop",
|
|
2692
3048
|
"V1MorphoMarketChain": ".v1_morpho_marketop",
|
|
2693
3049
|
"V1MorphoMarketRequest": ".v1_morpho_marketop",
|
|
2694
3050
|
"V1MorphoMarketRequestTypedDict": ".v1_morpho_marketop",
|
|
2695
|
-
"CollateralToken": ".v1_morpho_marketsop",
|
|
2696
|
-
"CollateralTokenTypedDict": ".v1_morpho_marketsop",
|
|
2697
|
-
"LoanToken": ".v1_morpho_marketsop",
|
|
2698
|
-
"LoanTokenTypedDict": ".v1_morpho_marketsop",
|
|
2699
3051
|
"V1MorphoMarketsChain": ".v1_morpho_marketsop",
|
|
2700
3052
|
"V1MorphoMarketsRequest": ".v1_morpho_marketsop",
|
|
2701
3053
|
"V1MorphoMarketsRequestTypedDict": ".v1_morpho_marketsop",
|
|
@@ -2705,8 +3057,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2705
3057
|
"V1MorphoVaultChain": ".v1_morpho_vaultop",
|
|
2706
3058
|
"V1MorphoVaultRequest": ".v1_morpho_vaultop",
|
|
2707
3059
|
"V1MorphoVaultRequestTypedDict": ".v1_morpho_vaultop",
|
|
2708
|
-
"DepositToken": ".v1_morpho_vaultsop",
|
|
2709
|
-
"DepositTokenTypedDict": ".v1_morpho_vaultsop",
|
|
2710
3060
|
"V1MorphoVaultsChain": ".v1_morpho_vaultsop",
|
|
2711
3061
|
"V1MorphoVaultsRequest": ".v1_morpho_vaultsop",
|
|
2712
3062
|
"V1MorphoVaultsRequestTypedDict": ".v1_morpho_vaultsop",
|
|
@@ -2722,15 +3072,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2722
3072
|
"V1SkyPositionChain": ".v1_sky_positionop",
|
|
2723
3073
|
"V1SkyPositionRequest": ".v1_sky_positionop",
|
|
2724
3074
|
"V1SkyPositionRequestTypedDict": ".v1_sky_positionop",
|
|
2725
|
-
"V1TokenAddressChain": ".v1_token_addressop",
|
|
2726
|
-
"V1TokenAddressRequest": ".v1_token_addressop",
|
|
2727
|
-
"V1TokenAddressRequestTypedDict": ".v1_token_addressop",
|
|
2728
|
-
"V1TokenAddressToken": ".v1_token_addressop",
|
|
2729
3075
|
"V1TokenBalanceChain": ".v1_token_balanceop",
|
|
2730
3076
|
"V1TokenBalanceRequest": ".v1_token_balanceop",
|
|
2731
3077
|
"V1TokenBalanceRequestTypedDict": ".v1_token_balanceop",
|
|
2732
|
-
"
|
|
2733
|
-
"
|
|
3078
|
+
"V1TokenListChain": ".v1_token_listop",
|
|
3079
|
+
"V1TokenListRequest": ".v1_token_listop",
|
|
3080
|
+
"V1TokenListRequestTypedDict": ".v1_token_listop",
|
|
2734
3081
|
"V1TokenPriceChain": ".v1_token_priceop",
|
|
2735
3082
|
"V1TokenPriceRequest": ".v1_token_priceop",
|
|
2736
3083
|
"V1TokenPriceRequestTypedDict": ".v1_token_priceop",
|
|
@@ -2746,27 +3093,44 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2746
3093
|
"V1UniswapPoolPriceFeeEnum": ".v1_uniswap_pool_priceop",
|
|
2747
3094
|
"V1UniswapPoolPriceRequest": ".v1_uniswap_pool_priceop",
|
|
2748
3095
|
"V1UniswapPoolPriceRequestTypedDict": ".v1_uniswap_pool_priceop",
|
|
2749
|
-
"V1UniswapPoolPriceTokenInToken": ".v1_uniswap_pool_priceop",
|
|
2750
|
-
"V1UniswapPoolPriceTokenOutToken": ".v1_uniswap_pool_priceop",
|
|
2751
3096
|
"V1UniswapQuoteBuyExactlyAmountOut": ".v1_uniswap_quote_buy_exactlyop",
|
|
2752
3097
|
"V1UniswapQuoteBuyExactlyAmountOutTypedDict": ".v1_uniswap_quote_buy_exactlyop",
|
|
2753
3098
|
"V1UniswapQuoteBuyExactlyChain": ".v1_uniswap_quote_buy_exactlyop",
|
|
2754
3099
|
"V1UniswapQuoteBuyExactlyFeeEnum": ".v1_uniswap_quote_buy_exactlyop",
|
|
2755
3100
|
"V1UniswapQuoteBuyExactlyRequest": ".v1_uniswap_quote_buy_exactlyop",
|
|
2756
3101
|
"V1UniswapQuoteBuyExactlyRequestTypedDict": ".v1_uniswap_quote_buy_exactlyop",
|
|
2757
|
-
"V1UniswapQuoteBuyExactlyTokenInToken": ".v1_uniswap_quote_buy_exactlyop",
|
|
2758
|
-
"V1UniswapQuoteBuyExactlyTokenOutToken": ".v1_uniswap_quote_buy_exactlyop",
|
|
2759
3102
|
"V1UniswapQuoteSellExactlyAmountIn": ".v1_uniswap_quote_sell_exactlyop",
|
|
2760
3103
|
"V1UniswapQuoteSellExactlyAmountInTypedDict": ".v1_uniswap_quote_sell_exactlyop",
|
|
2761
3104
|
"V1UniswapQuoteSellExactlyChain": ".v1_uniswap_quote_sell_exactlyop",
|
|
2762
3105
|
"V1UniswapQuoteSellExactlyFeeEnum": ".v1_uniswap_quote_sell_exactlyop",
|
|
2763
3106
|
"V1UniswapQuoteSellExactlyRequest": ".v1_uniswap_quote_sell_exactlyop",
|
|
2764
3107
|
"V1UniswapQuoteSellExactlyRequestTypedDict": ".v1_uniswap_quote_sell_exactlyop",
|
|
2765
|
-
"V1UniswapQuoteSellExactlyTokenInToken": ".v1_uniswap_quote_sell_exactlyop",
|
|
2766
|
-
"V1UniswapQuoteSellExactlyTokenOutToken": ".v1_uniswap_quote_sell_exactlyop",
|
|
2767
3108
|
"V1VaultsVaultChain": ".v1_vaults_vaultop",
|
|
2768
3109
|
"V1VaultsVaultRequest": ".v1_vaults_vaultop",
|
|
2769
3110
|
"V1VaultsVaultRequestTypedDict": ".v1_vaults_vaultop",
|
|
3111
|
+
"V1WildcatMarketChain": ".v1_wildcat_marketop",
|
|
3112
|
+
"V1WildcatMarketRequest": ".v1_wildcat_marketop",
|
|
3113
|
+
"V1WildcatMarketRequestTypedDict": ".v1_wildcat_marketop",
|
|
3114
|
+
"Response200V2CctpMint": ".v2_cctp_mintop",
|
|
3115
|
+
"Response200V2CctpMintTypedDict": ".v2_cctp_mintop",
|
|
3116
|
+
"V2CctpMintResponse": ".v2_cctp_mintop",
|
|
3117
|
+
"V2CctpMintResponseTypedDict": ".v2_cctp_mintop",
|
|
3118
|
+
"V2EarnAaveMarketsRequest": ".v2_earn_aave_marketsop",
|
|
3119
|
+
"V2EarnAaveMarketsRequestTypedDict": ".v2_earn_aave_marketsop",
|
|
3120
|
+
"V2EarnPositionsChain": ".v2_earn_positionsop",
|
|
3121
|
+
"V2EarnPositionsRequest": ".v2_earn_positionsop",
|
|
3122
|
+
"V2EarnPositionsRequestTypedDict": ".v2_earn_positionsop",
|
|
3123
|
+
"Direction": ".v2_earn_vaultsop",
|
|
3124
|
+
"V2EarnVaultsRequest": ".v2_earn_vaultsop",
|
|
3125
|
+
"V2EarnVaultsRequestTypedDict": ".v2_earn_vaultsop",
|
|
3126
|
+
"V2BundleRequest": ".v2bundlerequest",
|
|
3127
|
+
"V2BundleRequestTypedDict": ".v2bundlerequest",
|
|
3128
|
+
"V2BundleResponse": ".v2bundleresponse",
|
|
3129
|
+
"V2BundleResponseTypedDict": ".v2bundleresponse",
|
|
3130
|
+
"V2UserOperation": ".v2useroperation",
|
|
3131
|
+
"V2UserOperationBody": ".v2useroperation",
|
|
3132
|
+
"V2UserOperationBodyTypedDict": ".v2useroperation",
|
|
3133
|
+
"V2UserOperationTypedDict": ".v2useroperation",
|
|
2770
3134
|
"Loc": ".validationerror",
|
|
2771
3135
|
"LocTypedDict": ".validationerror",
|
|
2772
3136
|
"ValidationError": ".validationerror",
|
|
@@ -2784,8 +3148,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2784
3148
|
"VaultDepositRequestTypedDict": ".vaultdepositrequest",
|
|
2785
3149
|
"VaultGetVaultResponse": ".vaultgetvaultresponse",
|
|
2786
3150
|
"VaultGetVaultResponseTypedDict": ".vaultgetvaultresponse",
|
|
2787
|
-
"
|
|
2788
|
-
"
|
|
3151
|
+
"VaultInfo": ".vaultinfo",
|
|
3152
|
+
"VaultInfoTypedDict": ".vaultinfo",
|
|
3153
|
+
"VaultsResponse": ".vaultsresponse",
|
|
3154
|
+
"VaultsResponseTypedDict": ".vaultsresponse",
|
|
3155
|
+
"VaultVenue": ".vaultvenue",
|
|
3156
|
+
"VaultVenueTypedDict": ".vaultvenue",
|
|
2789
3157
|
"VaultWithdrawParams": ".vaultwithdrawparams",
|
|
2790
3158
|
"VaultWithdrawParamsTypedDict": ".vaultwithdrawparams",
|
|
2791
3159
|
"VaultWithdrawRequest": ".vaultwithdrawrequest",
|
|
@@ -2793,6 +3161,10 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2793
3161
|
"VaultWithdrawRequestTypedDict": ".vaultwithdrawrequest",
|
|
2794
3162
|
"WeeklyApys": ".weeklyapys",
|
|
2795
3163
|
"WeeklyApysTypedDict": ".weeklyapys",
|
|
3164
|
+
"WildcatGetMarketResponse": ".wildcatgetmarketresponse",
|
|
3165
|
+
"WildcatGetMarketResponseTypedDict": ".wildcatgetmarketresponse",
|
|
3166
|
+
"Withdraw": ".withdraw",
|
|
3167
|
+
"WithdrawTypedDict": ".withdraw",
|
|
2796
3168
|
"WrapEthParams": ".wrapethparams",
|
|
2797
3169
|
"WrapEthParamsAmount": ".wrapethparams",
|
|
2798
3170
|
"WrapEthParamsAmountTypedDict": ".wrapethparams",
|