compass_api_sdk 0.6.0__py3-none-any.whl → 0.6.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of compass_api_sdk might be problematic. Click here for more details.
- compass_api_sdk/_version.py +2 -2
- compass_api_sdk/aave_v3.py +38 -104
- compass_api_sdk/aerodrome_slipstream.py +8 -28
- compass_api_sdk/models/__init__.py +107 -230
- compass_api_sdk/models/aave_avg_rateop.py +44 -16
- compass_api_sdk/models/aave_historical_transactionsop.py +45 -20
- compass_api_sdk/models/aave_liquidity_changeop.py +44 -18
- compass_api_sdk/models/aave_rateop.py +44 -16
- compass_api_sdk/models/aave_reserve_overviewop.py +44 -18
- compass_api_sdk/models/aave_std_rateop.py +44 -16
- compass_api_sdk/models/aave_token_priceop.py +44 -18
- compass_api_sdk/models/aave_user_position_per_tokenop.py +44 -20
- compass_api_sdk/models/aave_user_position_summaryop.py +44 -20
- compass_api_sdk/models/aerodrome_slipstream_liquidity_provision_positionsop.py +45 -20
- compass_api_sdk/models/aerodrome_slipstream_pool_priceop.py +45 -20
- compass_api_sdk/models/{tokenbalance.py → compass_api_backend_models_generic_read_response_portfolio_tokenbalance.py} +4 -2
- compass_api_sdk/models/compass_api_backend_models_pendle_read_response_positions_tokenbalance.py +18 -0
- compass_api_sdk/models/details.py +39 -0
- compass_api_sdk/models/generic_allowanceop.py +45 -18
- compass_api_sdk/models/generic_ensop.py +45 -16
- compass_api_sdk/models/generic_portfolioop.py +45 -18
- compass_api_sdk/models/generic_supported_tokensop.py +44 -20
- compass_api_sdk/models/generic_visualize_portfolioop.py +45 -20
- compass_api_sdk/models/increaseallowanceparams.py +20 -16
- compass_api_sdk/models/increaseallowancerequest.py +20 -16
- compass_api_sdk/models/lpbalance.py +20 -0
- compass_api_sdk/models/morpho_market_positionop.py +44 -18
- compass_api_sdk/models/morpho_marketop.py +44 -18
- compass_api_sdk/models/morpho_marketsop.py +7 -18
- compass_api_sdk/models/morpho_user_positionop.py +44 -18
- compass_api_sdk/models/morpho_vault_positionop.py +44 -18
- compass_api_sdk/models/morpho_vaultop.py +44 -16
- compass_api_sdk/models/morpho_vaultsop.py +7 -18
- compass_api_sdk/models/movement10percent.py +23 -0
- compass_api_sdk/models/multicallactiontype.py +0 -1
- compass_api_sdk/models/multicallauthorizationrequest.py +1 -15
- compass_api_sdk/models/openposition.py +28 -0
- compass_api_sdk/models/pendle_marketop.py +45 -19
- compass_api_sdk/models/pendle_marketsop.py +73 -0
- compass_api_sdk/models/pendle_positionop.py +45 -19
- compass_api_sdk/models/pendle_positionsop.py +80 -0
- compass_api_sdk/models/pendlelistmarketsresponse.py +17 -0
- compass_api_sdk/models/pendlelistuserpositionsresponse.py +17 -0
- compass_api_sdk/models/pendlemarket.py +46 -0
- compass_api_sdk/models/portfolio.py +10 -3
- compass_api_sdk/models/position.py +41 -0
- compass_api_sdk/models/sky_positionop.py +45 -16
- compass_api_sdk/models/syposition.py +17 -0
- compass_api_sdk/models/token_addressop.py +44 -18
- compass_api_sdk/models/token_balanceop.py +44 -17
- compass_api_sdk/models/uniswap_liquidity_provision_in_rangeop.py +44 -20
- compass_api_sdk/models/uniswap_liquidity_provision_positionsop.py +45 -20
- compass_api_sdk/models/uniswap_pool_priceop.py +44 -18
- compass_api_sdk/models/uniswap_quote_buy_exactlyop.py +44 -19
- compass_api_sdk/models/uniswap_quote_sell_exactlyop.py +44 -19
- compass_api_sdk/models/useroperation.py +20 -26
- compass_api_sdk/models/yieldrange.py +16 -0
- compass_api_sdk/morpho.py +28 -72
- compass_api_sdk/pendle.py +423 -21
- compass_api_sdk/sky.py +4 -8
- compass_api_sdk/token_sdk.py +8 -16
- compass_api_sdk/transaction_batching.py +0 -6
- compass_api_sdk/uniswap_v3.py +20 -64
- compass_api_sdk/universal.py +34 -60
- {compass_api_sdk-0.6.0.dist-info → compass_api_sdk-0.6.2.dist-info}/METADATA +5 -3
- {compass_api_sdk-0.6.0.dist-info → compass_api_sdk-0.6.2.dist-info}/RECORD +67 -56
- compass_api_sdk/models/contractname.py +0 -41
- compass_api_sdk/models/increaseallowanceanyparams.py +0 -58
- {compass_api_sdk-0.6.0.dist-info → compass_api_sdk-0.6.2.dist-info}/WHEEL +0 -0
|
@@ -5,71 +5,53 @@ from importlib import import_module
|
|
|
5
5
|
|
|
6
6
|
if TYPE_CHECKING:
|
|
7
7
|
from .aave_avg_rateop import (
|
|
8
|
-
AaveAvgRateBlock,
|
|
9
|
-
AaveAvgRateBlockTypedDict,
|
|
10
8
|
AaveAvgRateChain,
|
|
11
9
|
AaveAvgRateRequest,
|
|
12
10
|
AaveAvgRateRequestTypedDict,
|
|
13
11
|
AaveAvgRateToken,
|
|
14
12
|
)
|
|
15
13
|
from .aave_historical_transactionsop import (
|
|
16
|
-
AaveHistoricalTransactionsBlock,
|
|
17
|
-
AaveHistoricalTransactionsBlockTypedDict,
|
|
18
14
|
AaveHistoricalTransactionsChain,
|
|
19
15
|
AaveHistoricalTransactionsRequest,
|
|
20
16
|
AaveHistoricalTransactionsRequestTypedDict,
|
|
21
17
|
)
|
|
22
18
|
from .aave_liquidity_changeop import (
|
|
23
|
-
AaveLiquidityChangeBlock,
|
|
24
|
-
AaveLiquidityChangeBlockTypedDict,
|
|
25
19
|
AaveLiquidityChangeChain,
|
|
26
20
|
AaveLiquidityChangeRequest,
|
|
27
21
|
AaveLiquidityChangeRequestTypedDict,
|
|
28
22
|
AaveLiquidityChangeToken,
|
|
29
23
|
)
|
|
30
24
|
from .aave_rateop import (
|
|
31
|
-
AaveRateBlock,
|
|
32
|
-
AaveRateBlockTypedDict,
|
|
33
25
|
AaveRateChain,
|
|
34
26
|
AaveRateRequest,
|
|
35
27
|
AaveRateRequestTypedDict,
|
|
36
28
|
AaveRateToken,
|
|
37
29
|
)
|
|
38
30
|
from .aave_reserve_overviewop import (
|
|
39
|
-
AaveReserveOverviewBlock,
|
|
40
|
-
AaveReserveOverviewBlockTypedDict,
|
|
41
31
|
AaveReserveOverviewChain,
|
|
42
32
|
AaveReserveOverviewRequest,
|
|
43
33
|
AaveReserveOverviewRequestTypedDict,
|
|
44
34
|
AaveReserveOverviewToken,
|
|
45
35
|
)
|
|
46
36
|
from .aave_std_rateop import (
|
|
47
|
-
AaveStdRateBlock,
|
|
48
|
-
AaveStdRateBlockTypedDict,
|
|
49
37
|
AaveStdRateChain,
|
|
50
38
|
AaveStdRateRequest,
|
|
51
39
|
AaveStdRateRequestTypedDict,
|
|
52
40
|
AaveStdRateToken,
|
|
53
41
|
)
|
|
54
42
|
from .aave_token_priceop import (
|
|
55
|
-
AaveTokenPriceBlock,
|
|
56
|
-
AaveTokenPriceBlockTypedDict,
|
|
57
43
|
AaveTokenPriceChain,
|
|
58
44
|
AaveTokenPriceRequest,
|
|
59
45
|
AaveTokenPriceRequestTypedDict,
|
|
60
46
|
AaveTokenPriceToken,
|
|
61
47
|
)
|
|
62
48
|
from .aave_user_position_per_tokenop import (
|
|
63
|
-
AaveUserPositionPerTokenBlock,
|
|
64
|
-
AaveUserPositionPerTokenBlockTypedDict,
|
|
65
49
|
AaveUserPositionPerTokenChain,
|
|
66
50
|
AaveUserPositionPerTokenRequest,
|
|
67
51
|
AaveUserPositionPerTokenRequestTypedDict,
|
|
68
52
|
AaveUserPositionPerTokenToken,
|
|
69
53
|
)
|
|
70
54
|
from .aave_user_position_summaryop import (
|
|
71
|
-
AaveUserPositionSummaryBlock,
|
|
72
|
-
AaveUserPositionSummaryBlockTypedDict,
|
|
73
55
|
AaveUserPositionSummaryChain,
|
|
74
56
|
AaveUserPositionSummaryRequest,
|
|
75
57
|
AaveUserPositionSummaryRequestTypedDict,
|
|
@@ -158,15 +140,11 @@ if TYPE_CHECKING:
|
|
|
158
140
|
AaveWithdrawRequestTypedDict,
|
|
159
141
|
)
|
|
160
142
|
from .aerodrome_slipstream_liquidity_provision_positionsop import (
|
|
161
|
-
AerodromeSlipstreamLiquidityProvisionPositionsBlock,
|
|
162
|
-
AerodromeSlipstreamLiquidityProvisionPositionsBlockTypedDict,
|
|
163
143
|
AerodromeSlipstreamLiquidityProvisionPositionsChain,
|
|
164
144
|
AerodromeSlipstreamLiquidityProvisionPositionsRequest,
|
|
165
145
|
AerodromeSlipstreamLiquidityProvisionPositionsRequestTypedDict,
|
|
166
146
|
)
|
|
167
147
|
from .aerodrome_slipstream_pool_priceop import (
|
|
168
|
-
AerodromeSlipstreamPoolPriceBlock,
|
|
169
|
-
AerodromeSlipstreamPoolPriceBlockTypedDict,
|
|
170
148
|
AerodromeSlipstreamPoolPriceChain,
|
|
171
149
|
AerodromeSlipstreamPoolPriceRequest,
|
|
172
150
|
AerodromeSlipstreamPoolPriceRequestTypedDict,
|
|
@@ -289,6 +267,10 @@ if TYPE_CHECKING:
|
|
|
289
267
|
from .borrow import Borrow, BorrowTypedDict, Borrowratemode
|
|
290
268
|
from .chain import Chain
|
|
291
269
|
from .chaininfo import ChainInfo, ChainInfoTypedDict
|
|
270
|
+
from .compass_api_backend_models_generic_read_response_portfolio_tokenbalance import (
|
|
271
|
+
CompassAPIBackendModelsGenericReadResponsePortfolioTokenBalance,
|
|
272
|
+
CompassAPIBackendModelsGenericReadResponsePortfolioTokenBalanceTypedDict,
|
|
273
|
+
)
|
|
292
274
|
from .compass_api_backend_models_morpho_read_response_check_user_position_apydata import (
|
|
293
275
|
CompassAPIBackendModelsMorphoReadResponseCheckUserPositionApyData,
|
|
294
276
|
CompassAPIBackendModelsMorphoReadResponseCheckUserPositionApyDataTypedDict,
|
|
@@ -341,14 +323,16 @@ if TYPE_CHECKING:
|
|
|
341
323
|
CompassAPIBackendModelsMorphoReadResponseGetVaultsVaultState,
|
|
342
324
|
CompassAPIBackendModelsMorphoReadResponseGetVaultsVaultStateTypedDict,
|
|
343
325
|
)
|
|
344
|
-
from .
|
|
326
|
+
from .compass_api_backend_models_pendle_read_response_positions_tokenbalance import (
|
|
327
|
+
CompassAPIBackendModelsPendleReadResponsePositionsTokenBalance,
|
|
328
|
+
CompassAPIBackendModelsPendleReadResponsePositionsTokenBalanceTypedDict,
|
|
329
|
+
)
|
|
345
330
|
from .curator import Curator, CuratorTypedDict
|
|
331
|
+
from .details import Details, DetailsTypedDict
|
|
346
332
|
from .ensnameinforesponse import EnsNameInfoResponse, EnsNameInfoResponseTypedDict
|
|
347
333
|
from .erc20data import Erc20Data, Erc20DataTypedDict
|
|
348
334
|
from .feeenum import FeeEnum
|
|
349
335
|
from .generic_allowanceop import (
|
|
350
|
-
GenericAllowanceBlock,
|
|
351
|
-
GenericAllowanceBlockTypedDict,
|
|
352
336
|
GenericAllowanceChain,
|
|
353
337
|
GenericAllowanceContractName,
|
|
354
338
|
GenericAllowanceRequest,
|
|
@@ -356,45 +340,33 @@ if TYPE_CHECKING:
|
|
|
356
340
|
GenericAllowanceToken,
|
|
357
341
|
)
|
|
358
342
|
from .generic_ensop import (
|
|
359
|
-
GenericEnsBlock,
|
|
360
|
-
GenericEnsBlockTypedDict,
|
|
361
343
|
GenericEnsChain,
|
|
362
344
|
GenericEnsRequest,
|
|
363
345
|
GenericEnsRequestTypedDict,
|
|
364
346
|
)
|
|
365
347
|
from .generic_portfolioop import (
|
|
366
|
-
GenericPortfolioBlock,
|
|
367
|
-
GenericPortfolioBlockTypedDict,
|
|
368
348
|
GenericPortfolioChain,
|
|
369
349
|
GenericPortfolioRequest,
|
|
370
350
|
GenericPortfolioRequestTypedDict,
|
|
371
351
|
)
|
|
372
352
|
from .generic_supported_tokensop import (
|
|
373
|
-
GenericSupportedTokensBlock,
|
|
374
|
-
GenericSupportedTokensBlockTypedDict,
|
|
375
353
|
GenericSupportedTokensChain,
|
|
376
354
|
GenericSupportedTokensRequest,
|
|
377
355
|
GenericSupportedTokensRequestTypedDict,
|
|
378
356
|
)
|
|
379
357
|
from .generic_visualize_portfolioop import (
|
|
380
|
-
GenericVisualizePortfolioBlock,
|
|
381
|
-
GenericVisualizePortfolioBlockTypedDict,
|
|
382
358
|
GenericVisualizePortfolioChain,
|
|
383
359
|
GenericVisualizePortfolioRequest,
|
|
384
360
|
GenericVisualizePortfolioRequestTypedDict,
|
|
385
361
|
)
|
|
386
362
|
from .image import Image, ImageTypedDict
|
|
387
|
-
from .increaseallowanceanyparams import (
|
|
388
|
-
IncreaseAllowanceAnyParams,
|
|
389
|
-
IncreaseAllowanceAnyParamsAmount,
|
|
390
|
-
IncreaseAllowanceAnyParamsAmountTypedDict,
|
|
391
|
-
IncreaseAllowanceAnyParamsTypedDict,
|
|
392
|
-
)
|
|
393
363
|
from .increaseallowanceparams import (
|
|
394
364
|
IncreaseAllowanceParams,
|
|
395
365
|
IncreaseAllowanceParamsAmount,
|
|
396
366
|
IncreaseAllowanceParamsAmountTypedDict,
|
|
397
367
|
IncreaseAllowanceParamsContractName,
|
|
368
|
+
IncreaseAllowanceParamsToken,
|
|
369
|
+
IncreaseAllowanceParamsTokenTypedDict,
|
|
398
370
|
IncreaseAllowanceParamsTypedDict,
|
|
399
371
|
)
|
|
400
372
|
from .increaseallowancerequest import (
|
|
@@ -402,59 +374,48 @@ if TYPE_CHECKING:
|
|
|
402
374
|
IncreaseAllowanceRequestAmount,
|
|
403
375
|
IncreaseAllowanceRequestAmountTypedDict,
|
|
404
376
|
IncreaseAllowanceRequestContractName,
|
|
377
|
+
IncreaseAllowanceRequestToken,
|
|
378
|
+
IncreaseAllowanceRequestTokenTypedDict,
|
|
405
379
|
IncreaseAllowanceRequestTypedDict,
|
|
406
380
|
)
|
|
407
381
|
from .interestratemode import InterestRateMode
|
|
408
382
|
from .liquidationcall import LiquidationCall, LiquidationCallTypedDict
|
|
409
383
|
from .liquidity import Liquidity, LiquidityTypedDict
|
|
384
|
+
from .lpbalance import LpBalance, LpBalanceTypedDict
|
|
410
385
|
from .market import Market, MarketTypedDict
|
|
411
386
|
from .marketposition import MarketPosition, MarketPositionTypedDict
|
|
412
387
|
from .metadata import Metadata, MetadataTypedDict
|
|
413
388
|
from .morpho_market_positionop import (
|
|
414
|
-
MorphoMarketPositionBlock,
|
|
415
|
-
MorphoMarketPositionBlockTypedDict,
|
|
416
389
|
MorphoMarketPositionChain,
|
|
417
390
|
MorphoMarketPositionRequest,
|
|
418
391
|
MorphoMarketPositionRequestTypedDict,
|
|
419
392
|
)
|
|
420
393
|
from .morpho_marketop import (
|
|
421
|
-
MorphoMarketBlock,
|
|
422
|
-
MorphoMarketBlockTypedDict,
|
|
423
394
|
MorphoMarketChain,
|
|
424
395
|
MorphoMarketRequest,
|
|
425
396
|
MorphoMarketRequestTypedDict,
|
|
426
397
|
)
|
|
427
398
|
from .morpho_marketsop import (
|
|
428
|
-
MorphoMarketsBlock,
|
|
429
|
-
MorphoMarketsBlockTypedDict,
|
|
430
399
|
MorphoMarketsChain,
|
|
431
400
|
MorphoMarketsRequest,
|
|
432
401
|
MorphoMarketsRequestTypedDict,
|
|
433
402
|
)
|
|
434
403
|
from .morpho_user_positionop import (
|
|
435
|
-
MorphoUserPositionBlock,
|
|
436
|
-
MorphoUserPositionBlockTypedDict,
|
|
437
404
|
MorphoUserPositionChain,
|
|
438
405
|
MorphoUserPositionRequest,
|
|
439
406
|
MorphoUserPositionRequestTypedDict,
|
|
440
407
|
)
|
|
441
408
|
from .morpho_vault_positionop import (
|
|
442
|
-
MorphoVaultPositionBlock,
|
|
443
|
-
MorphoVaultPositionBlockTypedDict,
|
|
444
409
|
MorphoVaultPositionChain,
|
|
445
410
|
MorphoVaultPositionRequest,
|
|
446
411
|
MorphoVaultPositionRequestTypedDict,
|
|
447
412
|
)
|
|
448
413
|
from .morpho_vaultop import (
|
|
449
|
-
MorphoVaultBlock,
|
|
450
|
-
MorphoVaultBlockTypedDict,
|
|
451
414
|
MorphoVaultChain,
|
|
452
415
|
MorphoVaultRequest,
|
|
453
416
|
MorphoVaultRequestTypedDict,
|
|
454
417
|
)
|
|
455
418
|
from .morpho_vaultsop import (
|
|
456
|
-
MorphoVaultsBlock,
|
|
457
|
-
MorphoVaultsBlockTypedDict,
|
|
458
419
|
MorphoVaultsChain,
|
|
459
420
|
MorphoVaultsRequest,
|
|
460
421
|
MorphoVaultsRequestTypedDict,
|
|
@@ -569,10 +530,9 @@ if TYPE_CHECKING:
|
|
|
569
530
|
MorphoWithdrawRequestChain,
|
|
570
531
|
MorphoWithdrawRequestTypedDict,
|
|
571
532
|
)
|
|
533
|
+
from .movement10percent import Movement10Percent, Movement10PercentTypedDict
|
|
572
534
|
from .multicallactiontype import MulticallActionType
|
|
573
535
|
from .multicallauthorizationrequest import (
|
|
574
|
-
Block,
|
|
575
|
-
BlockTypedDict,
|
|
576
536
|
MulticallAuthorizationRequest,
|
|
577
537
|
MulticallAuthorizationRequestTypedDict,
|
|
578
538
|
)
|
|
@@ -584,20 +544,27 @@ if TYPE_CHECKING:
|
|
|
584
544
|
MulticallExecuteRequest,
|
|
585
545
|
MulticallExecuteRequestTypedDict,
|
|
586
546
|
)
|
|
547
|
+
from .openposition import OpenPosition, OpenPositionTypedDict
|
|
587
548
|
from .pendle_marketop import (
|
|
588
|
-
PendleMarketBlock,
|
|
589
|
-
PendleMarketBlockTypedDict,
|
|
590
549
|
PendleMarketChain,
|
|
591
550
|
PendleMarketRequest,
|
|
592
551
|
PendleMarketRequestTypedDict,
|
|
593
552
|
)
|
|
553
|
+
from .pendle_marketsop import (
|
|
554
|
+
PendleMarketsChain,
|
|
555
|
+
PendleMarketsRequest,
|
|
556
|
+
PendleMarketsRequestTypedDict,
|
|
557
|
+
)
|
|
594
558
|
from .pendle_positionop import (
|
|
595
|
-
PendlePositionBlock,
|
|
596
|
-
PendlePositionBlockTypedDict,
|
|
597
559
|
PendlePositionChain,
|
|
598
560
|
PendlePositionRequest,
|
|
599
561
|
PendlePositionRequestTypedDict,
|
|
600
562
|
)
|
|
563
|
+
from .pendle_positionsop import (
|
|
564
|
+
PendlePositionsChain,
|
|
565
|
+
PendlePositionsRequest,
|
|
566
|
+
PendlePositionsRequestTypedDict,
|
|
567
|
+
)
|
|
601
568
|
from .pendlegetmarketresponse import (
|
|
602
569
|
PendleGetMarketResponse,
|
|
603
570
|
PendleGetMarketResponseTypedDict,
|
|
@@ -606,7 +573,17 @@ if TYPE_CHECKING:
|
|
|
606
573
|
PendleGetUserPositionResponse,
|
|
607
574
|
PendleGetUserPositionResponseTypedDict,
|
|
608
575
|
)
|
|
576
|
+
from .pendlelistmarketsresponse import (
|
|
577
|
+
PendleListMarketsResponse,
|
|
578
|
+
PendleListMarketsResponseTypedDict,
|
|
579
|
+
)
|
|
580
|
+
from .pendlelistuserpositionsresponse import (
|
|
581
|
+
PendleListUserPositionsResponse,
|
|
582
|
+
PendleListUserPositionsResponseTypedDict,
|
|
583
|
+
)
|
|
584
|
+
from .pendlemarket import PendleMarket, PendleMarketTypedDict
|
|
609
585
|
from .portfolio import Portfolio, PortfolioTypedDict
|
|
586
|
+
from .position import Position, PositionTypedDict
|
|
610
587
|
from .redeemunderlying import RedeemUnderlying, RedeemUnderlyingTypedDict
|
|
611
588
|
from .repay import Repay, RepayTypedDict
|
|
612
589
|
from .reserve import Reserve, ReserveTypedDict
|
|
@@ -619,12 +596,7 @@ if TYPE_CHECKING:
|
|
|
619
596
|
SignedAuthorization,
|
|
620
597
|
SignedAuthorizationTypedDict,
|
|
621
598
|
)
|
|
622
|
-
from .sky_positionop import
|
|
623
|
-
SkyPositionBlock,
|
|
624
|
-
SkyPositionBlockTypedDict,
|
|
625
|
-
SkyPositionRequest,
|
|
626
|
-
SkyPositionRequestTypedDict,
|
|
627
|
-
)
|
|
599
|
+
from .sky_positionop import SkyPositionRequest, SkyPositionRequestTypedDict
|
|
628
600
|
from .skybuyparams import (
|
|
629
601
|
SkyBuyParams,
|
|
630
602
|
SkyBuyParamsAmount,
|
|
@@ -673,17 +645,14 @@ if TYPE_CHECKING:
|
|
|
673
645
|
from .skywithdrawrequest import SkyWithdrawRequest, SkyWithdrawRequestTypedDict
|
|
674
646
|
from .supply import Supply, SupplyTypedDict
|
|
675
647
|
from .swapborrowrate import SwapBorrowRate, SwapBorrowRateTypedDict
|
|
648
|
+
from .syposition import SyPosition, SyPositionTypedDict
|
|
676
649
|
from .token_addressop import (
|
|
677
|
-
TokenAddressBlock,
|
|
678
|
-
TokenAddressBlockTypedDict,
|
|
679
650
|
TokenAddressChain,
|
|
680
651
|
TokenAddressRequest,
|
|
681
652
|
TokenAddressRequestTypedDict,
|
|
682
653
|
TokenAddressToken,
|
|
683
654
|
)
|
|
684
655
|
from .token_balanceop import (
|
|
685
|
-
TokenBalanceBlock,
|
|
686
|
-
TokenBalanceBlockTypedDict,
|
|
687
656
|
TokenBalanceChain,
|
|
688
657
|
TokenBalanceRequest,
|
|
689
658
|
TokenBalanceRequestTypedDict,
|
|
@@ -701,7 +670,6 @@ if TYPE_CHECKING:
|
|
|
701
670
|
TokenAddressResponse,
|
|
702
671
|
TokenAddressResponseTypedDict,
|
|
703
672
|
)
|
|
704
|
-
from .tokenbalance import TokenBalance, TokenBalanceTypedDict
|
|
705
673
|
from .tokenbalanceresponse import (
|
|
706
674
|
TokenBalanceResponse,
|
|
707
675
|
TokenBalanceResponseTypedDict,
|
|
@@ -726,22 +694,16 @@ if TYPE_CHECKING:
|
|
|
726
694
|
)
|
|
727
695
|
from .txresponse import TxResponse, TxResponseTypedDict
|
|
728
696
|
from .uniswap_liquidity_provision_in_rangeop import (
|
|
729
|
-
UniswapLiquidityProvisionInRangeBlock,
|
|
730
|
-
UniswapLiquidityProvisionInRangeBlockTypedDict,
|
|
731
697
|
UniswapLiquidityProvisionInRangeChain,
|
|
732
698
|
UniswapLiquidityProvisionInRangeRequest,
|
|
733
699
|
UniswapLiquidityProvisionInRangeRequestTypedDict,
|
|
734
700
|
)
|
|
735
701
|
from .uniswap_liquidity_provision_positionsop import (
|
|
736
|
-
UniswapLiquidityProvisionPositionsBlock,
|
|
737
|
-
UniswapLiquidityProvisionPositionsBlockTypedDict,
|
|
738
702
|
UniswapLiquidityProvisionPositionsChain,
|
|
739
703
|
UniswapLiquidityProvisionPositionsRequest,
|
|
740
704
|
UniswapLiquidityProvisionPositionsRequestTypedDict,
|
|
741
705
|
)
|
|
742
706
|
from .uniswap_pool_priceop import (
|
|
743
|
-
UniswapPoolPriceBlock,
|
|
744
|
-
UniswapPoolPriceBlockTypedDict,
|
|
745
707
|
UniswapPoolPriceChain,
|
|
746
708
|
UniswapPoolPriceFeeEnum,
|
|
747
709
|
UniswapPoolPriceRequest,
|
|
@@ -752,8 +714,6 @@ if TYPE_CHECKING:
|
|
|
752
714
|
from .uniswap_quote_buy_exactlyop import (
|
|
753
715
|
UniswapQuoteBuyExactlyAmountOut,
|
|
754
716
|
UniswapQuoteBuyExactlyAmountOutTypedDict,
|
|
755
|
-
UniswapQuoteBuyExactlyBlock,
|
|
756
|
-
UniswapQuoteBuyExactlyBlockTypedDict,
|
|
757
717
|
UniswapQuoteBuyExactlyChain,
|
|
758
718
|
UniswapQuoteBuyExactlyFeeEnum,
|
|
759
719
|
UniswapQuoteBuyExactlyRequest,
|
|
@@ -764,8 +724,6 @@ if TYPE_CHECKING:
|
|
|
764
724
|
from .uniswap_quote_sell_exactlyop import (
|
|
765
725
|
UniswapQuoteSellExactlyAmountIn,
|
|
766
726
|
UniswapQuoteSellExactlyAmountInTypedDict,
|
|
767
|
-
UniswapQuoteSellExactlyBlock,
|
|
768
|
-
UniswapQuoteSellExactlyBlockTypedDict,
|
|
769
727
|
UniswapQuoteSellExactlyChain,
|
|
770
728
|
UniswapQuoteSellExactlyFeeEnum,
|
|
771
729
|
UniswapQuoteSellExactlyRequest,
|
|
@@ -931,10 +889,9 @@ if TYPE_CHECKING:
|
|
|
931
889
|
WrapEthRequestAmountTypedDict,
|
|
932
890
|
WrapEthRequestTypedDict,
|
|
933
891
|
)
|
|
892
|
+
from .yieldrange import YieldRange, YieldRangeTypedDict
|
|
934
893
|
|
|
935
894
|
__all__ = [
|
|
936
|
-
"AaveAvgRateBlock",
|
|
937
|
-
"AaveAvgRateBlockTypedDict",
|
|
938
895
|
"AaveAvgRateChain",
|
|
939
896
|
"AaveAvgRateRequest",
|
|
940
897
|
"AaveAvgRateRequestTypedDict",
|
|
@@ -949,15 +906,11 @@ __all__ = [
|
|
|
949
906
|
"AaveBorrowRequestAmount",
|
|
950
907
|
"AaveBorrowRequestAmountTypedDict",
|
|
951
908
|
"AaveBorrowRequestTypedDict",
|
|
952
|
-
"AaveHistoricalTransactionsBlock",
|
|
953
|
-
"AaveHistoricalTransactionsBlockTypedDict",
|
|
954
909
|
"AaveHistoricalTransactionsChain",
|
|
955
910
|
"AaveHistoricalTransactionsRequest",
|
|
956
911
|
"AaveHistoricalTransactionsRequestTypedDict",
|
|
957
912
|
"AaveHistoricalTransactionsResponse",
|
|
958
913
|
"AaveHistoricalTransactionsResponseTypedDict",
|
|
959
|
-
"AaveLiquidityChangeBlock",
|
|
960
|
-
"AaveLiquidityChangeBlockTypedDict",
|
|
961
914
|
"AaveLiquidityChangeChain",
|
|
962
915
|
"AaveLiquidityChangeRequest",
|
|
963
916
|
"AaveLiquidityChangeRequestTypedDict",
|
|
@@ -966,8 +919,6 @@ __all__ = [
|
|
|
966
919
|
"AaveLiquidityChangeToken",
|
|
967
920
|
"AaveLoopRequest",
|
|
968
921
|
"AaveLoopRequestTypedDict",
|
|
969
|
-
"AaveRateBlock",
|
|
970
|
-
"AaveRateBlockTypedDict",
|
|
971
922
|
"AaveRateChain",
|
|
972
923
|
"AaveRateRequest",
|
|
973
924
|
"AaveRateRequestTypedDict",
|
|
@@ -982,8 +933,6 @@ __all__ = [
|
|
|
982
933
|
"AaveRepayRequestAmount",
|
|
983
934
|
"AaveRepayRequestAmountTypedDict",
|
|
984
935
|
"AaveRepayRequestTypedDict",
|
|
985
|
-
"AaveReserveOverviewBlock",
|
|
986
|
-
"AaveReserveOverviewBlockTypedDict",
|
|
987
936
|
"AaveReserveOverviewChain",
|
|
988
937
|
"AaveReserveOverviewRequest",
|
|
989
938
|
"AaveReserveOverviewRequestTypedDict",
|
|
@@ -992,8 +941,6 @@ __all__ = [
|
|
|
992
941
|
"AaveReserveOverviewToken",
|
|
993
942
|
"AaveSTDRateResponse",
|
|
994
943
|
"AaveSTDRateResponseTypedDict",
|
|
995
|
-
"AaveStdRateBlock",
|
|
996
|
-
"AaveStdRateBlockTypedDict",
|
|
997
944
|
"AaveStdRateChain",
|
|
998
945
|
"AaveStdRateRequest",
|
|
999
946
|
"AaveStdRateRequestTypedDict",
|
|
@@ -1006,24 +953,18 @@ __all__ = [
|
|
|
1006
953
|
"AaveSupplyRequestAmount",
|
|
1007
954
|
"AaveSupplyRequestAmountTypedDict",
|
|
1008
955
|
"AaveSupplyRequestTypedDict",
|
|
1009
|
-
"AaveTokenPriceBlock",
|
|
1010
|
-
"AaveTokenPriceBlockTypedDict",
|
|
1011
956
|
"AaveTokenPriceChain",
|
|
1012
957
|
"AaveTokenPriceRequest",
|
|
1013
958
|
"AaveTokenPriceRequestTypedDict",
|
|
1014
959
|
"AaveTokenPriceResponse",
|
|
1015
960
|
"AaveTokenPriceResponseTypedDict",
|
|
1016
961
|
"AaveTokenPriceToken",
|
|
1017
|
-
"AaveUserPositionPerTokenBlock",
|
|
1018
|
-
"AaveUserPositionPerTokenBlockTypedDict",
|
|
1019
962
|
"AaveUserPositionPerTokenChain",
|
|
1020
963
|
"AaveUserPositionPerTokenRequest",
|
|
1021
964
|
"AaveUserPositionPerTokenRequestTypedDict",
|
|
1022
965
|
"AaveUserPositionPerTokenResponse",
|
|
1023
966
|
"AaveUserPositionPerTokenResponseTypedDict",
|
|
1024
967
|
"AaveUserPositionPerTokenToken",
|
|
1025
|
-
"AaveUserPositionSummaryBlock",
|
|
1026
|
-
"AaveUserPositionSummaryBlockTypedDict",
|
|
1027
968
|
"AaveUserPositionSummaryChain",
|
|
1028
969
|
"AaveUserPositionSummaryRequest",
|
|
1029
970
|
"AaveUserPositionSummaryRequestTypedDict",
|
|
@@ -1073,8 +1014,6 @@ __all__ = [
|
|
|
1073
1014
|
"AerodromeSlipstreamIncreaseLiquidityProvisionRequestAmount1Min",
|
|
1074
1015
|
"AerodromeSlipstreamIncreaseLiquidityProvisionRequestAmount1MinTypedDict",
|
|
1075
1016
|
"AerodromeSlipstreamIncreaseLiquidityProvisionRequestTypedDict",
|
|
1076
|
-
"AerodromeSlipstreamLiquidityProvisionPositionsBlock",
|
|
1077
|
-
"AerodromeSlipstreamLiquidityProvisionPositionsBlockTypedDict",
|
|
1078
1017
|
"AerodromeSlipstreamLiquidityProvisionPositionsChain",
|
|
1079
1018
|
"AerodromeSlipstreamLiquidityProvisionPositionsRequest",
|
|
1080
1019
|
"AerodromeSlipstreamLiquidityProvisionPositionsRequestTypedDict",
|
|
@@ -1098,8 +1037,6 @@ __all__ = [
|
|
|
1098
1037
|
"AerodromeSlipstreamMintLiquidityProvisionRequestAmount1Min",
|
|
1099
1038
|
"AerodromeSlipstreamMintLiquidityProvisionRequestAmount1MinTypedDict",
|
|
1100
1039
|
"AerodromeSlipstreamMintLiquidityProvisionRequestTypedDict",
|
|
1101
|
-
"AerodromeSlipstreamPoolPriceBlock",
|
|
1102
|
-
"AerodromeSlipstreamPoolPriceBlockTypedDict",
|
|
1103
1040
|
"AerodromeSlipstreamPoolPriceChain",
|
|
1104
1041
|
"AerodromeSlipstreamPoolPriceRequest",
|
|
1105
1042
|
"AerodromeSlipstreamPoolPriceRequestTypedDict",
|
|
@@ -1133,8 +1070,6 @@ __all__ = [
|
|
|
1133
1070
|
"BatchedUserOperationsRequestTypedDict",
|
|
1134
1071
|
"BatchedUserOperationsResponse",
|
|
1135
1072
|
"BatchedUserOperationsResponseTypedDict",
|
|
1136
|
-
"Block",
|
|
1137
|
-
"BlockTypedDict",
|
|
1138
1073
|
"Body",
|
|
1139
1074
|
"BodyTypedDict",
|
|
1140
1075
|
"Borrow",
|
|
@@ -1145,6 +1080,8 @@ __all__ = [
|
|
|
1145
1080
|
"ChainInfoTypedDict",
|
|
1146
1081
|
"CollateralAmount",
|
|
1147
1082
|
"CollateralAmountTypedDict",
|
|
1083
|
+
"CompassAPIBackendModelsGenericReadResponsePortfolioTokenBalance",
|
|
1084
|
+
"CompassAPIBackendModelsGenericReadResponsePortfolioTokenBalanceTypedDict",
|
|
1148
1085
|
"CompassAPIBackendModelsMorphoReadResponseCheckUserPositionApyData",
|
|
1149
1086
|
"CompassAPIBackendModelsMorphoReadResponseCheckUserPositionApyDataTypedDict",
|
|
1150
1087
|
"CompassAPIBackendModelsMorphoReadResponseCheckUserPositionAsset",
|
|
@@ -1171,56 +1108,49 @@ __all__ = [
|
|
|
1171
1108
|
"CompassAPIBackendModelsMorphoReadResponseGetVaultsAssetTypedDict",
|
|
1172
1109
|
"CompassAPIBackendModelsMorphoReadResponseGetVaultsVaultState",
|
|
1173
1110
|
"CompassAPIBackendModelsMorphoReadResponseGetVaultsVaultStateTypedDict",
|
|
1174
|
-
"
|
|
1111
|
+
"CompassAPIBackendModelsPendleReadResponsePositionsTokenBalance",
|
|
1112
|
+
"CompassAPIBackendModelsPendleReadResponsePositionsTokenBalanceTypedDict",
|
|
1175
1113
|
"Curator",
|
|
1176
1114
|
"CuratorTypedDict",
|
|
1115
|
+
"Details",
|
|
1116
|
+
"DetailsTypedDict",
|
|
1177
1117
|
"EnsNameInfoResponse",
|
|
1178
1118
|
"EnsNameInfoResponseTypedDict",
|
|
1179
1119
|
"Erc20Data",
|
|
1180
1120
|
"Erc20DataTypedDict",
|
|
1181
1121
|
"FeeEnum",
|
|
1182
|
-
"GenericAllowanceBlock",
|
|
1183
|
-
"GenericAllowanceBlockTypedDict",
|
|
1184
1122
|
"GenericAllowanceChain",
|
|
1185
1123
|
"GenericAllowanceContractName",
|
|
1186
1124
|
"GenericAllowanceRequest",
|
|
1187
1125
|
"GenericAllowanceRequestTypedDict",
|
|
1188
1126
|
"GenericAllowanceToken",
|
|
1189
|
-
"GenericEnsBlock",
|
|
1190
|
-
"GenericEnsBlockTypedDict",
|
|
1191
1127
|
"GenericEnsChain",
|
|
1192
1128
|
"GenericEnsRequest",
|
|
1193
1129
|
"GenericEnsRequestTypedDict",
|
|
1194
|
-
"GenericPortfolioBlock",
|
|
1195
|
-
"GenericPortfolioBlockTypedDict",
|
|
1196
1130
|
"GenericPortfolioChain",
|
|
1197
1131
|
"GenericPortfolioRequest",
|
|
1198
1132
|
"GenericPortfolioRequestTypedDict",
|
|
1199
|
-
"GenericSupportedTokensBlock",
|
|
1200
|
-
"GenericSupportedTokensBlockTypedDict",
|
|
1201
1133
|
"GenericSupportedTokensChain",
|
|
1202
1134
|
"GenericSupportedTokensRequest",
|
|
1203
1135
|
"GenericSupportedTokensRequestTypedDict",
|
|
1204
|
-
"GenericVisualizePortfolioBlock",
|
|
1205
|
-
"GenericVisualizePortfolioBlockTypedDict",
|
|
1206
1136
|
"GenericVisualizePortfolioChain",
|
|
1207
1137
|
"GenericVisualizePortfolioRequest",
|
|
1208
1138
|
"GenericVisualizePortfolioRequestTypedDict",
|
|
1209
1139
|
"Image",
|
|
1210
1140
|
"ImageTypedDict",
|
|
1211
|
-
"IncreaseAllowanceAnyParams",
|
|
1212
|
-
"IncreaseAllowanceAnyParamsAmount",
|
|
1213
|
-
"IncreaseAllowanceAnyParamsAmountTypedDict",
|
|
1214
|
-
"IncreaseAllowanceAnyParamsTypedDict",
|
|
1215
1141
|
"IncreaseAllowanceParams",
|
|
1216
1142
|
"IncreaseAllowanceParamsAmount",
|
|
1217
1143
|
"IncreaseAllowanceParamsAmountTypedDict",
|
|
1218
1144
|
"IncreaseAllowanceParamsContractName",
|
|
1145
|
+
"IncreaseAllowanceParamsToken",
|
|
1146
|
+
"IncreaseAllowanceParamsTokenTypedDict",
|
|
1219
1147
|
"IncreaseAllowanceParamsTypedDict",
|
|
1220
1148
|
"IncreaseAllowanceRequest",
|
|
1221
1149
|
"IncreaseAllowanceRequestAmount",
|
|
1222
1150
|
"IncreaseAllowanceRequestAmountTypedDict",
|
|
1223
1151
|
"IncreaseAllowanceRequestContractName",
|
|
1152
|
+
"IncreaseAllowanceRequestToken",
|
|
1153
|
+
"IncreaseAllowanceRequestTokenTypedDict",
|
|
1224
1154
|
"IncreaseAllowanceRequestTypedDict",
|
|
1225
1155
|
"InterestRateMode",
|
|
1226
1156
|
"LiquidationCall",
|
|
@@ -1229,6 +1159,8 @@ __all__ = [
|
|
|
1229
1159
|
"LiquidityTypedDict",
|
|
1230
1160
|
"Loc",
|
|
1231
1161
|
"LocTypedDict",
|
|
1162
|
+
"LpBalance",
|
|
1163
|
+
"LpBalanceTypedDict",
|
|
1232
1164
|
"Market",
|
|
1233
1165
|
"MarketPosition",
|
|
1234
1166
|
"MarketPositionTypedDict",
|
|
@@ -1268,19 +1200,13 @@ __all__ = [
|
|
|
1268
1200
|
"MorphoGetVaultsResponse",
|
|
1269
1201
|
"MorphoGetVaultsResponseTypedDict",
|
|
1270
1202
|
"MorphoMarket",
|
|
1271
|
-
"MorphoMarketBlock",
|
|
1272
|
-
"MorphoMarketBlockTypedDict",
|
|
1273
1203
|
"MorphoMarketChain",
|
|
1274
|
-
"MorphoMarketPositionBlock",
|
|
1275
|
-
"MorphoMarketPositionBlockTypedDict",
|
|
1276
1204
|
"MorphoMarketPositionChain",
|
|
1277
1205
|
"MorphoMarketPositionRequest",
|
|
1278
1206
|
"MorphoMarketPositionRequestTypedDict",
|
|
1279
1207
|
"MorphoMarketRequest",
|
|
1280
1208
|
"MorphoMarketRequestTypedDict",
|
|
1281
1209
|
"MorphoMarketTypedDict",
|
|
1282
|
-
"MorphoMarketsBlock",
|
|
1283
|
-
"MorphoMarketsBlockTypedDict",
|
|
1284
1210
|
"MorphoMarketsChain",
|
|
1285
1211
|
"MorphoMarketsRequest",
|
|
1286
1212
|
"MorphoMarketsRequestTypedDict",
|
|
@@ -1307,25 +1233,17 @@ __all__ = [
|
|
|
1307
1233
|
"MorphoSupplyCollateralRequestAmountTypedDict",
|
|
1308
1234
|
"MorphoSupplyCollateralRequestChain",
|
|
1309
1235
|
"MorphoSupplyCollateralRequestTypedDict",
|
|
1310
|
-
"MorphoUserPositionBlock",
|
|
1311
|
-
"MorphoUserPositionBlockTypedDict",
|
|
1312
1236
|
"MorphoUserPositionChain",
|
|
1313
1237
|
"MorphoUserPositionRequest",
|
|
1314
1238
|
"MorphoUserPositionRequestTypedDict",
|
|
1315
1239
|
"MorphoVault",
|
|
1316
|
-
"MorphoVaultBlock",
|
|
1317
|
-
"MorphoVaultBlockTypedDict",
|
|
1318
1240
|
"MorphoVaultChain",
|
|
1319
|
-
"MorphoVaultPositionBlock",
|
|
1320
|
-
"MorphoVaultPositionBlockTypedDict",
|
|
1321
1241
|
"MorphoVaultPositionChain",
|
|
1322
1242
|
"MorphoVaultPositionRequest",
|
|
1323
1243
|
"MorphoVaultPositionRequestTypedDict",
|
|
1324
1244
|
"MorphoVaultRequest",
|
|
1325
1245
|
"MorphoVaultRequestTypedDict",
|
|
1326
1246
|
"MorphoVaultTypedDict",
|
|
1327
|
-
"MorphoVaultsBlock",
|
|
1328
|
-
"MorphoVaultsBlockTypedDict",
|
|
1329
1247
|
"MorphoVaultsChain",
|
|
1330
1248
|
"MorphoVaultsRequest",
|
|
1331
1249
|
"MorphoVaultsRequestTypedDict",
|
|
@@ -1343,6 +1261,8 @@ __all__ = [
|
|
|
1343
1261
|
"MorphoWithdrawRequest",
|
|
1344
1262
|
"MorphoWithdrawRequestChain",
|
|
1345
1263
|
"MorphoWithdrawRequestTypedDict",
|
|
1264
|
+
"Movement10Percent",
|
|
1265
|
+
"Movement10PercentTypedDict",
|
|
1346
1266
|
"MulticallActionType",
|
|
1347
1267
|
"MulticallAuthorizationRequest",
|
|
1348
1268
|
"MulticallAuthorizationRequestTypedDict",
|
|
@@ -1350,22 +1270,34 @@ __all__ = [
|
|
|
1350
1270
|
"MulticallAuthorizationResponseTypedDict",
|
|
1351
1271
|
"MulticallExecuteRequest",
|
|
1352
1272
|
"MulticallExecuteRequestTypedDict",
|
|
1273
|
+
"OpenPosition",
|
|
1274
|
+
"OpenPositionTypedDict",
|
|
1353
1275
|
"PendleGetMarketResponse",
|
|
1354
1276
|
"PendleGetMarketResponseTypedDict",
|
|
1355
1277
|
"PendleGetUserPositionResponse",
|
|
1356
1278
|
"PendleGetUserPositionResponseTypedDict",
|
|
1357
|
-
"
|
|
1358
|
-
"
|
|
1279
|
+
"PendleListMarketsResponse",
|
|
1280
|
+
"PendleListMarketsResponseTypedDict",
|
|
1281
|
+
"PendleListUserPositionsResponse",
|
|
1282
|
+
"PendleListUserPositionsResponseTypedDict",
|
|
1283
|
+
"PendleMarket",
|
|
1359
1284
|
"PendleMarketChain",
|
|
1360
1285
|
"PendleMarketRequest",
|
|
1361
1286
|
"PendleMarketRequestTypedDict",
|
|
1362
|
-
"
|
|
1363
|
-
"
|
|
1287
|
+
"PendleMarketTypedDict",
|
|
1288
|
+
"PendleMarketsChain",
|
|
1289
|
+
"PendleMarketsRequest",
|
|
1290
|
+
"PendleMarketsRequestTypedDict",
|
|
1364
1291
|
"PendlePositionChain",
|
|
1365
1292
|
"PendlePositionRequest",
|
|
1366
1293
|
"PendlePositionRequestTypedDict",
|
|
1294
|
+
"PendlePositionsChain",
|
|
1295
|
+
"PendlePositionsRequest",
|
|
1296
|
+
"PendlePositionsRequestTypedDict",
|
|
1367
1297
|
"Portfolio",
|
|
1368
1298
|
"PortfolioTypedDict",
|
|
1299
|
+
"Position",
|
|
1300
|
+
"PositionTypedDict",
|
|
1369
1301
|
"R",
|
|
1370
1302
|
"RTypedDict",
|
|
1371
1303
|
"RedeemUnderlying",
|
|
@@ -1400,8 +1332,6 @@ __all__ = [
|
|
|
1400
1332
|
"SkyDepositRequestAmount",
|
|
1401
1333
|
"SkyDepositRequestAmountTypedDict",
|
|
1402
1334
|
"SkyDepositRequestTypedDict",
|
|
1403
|
-
"SkyPositionBlock",
|
|
1404
|
-
"SkyPositionBlockTypedDict",
|
|
1405
1335
|
"SkyPositionRequest",
|
|
1406
1336
|
"SkyPositionRequestTypedDict",
|
|
1407
1337
|
"SkySellParams",
|
|
@@ -1422,17 +1352,14 @@ __all__ = [
|
|
|
1422
1352
|
"SupplyTypedDict",
|
|
1423
1353
|
"SwapBorrowRate",
|
|
1424
1354
|
"SwapBorrowRateTypedDict",
|
|
1425
|
-
"
|
|
1426
|
-
"
|
|
1355
|
+
"SyPosition",
|
|
1356
|
+
"SyPositionTypedDict",
|
|
1427
1357
|
"TokenAddressChain",
|
|
1428
1358
|
"TokenAddressRequest",
|
|
1429
1359
|
"TokenAddressRequestTypedDict",
|
|
1430
1360
|
"TokenAddressResponse",
|
|
1431
1361
|
"TokenAddressResponseTypedDict",
|
|
1432
1362
|
"TokenAddressToken",
|
|
1433
|
-
"TokenBalance",
|
|
1434
|
-
"TokenBalanceBlock",
|
|
1435
|
-
"TokenBalanceBlockTypedDict",
|
|
1436
1363
|
"TokenBalanceChain",
|
|
1437
1364
|
"TokenBalanceRequest",
|
|
1438
1365
|
"TokenBalanceRequestTypedDict",
|
|
@@ -1440,7 +1367,6 @@ __all__ = [
|
|
|
1440
1367
|
"TokenBalanceResponseTypedDict",
|
|
1441
1368
|
"TokenBalanceToken",
|
|
1442
1369
|
"TokenBalanceTokenTypedDict",
|
|
1443
|
-
"TokenBalanceTypedDict",
|
|
1444
1370
|
"TokenEnum",
|
|
1445
1371
|
"TokenInfo",
|
|
1446
1372
|
"TokenInfoTypedDict",
|
|
@@ -1500,13 +1426,9 @@ __all__ = [
|
|
|
1500
1426
|
"UniswapIncreaseLiquidityProvisionRequestTypedDict",
|
|
1501
1427
|
"UniswapLPPositionsInfoResponse",
|
|
1502
1428
|
"UniswapLPPositionsInfoResponseTypedDict",
|
|
1503
|
-
"UniswapLiquidityProvisionInRangeBlock",
|
|
1504
|
-
"UniswapLiquidityProvisionInRangeBlockTypedDict",
|
|
1505
1429
|
"UniswapLiquidityProvisionInRangeChain",
|
|
1506
1430
|
"UniswapLiquidityProvisionInRangeRequest",
|
|
1507
1431
|
"UniswapLiquidityProvisionInRangeRequestTypedDict",
|
|
1508
|
-
"UniswapLiquidityProvisionPositionsBlock",
|
|
1509
|
-
"UniswapLiquidityProvisionPositionsBlockTypedDict",
|
|
1510
1432
|
"UniswapLiquidityProvisionPositionsChain",
|
|
1511
1433
|
"UniswapLiquidityProvisionPositionsRequest",
|
|
1512
1434
|
"UniswapLiquidityProvisionPositionsRequestTypedDict",
|
|
@@ -1530,8 +1452,6 @@ __all__ = [
|
|
|
1530
1452
|
"UniswapMintLiquidityProvisionRequestAmount1Min",
|
|
1531
1453
|
"UniswapMintLiquidityProvisionRequestAmount1MinTypedDict",
|
|
1532
1454
|
"UniswapMintLiquidityProvisionRequestTypedDict",
|
|
1533
|
-
"UniswapPoolPriceBlock",
|
|
1534
|
-
"UniswapPoolPriceBlockTypedDict",
|
|
1535
1455
|
"UniswapPoolPriceChain",
|
|
1536
1456
|
"UniswapPoolPriceFeeEnum",
|
|
1537
1457
|
"UniswapPoolPriceRequest",
|
|
@@ -1544,8 +1464,6 @@ __all__ = [
|
|
|
1544
1464
|
"UniswapPositionsSolidityResponseTypedDict",
|
|
1545
1465
|
"UniswapQuoteBuyExactlyAmountOut",
|
|
1546
1466
|
"UniswapQuoteBuyExactlyAmountOutTypedDict",
|
|
1547
|
-
"UniswapQuoteBuyExactlyBlock",
|
|
1548
|
-
"UniswapQuoteBuyExactlyBlockTypedDict",
|
|
1549
1467
|
"UniswapQuoteBuyExactlyChain",
|
|
1550
1468
|
"UniswapQuoteBuyExactlyFeeEnum",
|
|
1551
1469
|
"UniswapQuoteBuyExactlyRequest",
|
|
@@ -1554,8 +1472,6 @@ __all__ = [
|
|
|
1554
1472
|
"UniswapQuoteBuyExactlyTokenOutToken",
|
|
1555
1473
|
"UniswapQuoteSellExactlyAmountIn",
|
|
1556
1474
|
"UniswapQuoteSellExactlyAmountInTypedDict",
|
|
1557
|
-
"UniswapQuoteSellExactlyBlock",
|
|
1558
|
-
"UniswapQuoteSellExactlyBlockTypedDict",
|
|
1559
1475
|
"UniswapQuoteSellExactlyChain",
|
|
1560
1476
|
"UniswapQuoteSellExactlyFeeEnum",
|
|
1561
1477
|
"UniswapQuoteSellExactlyRequest",
|
|
@@ -1616,58 +1532,42 @@ __all__ = [
|
|
|
1616
1532
|
"WrapEthRequestAmount",
|
|
1617
1533
|
"WrapEthRequestAmountTypedDict",
|
|
1618
1534
|
"WrapEthRequestTypedDict",
|
|
1535
|
+
"YieldRange",
|
|
1536
|
+
"YieldRangeTypedDict",
|
|
1619
1537
|
]
|
|
1620
1538
|
|
|
1621
1539
|
_dynamic_imports: dict[str, str] = {
|
|
1622
|
-
"AaveAvgRateBlock": ".aave_avg_rateop",
|
|
1623
|
-
"AaveAvgRateBlockTypedDict": ".aave_avg_rateop",
|
|
1624
1540
|
"AaveAvgRateChain": ".aave_avg_rateop",
|
|
1625
1541
|
"AaveAvgRateRequest": ".aave_avg_rateop",
|
|
1626
1542
|
"AaveAvgRateRequestTypedDict": ".aave_avg_rateop",
|
|
1627
1543
|
"AaveAvgRateToken": ".aave_avg_rateop",
|
|
1628
|
-
"AaveHistoricalTransactionsBlock": ".aave_historical_transactionsop",
|
|
1629
|
-
"AaveHistoricalTransactionsBlockTypedDict": ".aave_historical_transactionsop",
|
|
1630
1544
|
"AaveHistoricalTransactionsChain": ".aave_historical_transactionsop",
|
|
1631
1545
|
"AaveHistoricalTransactionsRequest": ".aave_historical_transactionsop",
|
|
1632
1546
|
"AaveHistoricalTransactionsRequestTypedDict": ".aave_historical_transactionsop",
|
|
1633
|
-
"AaveLiquidityChangeBlock": ".aave_liquidity_changeop",
|
|
1634
|
-
"AaveLiquidityChangeBlockTypedDict": ".aave_liquidity_changeop",
|
|
1635
1547
|
"AaveLiquidityChangeChain": ".aave_liquidity_changeop",
|
|
1636
1548
|
"AaveLiquidityChangeRequest": ".aave_liquidity_changeop",
|
|
1637
1549
|
"AaveLiquidityChangeRequestTypedDict": ".aave_liquidity_changeop",
|
|
1638
1550
|
"AaveLiquidityChangeToken": ".aave_liquidity_changeop",
|
|
1639
|
-
"AaveRateBlock": ".aave_rateop",
|
|
1640
|
-
"AaveRateBlockTypedDict": ".aave_rateop",
|
|
1641
1551
|
"AaveRateChain": ".aave_rateop",
|
|
1642
1552
|
"AaveRateRequest": ".aave_rateop",
|
|
1643
1553
|
"AaveRateRequestTypedDict": ".aave_rateop",
|
|
1644
1554
|
"AaveRateToken": ".aave_rateop",
|
|
1645
|
-
"AaveReserveOverviewBlock": ".aave_reserve_overviewop",
|
|
1646
|
-
"AaveReserveOverviewBlockTypedDict": ".aave_reserve_overviewop",
|
|
1647
1555
|
"AaveReserveOverviewChain": ".aave_reserve_overviewop",
|
|
1648
1556
|
"AaveReserveOverviewRequest": ".aave_reserve_overviewop",
|
|
1649
1557
|
"AaveReserveOverviewRequestTypedDict": ".aave_reserve_overviewop",
|
|
1650
1558
|
"AaveReserveOverviewToken": ".aave_reserve_overviewop",
|
|
1651
|
-
"AaveStdRateBlock": ".aave_std_rateop",
|
|
1652
|
-
"AaveStdRateBlockTypedDict": ".aave_std_rateop",
|
|
1653
1559
|
"AaveStdRateChain": ".aave_std_rateop",
|
|
1654
1560
|
"AaveStdRateRequest": ".aave_std_rateop",
|
|
1655
1561
|
"AaveStdRateRequestTypedDict": ".aave_std_rateop",
|
|
1656
1562
|
"AaveStdRateToken": ".aave_std_rateop",
|
|
1657
|
-
"AaveTokenPriceBlock": ".aave_token_priceop",
|
|
1658
|
-
"AaveTokenPriceBlockTypedDict": ".aave_token_priceop",
|
|
1659
1563
|
"AaveTokenPriceChain": ".aave_token_priceop",
|
|
1660
1564
|
"AaveTokenPriceRequest": ".aave_token_priceop",
|
|
1661
1565
|
"AaveTokenPriceRequestTypedDict": ".aave_token_priceop",
|
|
1662
1566
|
"AaveTokenPriceToken": ".aave_token_priceop",
|
|
1663
|
-
"AaveUserPositionPerTokenBlock": ".aave_user_position_per_tokenop",
|
|
1664
|
-
"AaveUserPositionPerTokenBlockTypedDict": ".aave_user_position_per_tokenop",
|
|
1665
1567
|
"AaveUserPositionPerTokenChain": ".aave_user_position_per_tokenop",
|
|
1666
1568
|
"AaveUserPositionPerTokenRequest": ".aave_user_position_per_tokenop",
|
|
1667
1569
|
"AaveUserPositionPerTokenRequestTypedDict": ".aave_user_position_per_tokenop",
|
|
1668
1570
|
"AaveUserPositionPerTokenToken": ".aave_user_position_per_tokenop",
|
|
1669
|
-
"AaveUserPositionSummaryBlock": ".aave_user_position_summaryop",
|
|
1670
|
-
"AaveUserPositionSummaryBlockTypedDict": ".aave_user_position_summaryop",
|
|
1671
1571
|
"AaveUserPositionSummaryChain": ".aave_user_position_summaryop",
|
|
1672
1572
|
"AaveUserPositionSummaryRequest": ".aave_user_position_summaryop",
|
|
1673
1573
|
"AaveUserPositionSummaryRequestTypedDict": ".aave_user_position_summaryop",
|
|
@@ -1727,13 +1627,9 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1727
1627
|
"AaveWithdrawRequestAmount": ".aavewithdrawrequest",
|
|
1728
1628
|
"AaveWithdrawRequestAmountTypedDict": ".aavewithdrawrequest",
|
|
1729
1629
|
"AaveWithdrawRequestTypedDict": ".aavewithdrawrequest",
|
|
1730
|
-
"AerodromeSlipstreamLiquidityProvisionPositionsBlock": ".aerodrome_slipstream_liquidity_provision_positionsop",
|
|
1731
|
-
"AerodromeSlipstreamLiquidityProvisionPositionsBlockTypedDict": ".aerodrome_slipstream_liquidity_provision_positionsop",
|
|
1732
1630
|
"AerodromeSlipstreamLiquidityProvisionPositionsChain": ".aerodrome_slipstream_liquidity_provision_positionsop",
|
|
1733
1631
|
"AerodromeSlipstreamLiquidityProvisionPositionsRequest": ".aerodrome_slipstream_liquidity_provision_positionsop",
|
|
1734
1632
|
"AerodromeSlipstreamLiquidityProvisionPositionsRequestTypedDict": ".aerodrome_slipstream_liquidity_provision_positionsop",
|
|
1735
|
-
"AerodromeSlipstreamPoolPriceBlock": ".aerodrome_slipstream_pool_priceop",
|
|
1736
|
-
"AerodromeSlipstreamPoolPriceBlockTypedDict": ".aerodrome_slipstream_pool_priceop",
|
|
1737
1633
|
"AerodromeSlipstreamPoolPriceChain": ".aerodrome_slipstream_pool_priceop",
|
|
1738
1634
|
"AerodromeSlipstreamPoolPriceRequest": ".aerodrome_slipstream_pool_priceop",
|
|
1739
1635
|
"AerodromeSlipstreamPoolPriceRequestTypedDict": ".aerodrome_slipstream_pool_priceop",
|
|
@@ -1829,6 +1725,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1829
1725
|
"Chain": ".chain",
|
|
1830
1726
|
"ChainInfo": ".chaininfo",
|
|
1831
1727
|
"ChainInfoTypedDict": ".chaininfo",
|
|
1728
|
+
"CompassAPIBackendModelsGenericReadResponsePortfolioTokenBalance": ".compass_api_backend_models_generic_read_response_portfolio_tokenbalance",
|
|
1729
|
+
"CompassAPIBackendModelsGenericReadResponsePortfolioTokenBalanceTypedDict": ".compass_api_backend_models_generic_read_response_portfolio_tokenbalance",
|
|
1832
1730
|
"CompassAPIBackendModelsMorphoReadResponseCheckUserPositionApyData": ".compass_api_backend_models_morpho_read_response_check_user_position_apydata",
|
|
1833
1731
|
"CompassAPIBackendModelsMorphoReadResponseCheckUserPositionApyDataTypedDict": ".compass_api_backend_models_morpho_read_response_check_user_position_apydata",
|
|
1834
1732
|
"CompassAPIBackendModelsMorphoReadResponseCheckUserPositionAsset": ".compass_api_backend_models_morpho_read_response_check_user_position_asset",
|
|
@@ -1855,100 +1753,81 @@ _dynamic_imports: dict[str, str] = {
|
|
|
1855
1753
|
"CompassAPIBackendModelsMorphoReadResponseGetVaultsAssetTypedDict": ".compass_api_backend_models_morpho_read_response_get_vaults_asset",
|
|
1856
1754
|
"CompassAPIBackendModelsMorphoReadResponseGetVaultsVaultState": ".compass_api_backend_models_morpho_read_response_get_vaults_vaultstate",
|
|
1857
1755
|
"CompassAPIBackendModelsMorphoReadResponseGetVaultsVaultStateTypedDict": ".compass_api_backend_models_morpho_read_response_get_vaults_vaultstate",
|
|
1858
|
-
"
|
|
1756
|
+
"CompassAPIBackendModelsPendleReadResponsePositionsTokenBalance": ".compass_api_backend_models_pendle_read_response_positions_tokenbalance",
|
|
1757
|
+
"CompassAPIBackendModelsPendleReadResponsePositionsTokenBalanceTypedDict": ".compass_api_backend_models_pendle_read_response_positions_tokenbalance",
|
|
1859
1758
|
"Curator": ".curator",
|
|
1860
1759
|
"CuratorTypedDict": ".curator",
|
|
1760
|
+
"Details": ".details",
|
|
1761
|
+
"DetailsTypedDict": ".details",
|
|
1861
1762
|
"EnsNameInfoResponse": ".ensnameinforesponse",
|
|
1862
1763
|
"EnsNameInfoResponseTypedDict": ".ensnameinforesponse",
|
|
1863
1764
|
"Erc20Data": ".erc20data",
|
|
1864
1765
|
"Erc20DataTypedDict": ".erc20data",
|
|
1865
1766
|
"FeeEnum": ".feeenum",
|
|
1866
|
-
"GenericAllowanceBlock": ".generic_allowanceop",
|
|
1867
|
-
"GenericAllowanceBlockTypedDict": ".generic_allowanceop",
|
|
1868
1767
|
"GenericAllowanceChain": ".generic_allowanceop",
|
|
1869
1768
|
"GenericAllowanceContractName": ".generic_allowanceop",
|
|
1870
1769
|
"GenericAllowanceRequest": ".generic_allowanceop",
|
|
1871
1770
|
"GenericAllowanceRequestTypedDict": ".generic_allowanceop",
|
|
1872
1771
|
"GenericAllowanceToken": ".generic_allowanceop",
|
|
1873
|
-
"GenericEnsBlock": ".generic_ensop",
|
|
1874
|
-
"GenericEnsBlockTypedDict": ".generic_ensop",
|
|
1875
1772
|
"GenericEnsChain": ".generic_ensop",
|
|
1876
1773
|
"GenericEnsRequest": ".generic_ensop",
|
|
1877
1774
|
"GenericEnsRequestTypedDict": ".generic_ensop",
|
|
1878
|
-
"GenericPortfolioBlock": ".generic_portfolioop",
|
|
1879
|
-
"GenericPortfolioBlockTypedDict": ".generic_portfolioop",
|
|
1880
1775
|
"GenericPortfolioChain": ".generic_portfolioop",
|
|
1881
1776
|
"GenericPortfolioRequest": ".generic_portfolioop",
|
|
1882
1777
|
"GenericPortfolioRequestTypedDict": ".generic_portfolioop",
|
|
1883
|
-
"GenericSupportedTokensBlock": ".generic_supported_tokensop",
|
|
1884
|
-
"GenericSupportedTokensBlockTypedDict": ".generic_supported_tokensop",
|
|
1885
1778
|
"GenericSupportedTokensChain": ".generic_supported_tokensop",
|
|
1886
1779
|
"GenericSupportedTokensRequest": ".generic_supported_tokensop",
|
|
1887
1780
|
"GenericSupportedTokensRequestTypedDict": ".generic_supported_tokensop",
|
|
1888
|
-
"GenericVisualizePortfolioBlock": ".generic_visualize_portfolioop",
|
|
1889
|
-
"GenericVisualizePortfolioBlockTypedDict": ".generic_visualize_portfolioop",
|
|
1890
1781
|
"GenericVisualizePortfolioChain": ".generic_visualize_portfolioop",
|
|
1891
1782
|
"GenericVisualizePortfolioRequest": ".generic_visualize_portfolioop",
|
|
1892
1783
|
"GenericVisualizePortfolioRequestTypedDict": ".generic_visualize_portfolioop",
|
|
1893
1784
|
"Image": ".image",
|
|
1894
1785
|
"ImageTypedDict": ".image",
|
|
1895
|
-
"IncreaseAllowanceAnyParams": ".increaseallowanceanyparams",
|
|
1896
|
-
"IncreaseAllowanceAnyParamsAmount": ".increaseallowanceanyparams",
|
|
1897
|
-
"IncreaseAllowanceAnyParamsAmountTypedDict": ".increaseallowanceanyparams",
|
|
1898
|
-
"IncreaseAllowanceAnyParamsTypedDict": ".increaseallowanceanyparams",
|
|
1899
1786
|
"IncreaseAllowanceParams": ".increaseallowanceparams",
|
|
1900
1787
|
"IncreaseAllowanceParamsAmount": ".increaseallowanceparams",
|
|
1901
1788
|
"IncreaseAllowanceParamsAmountTypedDict": ".increaseallowanceparams",
|
|
1902
1789
|
"IncreaseAllowanceParamsContractName": ".increaseallowanceparams",
|
|
1790
|
+
"IncreaseAllowanceParamsToken": ".increaseallowanceparams",
|
|
1791
|
+
"IncreaseAllowanceParamsTokenTypedDict": ".increaseallowanceparams",
|
|
1903
1792
|
"IncreaseAllowanceParamsTypedDict": ".increaseallowanceparams",
|
|
1904
1793
|
"IncreaseAllowanceRequest": ".increaseallowancerequest",
|
|
1905
1794
|
"IncreaseAllowanceRequestAmount": ".increaseallowancerequest",
|
|
1906
1795
|
"IncreaseAllowanceRequestAmountTypedDict": ".increaseallowancerequest",
|
|
1907
1796
|
"IncreaseAllowanceRequestContractName": ".increaseallowancerequest",
|
|
1797
|
+
"IncreaseAllowanceRequestToken": ".increaseallowancerequest",
|
|
1798
|
+
"IncreaseAllowanceRequestTokenTypedDict": ".increaseallowancerequest",
|
|
1908
1799
|
"IncreaseAllowanceRequestTypedDict": ".increaseallowancerequest",
|
|
1909
1800
|
"InterestRateMode": ".interestratemode",
|
|
1910
1801
|
"LiquidationCall": ".liquidationcall",
|
|
1911
1802
|
"LiquidationCallTypedDict": ".liquidationcall",
|
|
1912
1803
|
"Liquidity": ".liquidity",
|
|
1913
1804
|
"LiquidityTypedDict": ".liquidity",
|
|
1805
|
+
"LpBalance": ".lpbalance",
|
|
1806
|
+
"LpBalanceTypedDict": ".lpbalance",
|
|
1914
1807
|
"Market": ".market",
|
|
1915
1808
|
"MarketTypedDict": ".market",
|
|
1916
1809
|
"MarketPosition": ".marketposition",
|
|
1917
1810
|
"MarketPositionTypedDict": ".marketposition",
|
|
1918
1811
|
"Metadata": ".metadata",
|
|
1919
1812
|
"MetadataTypedDict": ".metadata",
|
|
1920
|
-
"MorphoMarketPositionBlock": ".morpho_market_positionop",
|
|
1921
|
-
"MorphoMarketPositionBlockTypedDict": ".morpho_market_positionop",
|
|
1922
1813
|
"MorphoMarketPositionChain": ".morpho_market_positionop",
|
|
1923
1814
|
"MorphoMarketPositionRequest": ".morpho_market_positionop",
|
|
1924
1815
|
"MorphoMarketPositionRequestTypedDict": ".morpho_market_positionop",
|
|
1925
|
-
"MorphoMarketBlock": ".morpho_marketop",
|
|
1926
|
-
"MorphoMarketBlockTypedDict": ".morpho_marketop",
|
|
1927
1816
|
"MorphoMarketChain": ".morpho_marketop",
|
|
1928
1817
|
"MorphoMarketRequest": ".morpho_marketop",
|
|
1929
1818
|
"MorphoMarketRequestTypedDict": ".morpho_marketop",
|
|
1930
|
-
"MorphoMarketsBlock": ".morpho_marketsop",
|
|
1931
|
-
"MorphoMarketsBlockTypedDict": ".morpho_marketsop",
|
|
1932
1819
|
"MorphoMarketsChain": ".morpho_marketsop",
|
|
1933
1820
|
"MorphoMarketsRequest": ".morpho_marketsop",
|
|
1934
1821
|
"MorphoMarketsRequestTypedDict": ".morpho_marketsop",
|
|
1935
|
-
"MorphoUserPositionBlock": ".morpho_user_positionop",
|
|
1936
|
-
"MorphoUserPositionBlockTypedDict": ".morpho_user_positionop",
|
|
1937
1822
|
"MorphoUserPositionChain": ".morpho_user_positionop",
|
|
1938
1823
|
"MorphoUserPositionRequest": ".morpho_user_positionop",
|
|
1939
1824
|
"MorphoUserPositionRequestTypedDict": ".morpho_user_positionop",
|
|
1940
|
-
"MorphoVaultPositionBlock": ".morpho_vault_positionop",
|
|
1941
|
-
"MorphoVaultPositionBlockTypedDict": ".morpho_vault_positionop",
|
|
1942
1825
|
"MorphoVaultPositionChain": ".morpho_vault_positionop",
|
|
1943
1826
|
"MorphoVaultPositionRequest": ".morpho_vault_positionop",
|
|
1944
1827
|
"MorphoVaultPositionRequestTypedDict": ".morpho_vault_positionop",
|
|
1945
|
-
"MorphoVaultBlock": ".morpho_vaultop",
|
|
1946
|
-
"MorphoVaultBlockTypedDict": ".morpho_vaultop",
|
|
1947
1828
|
"MorphoVaultChain": ".morpho_vaultop",
|
|
1948
1829
|
"MorphoVaultRequest": ".morpho_vaultop",
|
|
1949
1830
|
"MorphoVaultRequestTypedDict": ".morpho_vaultop",
|
|
1950
|
-
"MorphoVaultsBlock": ".morpho_vaultsop",
|
|
1951
|
-
"MorphoVaultsBlockTypedDict": ".morpho_vaultsop",
|
|
1952
1831
|
"MorphoVaultsChain": ".morpho_vaultsop",
|
|
1953
1832
|
"MorphoVaultsRequest": ".morpho_vaultsop",
|
|
1954
1833
|
"MorphoVaultsRequestTypedDict": ".morpho_vaultsop",
|
|
@@ -2025,31 +1904,43 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2025
1904
|
"MorphoWithdrawRequest": ".morphowithdrawrequest",
|
|
2026
1905
|
"MorphoWithdrawRequestChain": ".morphowithdrawrequest",
|
|
2027
1906
|
"MorphoWithdrawRequestTypedDict": ".morphowithdrawrequest",
|
|
1907
|
+
"Movement10Percent": ".movement10percent",
|
|
1908
|
+
"Movement10PercentTypedDict": ".movement10percent",
|
|
2028
1909
|
"MulticallActionType": ".multicallactiontype",
|
|
2029
|
-
"Block": ".multicallauthorizationrequest",
|
|
2030
|
-
"BlockTypedDict": ".multicallauthorizationrequest",
|
|
2031
1910
|
"MulticallAuthorizationRequest": ".multicallauthorizationrequest",
|
|
2032
1911
|
"MulticallAuthorizationRequestTypedDict": ".multicallauthorizationrequest",
|
|
2033
1912
|
"MulticallAuthorizationResponse": ".multicallauthorizationresponse",
|
|
2034
1913
|
"MulticallAuthorizationResponseTypedDict": ".multicallauthorizationresponse",
|
|
2035
1914
|
"MulticallExecuteRequest": ".multicallexecuterequest",
|
|
2036
1915
|
"MulticallExecuteRequestTypedDict": ".multicallexecuterequest",
|
|
2037
|
-
"
|
|
2038
|
-
"
|
|
1916
|
+
"OpenPosition": ".openposition",
|
|
1917
|
+
"OpenPositionTypedDict": ".openposition",
|
|
2039
1918
|
"PendleMarketChain": ".pendle_marketop",
|
|
2040
1919
|
"PendleMarketRequest": ".pendle_marketop",
|
|
2041
1920
|
"PendleMarketRequestTypedDict": ".pendle_marketop",
|
|
2042
|
-
"
|
|
2043
|
-
"
|
|
1921
|
+
"PendleMarketsChain": ".pendle_marketsop",
|
|
1922
|
+
"PendleMarketsRequest": ".pendle_marketsop",
|
|
1923
|
+
"PendleMarketsRequestTypedDict": ".pendle_marketsop",
|
|
2044
1924
|
"PendlePositionChain": ".pendle_positionop",
|
|
2045
1925
|
"PendlePositionRequest": ".pendle_positionop",
|
|
2046
1926
|
"PendlePositionRequestTypedDict": ".pendle_positionop",
|
|
1927
|
+
"PendlePositionsChain": ".pendle_positionsop",
|
|
1928
|
+
"PendlePositionsRequest": ".pendle_positionsop",
|
|
1929
|
+
"PendlePositionsRequestTypedDict": ".pendle_positionsop",
|
|
2047
1930
|
"PendleGetMarketResponse": ".pendlegetmarketresponse",
|
|
2048
1931
|
"PendleGetMarketResponseTypedDict": ".pendlegetmarketresponse",
|
|
2049
1932
|
"PendleGetUserPositionResponse": ".pendlegetuserpositionresponse",
|
|
2050
1933
|
"PendleGetUserPositionResponseTypedDict": ".pendlegetuserpositionresponse",
|
|
1934
|
+
"PendleListMarketsResponse": ".pendlelistmarketsresponse",
|
|
1935
|
+
"PendleListMarketsResponseTypedDict": ".pendlelistmarketsresponse",
|
|
1936
|
+
"PendleListUserPositionsResponse": ".pendlelistuserpositionsresponse",
|
|
1937
|
+
"PendleListUserPositionsResponseTypedDict": ".pendlelistuserpositionsresponse",
|
|
1938
|
+
"PendleMarket": ".pendlemarket",
|
|
1939
|
+
"PendleMarketTypedDict": ".pendlemarket",
|
|
2051
1940
|
"Portfolio": ".portfolio",
|
|
2052
1941
|
"PortfolioTypedDict": ".portfolio",
|
|
1942
|
+
"Position": ".position",
|
|
1943
|
+
"PositionTypedDict": ".position",
|
|
2053
1944
|
"RedeemUnderlying": ".redeemunderlying",
|
|
2054
1945
|
"RedeemUnderlyingTypedDict": ".redeemunderlying",
|
|
2055
1946
|
"Repay": ".repay",
|
|
@@ -2064,8 +1955,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2064
1955
|
"STypedDict": ".signedauthorization",
|
|
2065
1956
|
"SignedAuthorization": ".signedauthorization",
|
|
2066
1957
|
"SignedAuthorizationTypedDict": ".signedauthorization",
|
|
2067
|
-
"SkyPositionBlock": ".sky_positionop",
|
|
2068
|
-
"SkyPositionBlockTypedDict": ".sky_positionop",
|
|
2069
1958
|
"SkyPositionRequest": ".sky_positionop",
|
|
2070
1959
|
"SkyPositionRequestTypedDict": ".sky_positionop",
|
|
2071
1960
|
"SkyBuyParams": ".skybuyparams",
|
|
@@ -2106,14 +1995,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2106
1995
|
"SupplyTypedDict": ".supply",
|
|
2107
1996
|
"SwapBorrowRate": ".swapborrowrate",
|
|
2108
1997
|
"SwapBorrowRateTypedDict": ".swapborrowrate",
|
|
2109
|
-
"
|
|
2110
|
-
"
|
|
1998
|
+
"SyPosition": ".syposition",
|
|
1999
|
+
"SyPositionTypedDict": ".syposition",
|
|
2111
2000
|
"TokenAddressChain": ".token_addressop",
|
|
2112
2001
|
"TokenAddressRequest": ".token_addressop",
|
|
2113
2002
|
"TokenAddressRequestTypedDict": ".token_addressop",
|
|
2114
2003
|
"TokenAddressToken": ".token_addressop",
|
|
2115
|
-
"TokenBalanceBlock": ".token_balanceop",
|
|
2116
|
-
"TokenBalanceBlockTypedDict": ".token_balanceop",
|
|
2117
2004
|
"TokenBalanceChain": ".token_balanceop",
|
|
2118
2005
|
"TokenBalanceRequest": ".token_balanceop",
|
|
2119
2006
|
"TokenBalanceRequestTypedDict": ".token_balanceop",
|
|
@@ -2126,8 +2013,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2126
2013
|
"TokenPriceToken": ".token_priceop",
|
|
2127
2014
|
"TokenAddressResponse": ".tokenaddressresponse",
|
|
2128
2015
|
"TokenAddressResponseTypedDict": ".tokenaddressresponse",
|
|
2129
|
-
"TokenBalance": ".tokenbalance",
|
|
2130
|
-
"TokenBalanceTypedDict": ".tokenbalance",
|
|
2131
2016
|
"TokenBalanceResponse": ".tokenbalanceresponse",
|
|
2132
2017
|
"TokenBalanceResponseTypedDict": ".tokenbalanceresponse",
|
|
2133
2018
|
"TokenSymbol": ".tokenbalanceresponse",
|
|
@@ -2148,18 +2033,12 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2148
2033
|
"TokenTransferRequestTypedDict": ".tokentransferrequest",
|
|
2149
2034
|
"TxResponse": ".txresponse",
|
|
2150
2035
|
"TxResponseTypedDict": ".txresponse",
|
|
2151
|
-
"UniswapLiquidityProvisionInRangeBlock": ".uniswap_liquidity_provision_in_rangeop",
|
|
2152
|
-
"UniswapLiquidityProvisionInRangeBlockTypedDict": ".uniswap_liquidity_provision_in_rangeop",
|
|
2153
2036
|
"UniswapLiquidityProvisionInRangeChain": ".uniswap_liquidity_provision_in_rangeop",
|
|
2154
2037
|
"UniswapLiquidityProvisionInRangeRequest": ".uniswap_liquidity_provision_in_rangeop",
|
|
2155
2038
|
"UniswapLiquidityProvisionInRangeRequestTypedDict": ".uniswap_liquidity_provision_in_rangeop",
|
|
2156
|
-
"UniswapLiquidityProvisionPositionsBlock": ".uniswap_liquidity_provision_positionsop",
|
|
2157
|
-
"UniswapLiquidityProvisionPositionsBlockTypedDict": ".uniswap_liquidity_provision_positionsop",
|
|
2158
2039
|
"UniswapLiquidityProvisionPositionsChain": ".uniswap_liquidity_provision_positionsop",
|
|
2159
2040
|
"UniswapLiquidityProvisionPositionsRequest": ".uniswap_liquidity_provision_positionsop",
|
|
2160
2041
|
"UniswapLiquidityProvisionPositionsRequestTypedDict": ".uniswap_liquidity_provision_positionsop",
|
|
2161
|
-
"UniswapPoolPriceBlock": ".uniswap_pool_priceop",
|
|
2162
|
-
"UniswapPoolPriceBlockTypedDict": ".uniswap_pool_priceop",
|
|
2163
2042
|
"UniswapPoolPriceChain": ".uniswap_pool_priceop",
|
|
2164
2043
|
"UniswapPoolPriceFeeEnum": ".uniswap_pool_priceop",
|
|
2165
2044
|
"UniswapPoolPriceRequest": ".uniswap_pool_priceop",
|
|
@@ -2168,8 +2047,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2168
2047
|
"UniswapPoolPriceTokenOutToken": ".uniswap_pool_priceop",
|
|
2169
2048
|
"UniswapQuoteBuyExactlyAmountOut": ".uniswap_quote_buy_exactlyop",
|
|
2170
2049
|
"UniswapQuoteBuyExactlyAmountOutTypedDict": ".uniswap_quote_buy_exactlyop",
|
|
2171
|
-
"UniswapQuoteBuyExactlyBlock": ".uniswap_quote_buy_exactlyop",
|
|
2172
|
-
"UniswapQuoteBuyExactlyBlockTypedDict": ".uniswap_quote_buy_exactlyop",
|
|
2173
2050
|
"UniswapQuoteBuyExactlyChain": ".uniswap_quote_buy_exactlyop",
|
|
2174
2051
|
"UniswapQuoteBuyExactlyFeeEnum": ".uniswap_quote_buy_exactlyop",
|
|
2175
2052
|
"UniswapQuoteBuyExactlyRequest": ".uniswap_quote_buy_exactlyop",
|
|
@@ -2178,8 +2055,6 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2178
2055
|
"UniswapQuoteBuyExactlyTokenOutToken": ".uniswap_quote_buy_exactlyop",
|
|
2179
2056
|
"UniswapQuoteSellExactlyAmountIn": ".uniswap_quote_sell_exactlyop",
|
|
2180
2057
|
"UniswapQuoteSellExactlyAmountInTypedDict": ".uniswap_quote_sell_exactlyop",
|
|
2181
|
-
"UniswapQuoteSellExactlyBlock": ".uniswap_quote_sell_exactlyop",
|
|
2182
|
-
"UniswapQuoteSellExactlyBlockTypedDict": ".uniswap_quote_sell_exactlyop",
|
|
2183
2058
|
"UniswapQuoteSellExactlyChain": ".uniswap_quote_sell_exactlyop",
|
|
2184
2059
|
"UniswapQuoteSellExactlyFeeEnum": ".uniswap_quote_sell_exactlyop",
|
|
2185
2060
|
"UniswapQuoteSellExactlyRequest": ".uniswap_quote_sell_exactlyop",
|
|
@@ -2302,6 +2177,8 @@ _dynamic_imports: dict[str, str] = {
|
|
|
2302
2177
|
"WrapEthRequestAmount": ".wrapethrequest",
|
|
2303
2178
|
"WrapEthRequestAmountTypedDict": ".wrapethrequest",
|
|
2304
2179
|
"WrapEthRequestTypedDict": ".wrapethrequest",
|
|
2180
|
+
"YieldRange": ".yieldrange",
|
|
2181
|
+
"YieldRangeTypedDict": ".yieldrange",
|
|
2305
2182
|
}
|
|
2306
2183
|
|
|
2307
2184
|
|