@aave/graphql 1.0.1 → 1.1.0
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.
- package/dist/index.cjs +242 -213
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +484 -6
- package/dist/index.d.ts +484 -6
- package/dist/index.js +242 -213
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +1 -1
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +1 -1
- package/dist/schema.js.map +1 -1
- package/dist/testing.d.ts +10 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as type_fest from 'type-fest';
|
|
2
2
|
import { Tagged } from 'type-fest';
|
|
3
3
|
import * as gql_tada from 'gql.tada';
|
|
4
|
-
import { DocumentDecoration, initGraphQLTada, TadaDocumentNode, FragmentOf } from 'gql.tada';
|
|
4
|
+
import { DocumentDecoration, initGraphQLTada, TadaDocumentNode, FragmentOf, ResultOf } from 'gql.tada';
|
|
5
5
|
export { FragmentOf, ResultOf, VariablesOf } from 'gql.tada';
|
|
6
6
|
import * as _aave_types from '@aave/types';
|
|
7
7
|
import { EvmAddress, ChainId, BigDecimal, BlockchainData, Cursor, JsonObject, Signature, TxHash, Void, AnySelectionSet, TypedSelectionSet, AnyVariables, ExtendWithOpaqueType } from '@aave/types';
|
|
@@ -103,6 +103,19 @@ declare enum Currency {
|
|
|
103
103
|
Eur = "EUR",
|
|
104
104
|
Gbp = "GBP"
|
|
105
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* The filter for reserve holders.
|
|
108
|
+
*/
|
|
109
|
+
declare enum ReserveHoldersFilter {
|
|
110
|
+
/**
|
|
111
|
+
* Filter by wallets that have supplied to this reserve.
|
|
112
|
+
*/
|
|
113
|
+
Supplied = "SUPPLIED",
|
|
114
|
+
/**
|
|
115
|
+
* Filter by wallets that have borrowed from this reserve.
|
|
116
|
+
*/
|
|
117
|
+
Borrowed = "BORROWED"
|
|
118
|
+
}
|
|
106
119
|
/**
|
|
107
120
|
* The filter for reserves request.
|
|
108
121
|
*/
|
|
@@ -397,6 +410,8 @@ type introspection_types = {
|
|
|
397
410
|
'OrderDirection': { name: 'OrderDirection'; enumValues: 'ASC' | 'DESC'; };
|
|
398
411
|
'PageSize': { name: 'PageSize'; enumValues: 'TEN' | 'FIFTY'; };
|
|
399
412
|
'PaginatedActivitiesResult': { kind: 'OBJECT'; name: 'PaginatedActivitiesResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ActivityItem'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
413
|
+
'PaginatedReserveHoldersRequest': { kind: 'INPUT_OBJECT'; name: 'PaginatedReserveHoldersRequest'; isOneOf: false; inputFields: [{ name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ReserveRequestQuery'; ofType: null; }; }; defaultValue: null }, { name: 'filter'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ReserveHoldersFilter'; ofType: null; }; }; defaultValue: "SUPPLIED" }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'ReserveHoldersOrderBy'; ofType: null; }; }; defaultValue: "{amount: DESC}" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "TEN" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; };
|
|
414
|
+
'PaginatedReserveHoldersResult': { kind: 'OBJECT'; name: 'PaginatedReserveHoldersResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveHolder'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
400
415
|
'PaginatedResultInfo': { kind: 'OBJECT'; name: 'PaginatedResultInfo'; fields: { 'next': { name: 'next'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; } }; 'prev': { name: 'prev'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; } }; }; };
|
|
401
416
|
'PaginatedSpokePositionManagerResult': { kind: 'OBJECT'; name: 'PaginatedSpokePositionManagerResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SpokePositionManager'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
402
417
|
'PaginatedSpokeUserPositionManagerResult': { kind: 'OBJECT'; name: 'PaginatedSpokeUserPositionManagerResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SpokeUserPositionManager'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
@@ -413,11 +428,12 @@ type introspection_types = {
|
|
|
413
428
|
'PointsProgram': { kind: 'OBJECT'; name: 'PointsProgram'; fields: { 'externalUrl': { name: 'externalUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'iconUrl': { name: 'iconUrl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'RewardId'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
414
429
|
'PositionAmount': { kind: 'OBJECT'; name: 'PositionAmount'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveInfo'; ofType: null; }; } }; }; };
|
|
415
430
|
'PositionSwapAdapterContractApproval': { kind: 'OBJECT'; name: 'PositionSwapAdapterContractApproval'; fields: { 'bySignature': { name: 'bySignature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapTypedData'; ofType: null; }; } }; }; };
|
|
416
|
-
'PositionSwapApproval': { kind: 'UNION'; name: 'PositionSwapApproval'; fields: {}; possibleTypes: 'PositionSwapAdapterContractApproval' | 'PositionSwapPositionManagerApproval'; };
|
|
431
|
+
'PositionSwapApproval': { kind: 'UNION'; name: 'PositionSwapApproval'; fields: {}; possibleTypes: 'PositionSwapAdapterContractApproval' | 'PositionSwapPositionManagerApproval' | 'PositionSwapSetCollateralApproval'; };
|
|
417
432
|
'PositionSwapByIntentApprovalsRequired': { kind: 'OBJECT'; name: 'PositionSwapByIntentApprovalsRequired'; fields: { 'approvals': { name: 'approvals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PositionSwapApproval'; ofType: null; }; }; }; } }; 'quote': { name: 'quote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapQuote'; ofType: null; }; } }; }; };
|
|
418
433
|
'PositionSwapPositionManagerApproval': { kind: 'OBJECT'; name: 'PositionSwapPositionManagerApproval'; fields: { 'bySignature': { name: 'bySignature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapTypedData'; ofType: null; }; } }; 'byTransaction': { name: 'byTransaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; }; };
|
|
434
|
+
'PositionSwapSetCollateralApproval': { kind: 'OBJECT'; name: 'PositionSwapSetCollateralApproval'; fields: { 'bySignature': { name: 'bySignature'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapTypedData'; ofType: null; }; } }; }; };
|
|
419
435
|
'PreContractActionRequired': { kind: 'OBJECT'; name: 'PreContractActionRequired'; fields: { 'originalTransaction': { name: 'originalTransaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; }; };
|
|
420
|
-
'PreparePositionSwapRequest': { kind: 'INPUT_OBJECT'; name: 'PreparePositionSwapRequest'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'adapterContractSignature'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'positionManagerSignature'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }]; };
|
|
436
|
+
'PreparePositionSwapRequest': { kind: 'INPUT_OBJECT'; name: 'PreparePositionSwapRequest'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'adapterContractSignature'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'positionManagerSignature'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'setCollateralSignature'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }]; };
|
|
421
437
|
'PreparePositionSwapResult': { kind: 'UNION'; name: 'PreparePositionSwapResult'; fields: {}; possibleTypes: 'InsufficientBalanceError' | 'PrepareSwapOrder'; };
|
|
422
438
|
'PrepareSwapCancelRequest': { kind: 'INPUT_OBJECT'; name: 'PrepareSwapCancelRequest'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapId'; ofType: null; }; }; defaultValue: null }]; };
|
|
423
439
|
'PrepareSwapCancelResult': { kind: 'OBJECT'; name: 'PrepareSwapCancelResult'; fields: { 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapTypedData'; ofType: null; }; } }; }; };
|
|
@@ -436,7 +452,7 @@ type introspection_types = {
|
|
|
436
452
|
'PreviewUserPosition': { kind: 'OBJECT'; name: 'PreviewUserPosition'; fields: { 'healthFactor': { name: 'healthFactor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'HealthFactorResult'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserPositionId'; ofType: null; }; } }; 'maxBorrowingPower': { name: 'maxBorrowingPower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmountVariation'; ofType: null; }; } }; 'netApy': { name: 'netApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumberVariation'; ofType: null; }; } }; 'netBalance': { name: 'netBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmountVariation'; ofType: null; }; } }; 'netCollateral': { name: 'netCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmountVariation'; ofType: null; }; } }; 'otherConditions': { name: 'otherConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UserPositionConditionVariation'; ofType: null; }; }; }; } }; 'projectedEarnings': { name: 'projectedEarnings'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmountVariation'; ofType: null; }; } }; 'remainingBorrowingPower': { name: 'remainingBorrowingPower'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmountVariation'; ofType: null; }; } }; 'reserveRates': { name: 'reserveRates'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PreviewReserveRates'; ofType: null; }; } }; 'rewards': { name: 'rewards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PreviewRewardOutcome'; ofType: null; }; } }; 'riskPremium': { name: 'riskPremium'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumberVariation'; ofType: null; }; } }; }; };
|
|
437
453
|
'ProtocolHistoryRequest': { kind: 'INPUT_OBJECT'; name: 'ProtocolHistoryRequest'; isOneOf: false; inputFields: [{ name: 'currency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'Currency'; ofType: null; }; }; defaultValue: "USD" }, { name: 'window'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TimeWindow'; ofType: null; }; }; defaultValue: "LAST_DAY" }]; };
|
|
438
454
|
'ProtocolHistorySample': { kind: 'OBJECT'; name: 'ProtocolHistorySample'; fields: { 'borrows': { name: 'borrows'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmount'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'deposits': { name: 'deposits'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmount'; ofType: null; }; } }; }; };
|
|
439
|
-
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'activities': { name: 'activities'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedActivitiesResult'; ofType: null; }; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'assetBorrowHistory': { name: 'assetBorrowHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetBorrowSample'; ofType: null; }; }; }; } }; 'assetPriceHistory': { name: 'assetPriceHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetPriceSample'; ofType: null; }; }; }; } }; 'assetSupplyHistory': { name: 'assetSupplyHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetSupplySample'; ofType: null; }; }; }; } }; 'borrow': { name: 'borrow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'borrowApyHistory': { name: 'borrowApyHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ApySample'; ofType: null; }; }; }; } }; 'borrowSwapQuote': { name: 'borrowSwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BorrowSwapQuoteResult'; ofType: null; }; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'Chain'; ofType: null; } }; 'chains': { name: 'chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Chain'; ofType: null; }; }; }; } }; 'claimRewards': { name: 'claimRewards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'exchangeRate': { name: 'exchangeRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmount'; ofType: null; }; } }; 'hasProcessedKnownTransaction': { name: 'hasProcessedKnownTransaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'health': { name: 'health'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'hub': { name: 'hub'; type: { kind: 'OBJECT'; name: 'Hub'; ofType: null; } }; 'hubAssetInterestRateModel': { name: 'hubAssetInterestRateModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubAssetInterestRateModelResult'; ofType: null; }; } }; 'hubAssets': { name: 'hubAssets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubAsset'; ofType: null; }; }; }; } }; 'hubSummaryHistory': { name: 'hubSummaryHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubSummarySample'; ofType: null; }; }; }; } }; 'hubs': { name: 'hubs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Hub'; ofType: null; }; }; }; } }; 'liquidatePosition': { name: 'liquidatePosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LiquidatePositionExecutionPlan'; ofType: null; }; } }; 'preparePositionSwap': { name: 'preparePositionSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PreparePositionSwapResult'; ofType: null; }; } }; 'prepareSwapCancel': { name: 'prepareSwapCancel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PrepareSwapCancelResult'; ofType: null; }; } }; 'prepareTokenSwap': { name: 'prepareTokenSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PrepareTokenSwapResult'; ofType: null; }; } }; 'preview': { name: 'preview'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PreviewUserPosition'; ofType: null; }; } }; 'protocolHistory': { name: 'protocolHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProtocolHistorySample'; ofType: null; }; }; }; } }; 'renounceSpokeUserPositionManager': { name: 'renounceSpokeUserPositionManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'repay': { name: 'repay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'repayWithSupplyQuote': { name: 'repayWithSupplyQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RepayWithSupplyQuoteResult'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; } }; 'reserves': { name: 'reserves'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; }; }; }; } }; 'setSpokeUserPositionManager': { name: 'setSpokeUserPositionManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'setUserSuppliesAsCollateral': { name: 'setUserSuppliesAsCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'spoke': { name: 'spoke'; type: { kind: 'OBJECT'; name: 'Spoke'; ofType: null; } }; 'spokePositionManagers': { name: 'spokePositionManagers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedSpokePositionManagerResult'; ofType: null; }; } }; 'spokeUserPositionManagers': { name: 'spokeUserPositionManagers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedSpokeUserPositionManagerResult'; ofType: null; }; } }; 'spokes': { name: 'spokes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Spoke'; ofType: null; }; }; }; } }; 'stableVault': { name: 'stableVault'; type: { kind: 'OBJECT'; name: 'StableVault'; ofType: null; } }; 'stableVaultAssignRate': { name: 'stableVaultAssignRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'stableVaultClaimStatus': { name: 'stableVaultClaimStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StableVaultClaimStatus'; ofType: null; }; } }; 'stableVaultClaimSurplus': { name: 'stableVaultClaimSurplus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'stableVaultDeposit': { name: 'stableVaultDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'StableVaultDepositExecutionPlan'; ofType: null; }; } }; 'stableVaultMovements': { name: 'stableVaultMovements'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedStableVaultMovementsResult'; ofType: null; }; } }; 'stableVaultRateUsers': { name: 'stableVaultRateUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedStableVaultRateUsersResult'; ofType: null; }; } }; 'stableVaultUnassignRate': { name: 'stableVaultUnassignRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'stableVaultUserPositions': { name: 'stableVaultUserPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StableVaultUserPosition'; ofType: null; }; }; }; } }; 'stableVaultWithdraw': { name: 'stableVaultWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'StableVaultWithdrawExecutionPlan'; ofType: null; }; } }; 'stableVaults': { name: 'stableVaults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StableVault'; ofType: null; }; }; }; } }; 'supply': { name: 'supply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'supplyApyHistory': { name: 'supplyApyHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ApySample'; ofType: null; }; }; }; } }; 'supplySwapQuote': { name: 'supplySwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SupplySwapQuoteResult'; ofType: null; }; } }; 'swapStatus': { name: 'swapStatus'; type: { kind: 'UNION'; name: 'SwapStatus'; ofType: null; } }; 'swappableTokens': { name: 'swappableTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'Token'; ofType: null; }; }; }; } }; 'tokenSwapQuote': { name: 'tokenSwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TokenSwapQuoteResult'; ofType: null; }; } }; 'updateUserPositionConditions': { name: 'updateUserPositionConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'userBalances': { name: 'userBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserBalance'; ofType: null; }; }; }; } }; 'userBorrows': { name: 'userBorrows'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserBorrowItem'; ofType: null; }; }; }; } }; 'userClaimableRewards': { name: 'userClaimableRewards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UserClaimableReward'; ofType: null; }; }; }; } }; 'userPosition': { name: 'userPosition'; type: { kind: 'OBJECT'; name: 'UserPosition'; ofType: null; } }; 'userPositions': { name: 'userPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserPosition'; ofType: null; }; }; }; } }; 'userRiskPremiumBreakdown': { name: 'userRiskPremiumBreakdown'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserRiskPremiumBreakdownItem'; ofType: null; }; }; }; } }; 'userSummary': { name: 'userSummary'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserSummary'; ofType: null; }; } }; 'userSummaryHistory': { name: 'userSummaryHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserSummaryHistoryItem'; ofType: null; }; }; }; } }; 'userSupplies': { name: 'userSupplies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserSupplyItem'; ofType: null; }; }; }; } }; 'userSwaps': { name: 'userSwaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedUserSwapsResult'; ofType: null; }; } }; 'withdraw': { name: 'withdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'withdrawSwapQuote': { name: 'withdrawSwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'WithdrawSwapQuoteResult'; ofType: null; }; } }; }; };
|
|
455
|
+
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'activities': { name: 'activities'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedActivitiesResult'; ofType: null; }; } }; 'asset': { name: 'asset'; type: { kind: 'OBJECT'; name: 'Asset'; ofType: null; } }; 'assetBorrowHistory': { name: 'assetBorrowHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetBorrowSample'; ofType: null; }; }; }; } }; 'assetPriceHistory': { name: 'assetPriceHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetPriceSample'; ofType: null; }; }; }; } }; 'assetSupplyHistory': { name: 'assetSupplyHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetSupplySample'; ofType: null; }; }; }; } }; 'borrow': { name: 'borrow'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'borrowApyHistory': { name: 'borrowApyHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ApySample'; ofType: null; }; }; }; } }; 'borrowSwapQuote': { name: 'borrowSwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'BorrowSwapQuoteResult'; ofType: null; }; } }; 'chain': { name: 'chain'; type: { kind: 'OBJECT'; name: 'Chain'; ofType: null; } }; 'chains': { name: 'chains'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Chain'; ofType: null; }; }; }; } }; 'claimRewards': { name: 'claimRewards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'exchangeRate': { name: 'exchangeRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ExchangeAmount'; ofType: null; }; } }; 'hasProcessedKnownTransaction': { name: 'hasProcessedKnownTransaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'health': { name: 'health'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'hub': { name: 'hub'; type: { kind: 'OBJECT'; name: 'Hub'; ofType: null; } }; 'hubAssetInterestRateModel': { name: 'hubAssetInterestRateModel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubAssetInterestRateModelResult'; ofType: null; }; } }; 'hubAssets': { name: 'hubAssets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubAsset'; ofType: null; }; }; }; } }; 'hubSummaryHistory': { name: 'hubSummaryHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubSummarySample'; ofType: null; }; }; }; } }; 'hubs': { name: 'hubs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Hub'; ofType: null; }; }; }; } }; 'liquidatePosition': { name: 'liquidatePosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'LiquidatePositionExecutionPlan'; ofType: null; }; } }; 'preparePositionSwap': { name: 'preparePositionSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PreparePositionSwapResult'; ofType: null; }; } }; 'prepareSwapCancel': { name: 'prepareSwapCancel'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PrepareSwapCancelResult'; ofType: null; }; } }; 'prepareTokenSwap': { name: 'prepareTokenSwap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'PrepareTokenSwapResult'; ofType: null; }; } }; 'preview': { name: 'preview'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PreviewUserPosition'; ofType: null; }; } }; 'protocolHistory': { name: 'protocolHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ProtocolHistorySample'; ofType: null; }; }; }; } }; 'renounceSpokeUserPositionManager': { name: 'renounceSpokeUserPositionManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'repay': { name: 'repay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'repayWithSupplyQuote': { name: 'repayWithSupplyQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'RepayWithSupplyQuoteResult'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; } }; 'reserveHolders': { name: 'reserveHolders'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedReserveHoldersResult'; ofType: null; }; } }; 'reserves': { name: 'reserves'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; }; }; }; } }; 'setSpokeUserPositionManager': { name: 'setSpokeUserPositionManager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'setUserSuppliesAsCollateral': { name: 'setUserSuppliesAsCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'spoke': { name: 'spoke'; type: { kind: 'OBJECT'; name: 'Spoke'; ofType: null; } }; 'spokePositionManagers': { name: 'spokePositionManagers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedSpokePositionManagerResult'; ofType: null; }; } }; 'spokeUserPositionManagers': { name: 'spokeUserPositionManagers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedSpokeUserPositionManagerResult'; ofType: null; }; } }; 'spokes': { name: 'spokes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Spoke'; ofType: null; }; }; }; } }; 'stableVault': { name: 'stableVault'; type: { kind: 'OBJECT'; name: 'StableVault'; ofType: null; } }; 'stableVaultAssignRate': { name: 'stableVaultAssignRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'stableVaultClaimStatus': { name: 'stableVaultClaimStatus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'StableVaultClaimStatus'; ofType: null; }; } }; 'stableVaultClaimSurplus': { name: 'stableVaultClaimSurplus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'stableVaultDeposit': { name: 'stableVaultDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'StableVaultDepositExecutionPlan'; ofType: null; }; } }; 'stableVaultMovements': { name: 'stableVaultMovements'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedStableVaultMovementsResult'; ofType: null; }; } }; 'stableVaultRateUsers': { name: 'stableVaultRateUsers'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedStableVaultRateUsersResult'; ofType: null; }; } }; 'stableVaultUnassignRate': { name: 'stableVaultUnassignRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'stableVaultUserPositions': { name: 'stableVaultUserPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StableVaultUserPosition'; ofType: null; }; }; }; } }; 'stableVaultWithdraw': { name: 'stableVaultWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'StableVaultWithdrawExecutionPlan'; ofType: null; }; } }; 'stableVaults': { name: 'stableVaults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'StableVault'; ofType: null; }; }; }; } }; 'supply': { name: 'supply'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'supplyApyHistory': { name: 'supplyApyHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ApySample'; ofType: null; }; }; }; } }; 'supplySwapQuote': { name: 'supplySwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SupplySwapQuoteResult'; ofType: null; }; } }; 'swapStatus': { name: 'swapStatus'; type: { kind: 'UNION'; name: 'SwapStatus'; ofType: null; } }; 'swappableTokens': { name: 'swappableTokens'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'Token'; ofType: null; }; }; }; } }; 'tokenSwapQuote': { name: 'tokenSwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'TokenSwapQuoteResult'; ofType: null; }; } }; 'updateUserPositionConditions': { name: 'updateUserPositionConditions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'userBalances': { name: 'userBalances'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserBalance'; ofType: null; }; }; }; } }; 'userBorrows': { name: 'userBorrows'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserBorrowItem'; ofType: null; }; }; }; } }; 'userClaimableRewards': { name: 'userClaimableRewards'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UserClaimableReward'; ofType: null; }; }; }; } }; 'userPosition': { name: 'userPosition'; type: { kind: 'OBJECT'; name: 'UserPosition'; ofType: null; } }; 'userPositions': { name: 'userPositions'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserPosition'; ofType: null; }; }; }; } }; 'userRiskPremiumBreakdown': { name: 'userRiskPremiumBreakdown'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserRiskPremiumBreakdownItem'; ofType: null; }; }; }; } }; 'userSummary': { name: 'userSummary'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserSummary'; ofType: null; }; } }; 'userSummaryHistory': { name: 'userSummaryHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserSummaryHistoryItem'; ofType: null; }; }; }; } }; 'userSupplies': { name: 'userSupplies'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UserSupplyItem'; ofType: null; }; }; }; } }; 'userSwaps': { name: 'userSwaps'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedUserSwapsResult'; ofType: null; }; } }; 'withdraw': { name: 'withdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'withdrawSwapQuote': { name: 'withdrawSwapQuote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'WithdrawSwapQuoteResult'; ofType: null; }; } }; }; };
|
|
440
456
|
'QuoteAccuracy': { name: 'QuoteAccuracy'; enumValues: 'FAST' | 'ACCURATE'; };
|
|
441
457
|
'RenounceSpokeUserPositionManagerRequest': { kind: 'INPUT_OBJECT'; name: 'RenounceSpokeUserPositionManagerRequest'; isOneOf: false; inputFields: [{ name: 'spoke'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SpokeId'; ofType: null; }; }; defaultValue: null }, { name: 'manager'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'managing'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
|
|
442
458
|
'RepayActivity': { kind: 'OBJECT'; name: 'RepayActivity'; fields: { 'chain': { name: 'chain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Chain'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'repaid': { name: 'repaid'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveInfo'; ofType: null; }; } }; 'spoke': { name: 'spoke'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Spoke'; ofType: null; }; } }; 'timestamp': { name: 'timestamp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; } }; 'user': { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; };
|
|
@@ -454,6 +470,9 @@ type introspection_types = {
|
|
|
454
470
|
'ReserveAmountInputWithPermit': { kind: 'INPUT_OBJECT'; name: 'ReserveAmountInputWithPermit'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'ReserveErc20AmountInputWithPermit'; ofType: null; }; defaultValue: null }]; };
|
|
455
471
|
'ReserveErc20AmountInput': { kind: 'INPUT_OBJECT'; name: 'ReserveErc20AmountInput'; isOneOf: false; inputFields: [{ name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }]; };
|
|
456
472
|
'ReserveErc20AmountInputWithPermit': { kind: 'INPUT_OBJECT'; name: 'ReserveErc20AmountInputWithPermit'; isOneOf: false; inputFields: [{ name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'INPUT_OBJECT'; name: 'ERC20PermitSignature'; ofType: null; }; defaultValue: null }]; };
|
|
473
|
+
'ReserveHolder': { kind: 'OBJECT'; name: 'ReserveHolder'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'weight': { name: 'weight'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; }; };
|
|
474
|
+
'ReserveHoldersFilter': { name: 'ReserveHoldersFilter'; enumValues: 'SUPPLIED' | 'BORROWED'; };
|
|
475
|
+
'ReserveHoldersOrderBy': { kind: 'INPUT_OBJECT'; name: 'ReserveHoldersOrderBy'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; }; defaultValue: "DESC" }]; };
|
|
457
476
|
'ReserveId': unknown;
|
|
458
477
|
'ReserveInfo': { kind: 'OBJECT'; name: 'ReserveInfo'; fields: { 'asset': { name: 'asset'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HubAsset'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; } }; }; };
|
|
459
478
|
'ReserveInput': { kind: 'INPUT_OBJECT'; name: 'ReserveInput'; isOneOf: false; inputFields: [{ name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }, { name: 'spoke'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'onChainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'OnChainReserveId'; ofType: null; }; }; defaultValue: null }]; };
|
|
@@ -627,7 +646,7 @@ type introspection_types = {
|
|
|
627
646
|
'UserSuppliesRequestOrderBy': { kind: 'INPUT_OBJECT'; name: 'UserSuppliesRequestOrderBy'; isOneOf: true; inputFields: [{ name: 'assetName'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }, { name: 'created'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }, { name: 'apy'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }]; };
|
|
628
647
|
'UserSuppliesRequestQuery': { kind: 'INPUT_OBJECT'; name: 'UserSuppliesRequestQuery'; isOneOf: true; inputFields: [{ name: 'userSpoke'; type: { kind: 'INPUT_OBJECT'; name: 'UserSpokeInput'; ofType: null; }; defaultValue: null }, { name: 'userToken'; type: { kind: 'INPUT_OBJECT'; name: 'UserToken'; ofType: null; }; defaultValue: null }, { name: 'userPositionId'; type: { kind: 'SCALAR'; name: 'UserPositionId'; ofType: null; }; defaultValue: null }, { name: 'userChains'; type: { kind: 'INPUT_OBJECT'; name: 'UserChains'; ofType: null; }; defaultValue: null }, { name: 'userHub'; type: { kind: 'INPUT_OBJECT'; name: 'UserHub'; ofType: null; }; defaultValue: null }]; };
|
|
629
648
|
'UserSupplyAsCollateral': { kind: 'INPUT_OBJECT'; name: 'UserSupplyAsCollateral'; isOneOf: false; inputFields: [{ name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; }; defaultValue: null }, { name: 'enableCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
|
|
630
|
-
'UserSupplyItem': { kind: 'OBJECT'; name: 'UserSupplyItem'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserSupplyItemId'; ofType: null; }; } }; 'interest': { name: 'interest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'isCollateral': { name: 'isCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'principal': { name: 'principal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; }; } }; 'withdrawable': { name: 'withdrawable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; }; };
|
|
649
|
+
'UserSupplyItem': { kind: 'OBJECT'; name: 'UserSupplyItem'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserSupplyItemId'; ofType: null; }; } }; 'interest': { name: 'interest'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'isCollateral': { name: 'isCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'principal': { name: 'principal'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; }; } }; 'withdrawable': { name: 'withdrawable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; }; };
|
|
631
650
|
'UserSupplyItemId': unknown;
|
|
632
651
|
'UserSwapsRequest': { kind: 'INPUT_OBJECT'; name: 'UserSwapsRequest'; isOneOf: false; inputFields: [{ name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'filterBy'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SwapStatusFilter'; ofType: null; }; }; }; defaultValue: null }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; };
|
|
633
652
|
'UserToken': { kind: 'INPUT_OBJECT'; name: 'UserToken'; isOneOf: false; inputFields: [{ name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; }; defaultValue: null }]; };
|
|
@@ -964,6 +983,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
964
983
|
OrderDirection: OrderDirection;
|
|
965
984
|
PageSize: PageSize;
|
|
966
985
|
QuoteAccuracy: QuoteAccuracy;
|
|
986
|
+
ReserveHoldersFilter: ReserveHoldersFilter;
|
|
967
987
|
ReserveId: ReserveId;
|
|
968
988
|
ReservesRequestFilter: ReservesRequestFilter;
|
|
969
989
|
RewardId: RewardId;
|
|
@@ -4953,6 +4973,81 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
|
|
|
4953
4973
|
masked: false;
|
|
4954
4974
|
}>;
|
|
4955
4975
|
type Reserve = FragmentOf<typeof ReserveFragment>;
|
|
4976
|
+
declare const ReserveHolderFragment: gql_tada.TadaDocumentNode<{
|
|
4977
|
+
__typename: "ReserveHolder";
|
|
4978
|
+
address: _aave_types.EvmAddress;
|
|
4979
|
+
amount: {
|
|
4980
|
+
__typename: "Erc20Amount";
|
|
4981
|
+
token: {
|
|
4982
|
+
__typename: "Erc20Token";
|
|
4983
|
+
info: {
|
|
4984
|
+
__typename: "TokenInfo";
|
|
4985
|
+
id: TokenInfoId;
|
|
4986
|
+
name: string;
|
|
4987
|
+
symbol: string;
|
|
4988
|
+
icon: string;
|
|
4989
|
+
decimals: number;
|
|
4990
|
+
categories: TokenCategory[];
|
|
4991
|
+
};
|
|
4992
|
+
address: _aave_types.EvmAddress;
|
|
4993
|
+
chain: {
|
|
4994
|
+
__typename: "Chain";
|
|
4995
|
+
name: string;
|
|
4996
|
+
icon: string;
|
|
4997
|
+
chainId: _aave_types.ChainId;
|
|
4998
|
+
rpcUrl: string;
|
|
4999
|
+
explorerUrl: string;
|
|
5000
|
+
isTestnet: boolean;
|
|
5001
|
+
isFork: boolean;
|
|
5002
|
+
nativeWrappedToken: _aave_types.EvmAddress;
|
|
5003
|
+
nativeGateway: _aave_types.EvmAddress;
|
|
5004
|
+
signatureGateway: _aave_types.EvmAddress;
|
|
5005
|
+
nativeInfo: {
|
|
5006
|
+
__typename: "TokenInfo";
|
|
5007
|
+
id: TokenInfoId;
|
|
5008
|
+
name: string;
|
|
5009
|
+
symbol: string;
|
|
5010
|
+
icon: string;
|
|
5011
|
+
decimals: number;
|
|
5012
|
+
categories: TokenCategory[];
|
|
5013
|
+
};
|
|
5014
|
+
};
|
|
5015
|
+
isWrappedNativeToken: boolean;
|
|
5016
|
+
};
|
|
5017
|
+
amount: {
|
|
5018
|
+
__typename: "DecimalNumber";
|
|
5019
|
+
onChainValue: bigint;
|
|
5020
|
+
decimals: number;
|
|
5021
|
+
value: _aave_types.BigDecimal;
|
|
5022
|
+
};
|
|
5023
|
+
exchange: {
|
|
5024
|
+
__typename: "ExchangeAmount";
|
|
5025
|
+
value: _aave_types.BigDecimal;
|
|
5026
|
+
name: string;
|
|
5027
|
+
symbol: string;
|
|
5028
|
+
icon: string;
|
|
5029
|
+
decimals: number;
|
|
5030
|
+
};
|
|
5031
|
+
exchangeRate: {
|
|
5032
|
+
__typename: "DecimalNumber";
|
|
5033
|
+
onChainValue: bigint;
|
|
5034
|
+
decimals: number;
|
|
5035
|
+
value: _aave_types.BigDecimal;
|
|
5036
|
+
};
|
|
5037
|
+
};
|
|
5038
|
+
weight: {
|
|
5039
|
+
__typename: "PercentNumber";
|
|
5040
|
+
onChainValue: bigint;
|
|
5041
|
+
decimals: number;
|
|
5042
|
+
value: _aave_types.BigDecimal;
|
|
5043
|
+
normalized: _aave_types.BigDecimal;
|
|
5044
|
+
};
|
|
5045
|
+
}, {}, {
|
|
5046
|
+
fragment: "ReserveHolder";
|
|
5047
|
+
on: "ReserveHolder";
|
|
5048
|
+
masked: false;
|
|
5049
|
+
}>;
|
|
5050
|
+
type ReserveHolder = FragmentOf<typeof ReserveHolderFragment>;
|
|
4956
5051
|
declare const ReserveInfoFragment: gql_tada.TadaDocumentNode<{
|
|
4957
5052
|
__typename: "ReserveInfo";
|
|
4958
5053
|
id: ReserveId;
|
|
@@ -78710,6 +78805,26 @@ declare const PositionSwapPositionManagerApprovalFragment: gql_tada.TadaDocument
|
|
|
78710
78805
|
masked: false;
|
|
78711
78806
|
}>;
|
|
78712
78807
|
type PositionSwapPositionManagerApproval = FragmentOf<typeof PositionSwapPositionManagerApprovalFragment>;
|
|
78808
|
+
declare const PositionSwapSetCollateralApprovalFragment: gql_tada.TadaDocumentNode<{
|
|
78809
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
78810
|
+
bySignature: {
|
|
78811
|
+
__typename: "SwapTypedData";
|
|
78812
|
+
primaryType: string;
|
|
78813
|
+
types: type_fest.JsonObject;
|
|
78814
|
+
domain: {
|
|
78815
|
+
name: string;
|
|
78816
|
+
version: string;
|
|
78817
|
+
chainId: _aave_types.ChainId;
|
|
78818
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
78819
|
+
};
|
|
78820
|
+
message: type_fest.JsonObject;
|
|
78821
|
+
};
|
|
78822
|
+
}, {}, {
|
|
78823
|
+
fragment: "PositionSwapSetCollateralApproval";
|
|
78824
|
+
on: "PositionSwapSetCollateralApproval";
|
|
78825
|
+
masked: false;
|
|
78826
|
+
}>;
|
|
78827
|
+
type PositionSwapSetCollateralApproval = FragmentOf<typeof PositionSwapSetCollateralApprovalFragment>;
|
|
78713
78828
|
declare const PositionSwapApprovalFragment: gql_tada.TadaDocumentNode<{
|
|
78714
78829
|
__typename: "PositionSwapAdapterContractApproval";
|
|
78715
78830
|
bySignature: {
|
|
@@ -78747,6 +78862,20 @@ declare const PositionSwapApprovalFragment: gql_tada.TadaDocumentNode<{
|
|
|
78747
78862
|
};
|
|
78748
78863
|
message: type_fest.JsonObject;
|
|
78749
78864
|
};
|
|
78865
|
+
} | {
|
|
78866
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
78867
|
+
bySignature: {
|
|
78868
|
+
__typename: "SwapTypedData";
|
|
78869
|
+
primaryType: string;
|
|
78870
|
+
types: type_fest.JsonObject;
|
|
78871
|
+
domain: {
|
|
78872
|
+
name: string;
|
|
78873
|
+
version: string;
|
|
78874
|
+
chainId: _aave_types.ChainId;
|
|
78875
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
78876
|
+
};
|
|
78877
|
+
message: type_fest.JsonObject;
|
|
78878
|
+
};
|
|
78750
78879
|
}, {}, {
|
|
78751
78880
|
fragment: "PositionSwapApproval";
|
|
78752
78881
|
on: "PositionSwapApproval";
|
|
@@ -79734,6 +79863,20 @@ declare const PositionSwapByIntentApprovalsRequiredFragment: gql_tada.TadaDocume
|
|
|
79734
79863
|
};
|
|
79735
79864
|
message: type_fest.JsonObject;
|
|
79736
79865
|
};
|
|
79866
|
+
} | {
|
|
79867
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
79868
|
+
bySignature: {
|
|
79869
|
+
__typename: "SwapTypedData";
|
|
79870
|
+
primaryType: string;
|
|
79871
|
+
types: type_fest.JsonObject;
|
|
79872
|
+
domain: {
|
|
79873
|
+
name: string;
|
|
79874
|
+
version: string;
|
|
79875
|
+
chainId: _aave_types.ChainId;
|
|
79876
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
79877
|
+
};
|
|
79878
|
+
message: type_fest.JsonObject;
|
|
79879
|
+
};
|
|
79737
79880
|
})[];
|
|
79738
79881
|
}, {}, {
|
|
79739
79882
|
fragment: "PositionSwapByIntentApprovalsRequired";
|
|
@@ -80725,6 +80868,20 @@ declare const SupplySwapQuoteResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
80725
80868
|
};
|
|
80726
80869
|
message: type_fest.JsonObject;
|
|
80727
80870
|
};
|
|
80871
|
+
} | {
|
|
80872
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
80873
|
+
bySignature: {
|
|
80874
|
+
__typename: "SwapTypedData";
|
|
80875
|
+
primaryType: string;
|
|
80876
|
+
types: type_fest.JsonObject;
|
|
80877
|
+
domain: {
|
|
80878
|
+
name: string;
|
|
80879
|
+
version: string;
|
|
80880
|
+
chainId: _aave_types.ChainId;
|
|
80881
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
80882
|
+
};
|
|
80883
|
+
message: type_fest.JsonObject;
|
|
80884
|
+
};
|
|
80728
80885
|
})[];
|
|
80729
80886
|
}, {}, {
|
|
80730
80887
|
fragment: "SupplySwapQuoteResult";
|
|
@@ -81716,6 +81873,20 @@ declare const BorrowSwapQuoteResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
81716
81873
|
};
|
|
81717
81874
|
message: type_fest.JsonObject;
|
|
81718
81875
|
};
|
|
81876
|
+
} | {
|
|
81877
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
81878
|
+
bySignature: {
|
|
81879
|
+
__typename: "SwapTypedData";
|
|
81880
|
+
primaryType: string;
|
|
81881
|
+
types: type_fest.JsonObject;
|
|
81882
|
+
domain: {
|
|
81883
|
+
name: string;
|
|
81884
|
+
version: string;
|
|
81885
|
+
chainId: _aave_types.ChainId;
|
|
81886
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
81887
|
+
};
|
|
81888
|
+
message: type_fest.JsonObject;
|
|
81889
|
+
};
|
|
81719
81890
|
})[];
|
|
81720
81891
|
}, {}, {
|
|
81721
81892
|
fragment: "BorrowSwapQuoteResult";
|
|
@@ -82707,6 +82878,20 @@ declare const RepayWithSupplyQuoteResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
82707
82878
|
};
|
|
82708
82879
|
message: type_fest.JsonObject;
|
|
82709
82880
|
};
|
|
82881
|
+
} | {
|
|
82882
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
82883
|
+
bySignature: {
|
|
82884
|
+
__typename: "SwapTypedData";
|
|
82885
|
+
primaryType: string;
|
|
82886
|
+
types: type_fest.JsonObject;
|
|
82887
|
+
domain: {
|
|
82888
|
+
name: string;
|
|
82889
|
+
version: string;
|
|
82890
|
+
chainId: _aave_types.ChainId;
|
|
82891
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
82892
|
+
};
|
|
82893
|
+
message: type_fest.JsonObject;
|
|
82894
|
+
};
|
|
82710
82895
|
})[];
|
|
82711
82896
|
}, {}, {
|
|
82712
82897
|
fragment: "RepayWithSupplyQuoteResult";
|
|
@@ -83698,6 +83883,20 @@ declare const WithdrawSwapQuoteResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
83698
83883
|
};
|
|
83699
83884
|
message: type_fest.JsonObject;
|
|
83700
83885
|
};
|
|
83886
|
+
} | {
|
|
83887
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
83888
|
+
bySignature: {
|
|
83889
|
+
__typename: "SwapTypedData";
|
|
83890
|
+
primaryType: string;
|
|
83891
|
+
types: type_fest.JsonObject;
|
|
83892
|
+
domain: {
|
|
83893
|
+
name: string;
|
|
83894
|
+
version: string;
|
|
83895
|
+
chainId: _aave_types.ChainId;
|
|
83896
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
83897
|
+
};
|
|
83898
|
+
message: type_fest.JsonObject;
|
|
83899
|
+
};
|
|
83701
83900
|
})[];
|
|
83702
83901
|
}, {}, {
|
|
83703
83902
|
fragment: "WithdrawSwapQuoteResult";
|
|
@@ -85346,6 +85545,65 @@ declare const UserSupplyItemFragment: gql_tada.TadaDocumentNode<{
|
|
|
85346
85545
|
value: _aave_types.BigDecimal;
|
|
85347
85546
|
};
|
|
85348
85547
|
};
|
|
85548
|
+
balance: {
|
|
85549
|
+
__typename: "Erc20Amount";
|
|
85550
|
+
token: {
|
|
85551
|
+
__typename: "Erc20Token";
|
|
85552
|
+
info: {
|
|
85553
|
+
__typename: "TokenInfo";
|
|
85554
|
+
id: TokenInfoId;
|
|
85555
|
+
name: string;
|
|
85556
|
+
symbol: string;
|
|
85557
|
+
icon: string;
|
|
85558
|
+
decimals: number;
|
|
85559
|
+
categories: TokenCategory[];
|
|
85560
|
+
};
|
|
85561
|
+
address: _aave_types.EvmAddress;
|
|
85562
|
+
chain: {
|
|
85563
|
+
__typename: "Chain";
|
|
85564
|
+
name: string;
|
|
85565
|
+
icon: string;
|
|
85566
|
+
chainId: _aave_types.ChainId;
|
|
85567
|
+
rpcUrl: string;
|
|
85568
|
+
explorerUrl: string;
|
|
85569
|
+
isTestnet: boolean;
|
|
85570
|
+
isFork: boolean;
|
|
85571
|
+
nativeWrappedToken: _aave_types.EvmAddress;
|
|
85572
|
+
nativeGateway: _aave_types.EvmAddress;
|
|
85573
|
+
signatureGateway: _aave_types.EvmAddress;
|
|
85574
|
+
nativeInfo: {
|
|
85575
|
+
__typename: "TokenInfo";
|
|
85576
|
+
id: TokenInfoId;
|
|
85577
|
+
name: string;
|
|
85578
|
+
symbol: string;
|
|
85579
|
+
icon: string;
|
|
85580
|
+
decimals: number;
|
|
85581
|
+
categories: TokenCategory[];
|
|
85582
|
+
};
|
|
85583
|
+
};
|
|
85584
|
+
isWrappedNativeToken: boolean;
|
|
85585
|
+
};
|
|
85586
|
+
amount: {
|
|
85587
|
+
__typename: "DecimalNumber";
|
|
85588
|
+
onChainValue: bigint;
|
|
85589
|
+
decimals: number;
|
|
85590
|
+
value: _aave_types.BigDecimal;
|
|
85591
|
+
};
|
|
85592
|
+
exchange: {
|
|
85593
|
+
__typename: "ExchangeAmount";
|
|
85594
|
+
value: _aave_types.BigDecimal;
|
|
85595
|
+
name: string;
|
|
85596
|
+
symbol: string;
|
|
85597
|
+
icon: string;
|
|
85598
|
+
decimals: number;
|
|
85599
|
+
};
|
|
85600
|
+
exchangeRate: {
|
|
85601
|
+
__typename: "DecimalNumber";
|
|
85602
|
+
onChainValue: bigint;
|
|
85603
|
+
decimals: number;
|
|
85604
|
+
value: _aave_types.BigDecimal;
|
|
85605
|
+
};
|
|
85606
|
+
};
|
|
85349
85607
|
withdrawable: {
|
|
85350
85608
|
__typename: "Erc20Amount";
|
|
85351
85609
|
token: {
|
|
@@ -95063,6 +95321,110 @@ type ReservesRequest = RequestOf<typeof ReservesQuery>;
|
|
|
95063
95321
|
type ReservesRequestOrderBy = ReturnType<typeof graphql.scalar<'ReservesRequestOrderBy'>>;
|
|
95064
95322
|
type ReservesRequestQuery = ReturnType<typeof graphql.scalar<'ReservesRequestQuery'>>;
|
|
95065
95323
|
type ChainTokenCategories = ReturnType<typeof graphql.scalar<'ChainTokenCategories'>>;
|
|
95324
|
+
/**
|
|
95325
|
+
* @internal
|
|
95326
|
+
*/
|
|
95327
|
+
declare const ReserveHoldersQuery: gql_tada.TadaDocumentNode<{
|
|
95328
|
+
value: {
|
|
95329
|
+
items: {
|
|
95330
|
+
__typename: "ReserveHolder";
|
|
95331
|
+
address: _aave_types.EvmAddress;
|
|
95332
|
+
amount: {
|
|
95333
|
+
__typename: "Erc20Amount";
|
|
95334
|
+
token: {
|
|
95335
|
+
__typename: "Erc20Token";
|
|
95336
|
+
info: {
|
|
95337
|
+
__typename: "TokenInfo";
|
|
95338
|
+
id: TokenInfoId;
|
|
95339
|
+
name: string;
|
|
95340
|
+
symbol: string;
|
|
95341
|
+
icon: string;
|
|
95342
|
+
decimals: number;
|
|
95343
|
+
categories: TokenCategory[];
|
|
95344
|
+
};
|
|
95345
|
+
address: _aave_types.EvmAddress;
|
|
95346
|
+
chain: {
|
|
95347
|
+
__typename: "Chain";
|
|
95348
|
+
name: string;
|
|
95349
|
+
icon: string;
|
|
95350
|
+
chainId: _aave_types.ChainId;
|
|
95351
|
+
rpcUrl: string;
|
|
95352
|
+
explorerUrl: string;
|
|
95353
|
+
isTestnet: boolean;
|
|
95354
|
+
isFork: boolean;
|
|
95355
|
+
nativeWrappedToken: _aave_types.EvmAddress;
|
|
95356
|
+
nativeGateway: _aave_types.EvmAddress;
|
|
95357
|
+
signatureGateway: _aave_types.EvmAddress;
|
|
95358
|
+
nativeInfo: {
|
|
95359
|
+
__typename: "TokenInfo";
|
|
95360
|
+
id: TokenInfoId;
|
|
95361
|
+
name: string;
|
|
95362
|
+
symbol: string;
|
|
95363
|
+
icon: string;
|
|
95364
|
+
decimals: number;
|
|
95365
|
+
categories: TokenCategory[];
|
|
95366
|
+
};
|
|
95367
|
+
};
|
|
95368
|
+
isWrappedNativeToken: boolean;
|
|
95369
|
+
};
|
|
95370
|
+
amount: {
|
|
95371
|
+
__typename: "DecimalNumber";
|
|
95372
|
+
onChainValue: bigint;
|
|
95373
|
+
decimals: number;
|
|
95374
|
+
value: _aave_types.BigDecimal;
|
|
95375
|
+
};
|
|
95376
|
+
exchange: {
|
|
95377
|
+
__typename: "ExchangeAmount";
|
|
95378
|
+
value: _aave_types.BigDecimal;
|
|
95379
|
+
name: string;
|
|
95380
|
+
symbol: string;
|
|
95381
|
+
icon: string;
|
|
95382
|
+
decimals: number;
|
|
95383
|
+
};
|
|
95384
|
+
exchangeRate: {
|
|
95385
|
+
__typename: "DecimalNumber";
|
|
95386
|
+
onChainValue: bigint;
|
|
95387
|
+
decimals: number;
|
|
95388
|
+
value: _aave_types.BigDecimal;
|
|
95389
|
+
};
|
|
95390
|
+
};
|
|
95391
|
+
weight: {
|
|
95392
|
+
__typename: "PercentNumber";
|
|
95393
|
+
onChainValue: bigint;
|
|
95394
|
+
decimals: number;
|
|
95395
|
+
value: _aave_types.BigDecimal;
|
|
95396
|
+
normalized: _aave_types.BigDecimal;
|
|
95397
|
+
};
|
|
95398
|
+
}[];
|
|
95399
|
+
pageInfo: {
|
|
95400
|
+
__typename: "PaginatedResultInfo";
|
|
95401
|
+
prev: _aave_types.Cursor | null;
|
|
95402
|
+
next: _aave_types.Cursor | null;
|
|
95403
|
+
};
|
|
95404
|
+
};
|
|
95405
|
+
}, {
|
|
95406
|
+
currency: Currency;
|
|
95407
|
+
request: {
|
|
95408
|
+
cursor?: _aave_types.Cursor | null | undefined;
|
|
95409
|
+
pageSize?: PageSize | null | undefined;
|
|
95410
|
+
orderBy?: {
|
|
95411
|
+
amount?: OrderDirection | null | undefined;
|
|
95412
|
+
} | null | undefined;
|
|
95413
|
+
filter?: ReserveHoldersFilter | null | undefined;
|
|
95414
|
+
reserve: {
|
|
95415
|
+
reserveId: ReserveId;
|
|
95416
|
+
} | {
|
|
95417
|
+
reserveInput: {
|
|
95418
|
+
onChainId: OnChainReserveId;
|
|
95419
|
+
spoke: _aave_types.EvmAddress;
|
|
95420
|
+
chainId: _aave_types.ChainId;
|
|
95421
|
+
};
|
|
95422
|
+
};
|
|
95423
|
+
};
|
|
95424
|
+
}, void>;
|
|
95425
|
+
type ReserveHoldersRequest = RequestOf<typeof ReserveHoldersQuery>;
|
|
95426
|
+
type ReserveHoldersOrderBy = ReturnType<typeof graphql.scalar<'ReserveHoldersOrderBy'>>;
|
|
95427
|
+
type PaginatedReserveHoldersResult = ResultOf<typeof ReserveHoldersQuery>['value'];
|
|
95066
95428
|
|
|
95067
95429
|
/**
|
|
95068
95430
|
* @internal
|
|
@@ -139836,6 +140198,20 @@ declare const SupplySwapQuoteQuery: gql_tada.TadaDocumentNode<{
|
|
|
139836
140198
|
};
|
|
139837
140199
|
message: type_fest.JsonObject;
|
|
139838
140200
|
};
|
|
140201
|
+
} | {
|
|
140202
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
140203
|
+
bySignature: {
|
|
140204
|
+
__typename: "SwapTypedData";
|
|
140205
|
+
primaryType: string;
|
|
140206
|
+
types: type_fest.JsonObject;
|
|
140207
|
+
domain: {
|
|
140208
|
+
name: string;
|
|
140209
|
+
version: string;
|
|
140210
|
+
chainId: _aave_types.ChainId;
|
|
140211
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
140212
|
+
};
|
|
140213
|
+
message: type_fest.JsonObject;
|
|
140214
|
+
};
|
|
139839
140215
|
})[];
|
|
139840
140216
|
};
|
|
139841
140217
|
}, {
|
|
@@ -140860,6 +141236,20 @@ declare const BorrowSwapQuoteQuery: gql_tada.TadaDocumentNode<{
|
|
|
140860
141236
|
};
|
|
140861
141237
|
message: type_fest.JsonObject;
|
|
140862
141238
|
};
|
|
141239
|
+
} | {
|
|
141240
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
141241
|
+
bySignature: {
|
|
141242
|
+
__typename: "SwapTypedData";
|
|
141243
|
+
primaryType: string;
|
|
141244
|
+
types: type_fest.JsonObject;
|
|
141245
|
+
domain: {
|
|
141246
|
+
name: string;
|
|
141247
|
+
version: string;
|
|
141248
|
+
chainId: _aave_types.ChainId;
|
|
141249
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
141250
|
+
};
|
|
141251
|
+
message: type_fest.JsonObject;
|
|
141252
|
+
};
|
|
140863
141253
|
})[];
|
|
140864
141254
|
};
|
|
140865
141255
|
}, {
|
|
@@ -141882,6 +142272,20 @@ declare const RepayWithSupplyQuoteQuery: gql_tada.TadaDocumentNode<{
|
|
|
141882
142272
|
};
|
|
141883
142273
|
message: type_fest.JsonObject;
|
|
141884
142274
|
};
|
|
142275
|
+
} | {
|
|
142276
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
142277
|
+
bySignature: {
|
|
142278
|
+
__typename: "SwapTypedData";
|
|
142279
|
+
primaryType: string;
|
|
142280
|
+
types: type_fest.JsonObject;
|
|
142281
|
+
domain: {
|
|
142282
|
+
name: string;
|
|
142283
|
+
version: string;
|
|
142284
|
+
chainId: _aave_types.ChainId;
|
|
142285
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
142286
|
+
};
|
|
142287
|
+
message: type_fest.JsonObject;
|
|
142288
|
+
};
|
|
141885
142289
|
})[];
|
|
141886
142290
|
};
|
|
141887
142291
|
}, {
|
|
@@ -142905,6 +143309,20 @@ declare const WithdrawSwapQuoteQuery: gql_tada.TadaDocumentNode<{
|
|
|
142905
143309
|
};
|
|
142906
143310
|
message: type_fest.JsonObject;
|
|
142907
143311
|
};
|
|
143312
|
+
} | {
|
|
143313
|
+
__typename: "PositionSwapSetCollateralApproval";
|
|
143314
|
+
bySignature: {
|
|
143315
|
+
__typename: "SwapTypedData";
|
|
143316
|
+
primaryType: string;
|
|
143317
|
+
types: type_fest.JsonObject;
|
|
143318
|
+
domain: {
|
|
143319
|
+
name: string;
|
|
143320
|
+
version: string;
|
|
143321
|
+
chainId: _aave_types.ChainId;
|
|
143322
|
+
verifyingContract: _aave_types.EvmAddress;
|
|
143323
|
+
};
|
|
143324
|
+
message: type_fest.JsonObject;
|
|
143325
|
+
};
|
|
142908
143326
|
})[];
|
|
142909
143327
|
};
|
|
142910
143328
|
}, {
|
|
@@ -142983,6 +143401,7 @@ declare const PreparePositionSwapQuery: gql_tada.TadaDocumentNode<{
|
|
|
142983
143401
|
};
|
|
142984
143402
|
}, {
|
|
142985
143403
|
request: {
|
|
143404
|
+
setCollateralSignature?: _aave_types.Signature | null | undefined;
|
|
142986
143405
|
positionManagerSignature?: _aave_types.Signature | null | undefined;
|
|
142987
143406
|
adapterContractSignature?: _aave_types.Signature | null | undefined;
|
|
142988
143407
|
quoteId: SwapQuoteId;
|
|
@@ -206204,6 +206623,65 @@ declare const UserSuppliesQuery: gql_tada.TadaDocumentNode<{
|
|
|
206204
206623
|
value: _aave_types.BigDecimal;
|
|
206205
206624
|
};
|
|
206206
206625
|
};
|
|
206626
|
+
balance: {
|
|
206627
|
+
__typename: "Erc20Amount";
|
|
206628
|
+
token: {
|
|
206629
|
+
__typename: "Erc20Token";
|
|
206630
|
+
info: {
|
|
206631
|
+
__typename: "TokenInfo";
|
|
206632
|
+
id: TokenInfoId;
|
|
206633
|
+
name: string;
|
|
206634
|
+
symbol: string;
|
|
206635
|
+
icon: string;
|
|
206636
|
+
decimals: number;
|
|
206637
|
+
categories: TokenCategory[];
|
|
206638
|
+
};
|
|
206639
|
+
address: _aave_types.EvmAddress;
|
|
206640
|
+
chain: {
|
|
206641
|
+
__typename: "Chain";
|
|
206642
|
+
name: string;
|
|
206643
|
+
icon: string;
|
|
206644
|
+
chainId: _aave_types.ChainId;
|
|
206645
|
+
rpcUrl: string;
|
|
206646
|
+
explorerUrl: string;
|
|
206647
|
+
isTestnet: boolean;
|
|
206648
|
+
isFork: boolean;
|
|
206649
|
+
nativeWrappedToken: _aave_types.EvmAddress;
|
|
206650
|
+
nativeGateway: _aave_types.EvmAddress;
|
|
206651
|
+
signatureGateway: _aave_types.EvmAddress;
|
|
206652
|
+
nativeInfo: {
|
|
206653
|
+
__typename: "TokenInfo";
|
|
206654
|
+
id: TokenInfoId;
|
|
206655
|
+
name: string;
|
|
206656
|
+
symbol: string;
|
|
206657
|
+
icon: string;
|
|
206658
|
+
decimals: number;
|
|
206659
|
+
categories: TokenCategory[];
|
|
206660
|
+
};
|
|
206661
|
+
};
|
|
206662
|
+
isWrappedNativeToken: boolean;
|
|
206663
|
+
};
|
|
206664
|
+
amount: {
|
|
206665
|
+
__typename: "DecimalNumber";
|
|
206666
|
+
onChainValue: bigint;
|
|
206667
|
+
decimals: number;
|
|
206668
|
+
value: _aave_types.BigDecimal;
|
|
206669
|
+
};
|
|
206670
|
+
exchange: {
|
|
206671
|
+
__typename: "ExchangeAmount";
|
|
206672
|
+
value: _aave_types.BigDecimal;
|
|
206673
|
+
name: string;
|
|
206674
|
+
symbol: string;
|
|
206675
|
+
icon: string;
|
|
206676
|
+
decimals: number;
|
|
206677
|
+
};
|
|
206678
|
+
exchangeRate: {
|
|
206679
|
+
__typename: "DecimalNumber";
|
|
206680
|
+
onChainValue: bigint;
|
|
206681
|
+
decimals: number;
|
|
206682
|
+
value: _aave_types.BigDecimal;
|
|
206683
|
+
};
|
|
206684
|
+
};
|
|
206207
206685
|
withdrawable: {
|
|
206208
206686
|
__typename: "Erc20Amount";
|
|
206209
206687
|
token: {
|
|
@@ -209973,4 +210451,4 @@ type StableVaultWithdrawRedeemInput = ReturnType<typeof graphql.scalar<'StableVa
|
|
|
209973
210451
|
type StableVaultsRequestInput = ReturnType<typeof graphql.scalar<'StableVaultsRequest'>>;
|
|
209974
210452
|
type SurplusClaim = ReturnType<typeof graphql.scalar<'SurplusClaim'>>;
|
|
209975
210453
|
|
|
209976
|
-
export { ActivitiesQuery, type ActivitiesRequest, type ActivitiesRequestQuery, type ActivityItem, ActivityItemFragment, ActivityType, type AmountInput, ApyMetric, type ApySample, ApySampleFragment, type Asset, type AssetAmountWithChange, AssetAmountWithChangeFragment, AssetBorrowHistoryQuery, type AssetBorrowHistoryRequest, type AssetBorrowHistoryRequestQuery, type AssetBorrowSample, AssetBorrowSampleFragment, AssetFragment, type AssetId, AssetPriceHistoryQuery, type AssetPriceHistoryRequest, type AssetPriceHistoryRequestQuery, type AssetPriceSample, AssetPriceSampleFragment, AssetQuery, type AssetRequest, type AssetRequestQuery, type AssetSampleBreakdown, AssetSampleBreakdownFragment, type AssetSummary, AssetSummaryFragment, AssetSupplyHistoryQuery, type AssetSupplyHistoryRequest, type AssetSupplyHistoryRequestQuery, type AssetSupplySample, AssetSupplySampleFragment, type Base64EncodedCompositeId, type BoostedRate, BoostedRateFragment, type BoostedRateId, type BorrowActivity, BorrowActivityFragment, BorrowApyHistoryQuery, type BorrowApyHistoryRequest, type BorrowPoints, BorrowPointsFragment, BorrowQuery, type BorrowRequest, type BorrowSwap, type BorrowSwapActivity, BorrowSwapActivityFragment, BorrowSwapFragment, BorrowSwapKind, BorrowSwapQuoteQuery, type BorrowSwapQuoteRequest, type BorrowSwapQuoteResult, BorrowSwapQuoteResultFragment, type CancelIntentSwapInput, type CancelSwapExecutionPlan, CancelSwapExecutionPlanFragment, CancelSwapMutation, type CancelSwapRequest, type Chain, ChainFragment, ChainQuery, type ChainRequest, type ChainTokenCategories, type ChainTokenInput, ChainsFilter, ChainsQuery, type ChainsRequest, type ChainsRequestQuery, ClaimRewardsQuery, type ClaimRewardsRequest, type CollateralFactorVariation, CollateralFactorVariationFragment, CollateralMetric, Currency, type DecimalNumber, DecimalNumberFragment, type DecimalNumberWithChange, DecimalNumberWithChangeFragment, type DomainData, DomainDataFragment, type ERC20PermitSignature, type Erc20Amount, Erc20AmountFragment, type Erc20Approval, Erc20ApprovalFragment, type Erc20ApprovalRequired, Erc20ApprovalRequiredFragment, type Erc20Input, type Erc20Token, Erc20TokenFragment, type ExchangeAmount, ExchangeAmountFragment, type ExchangeAmountVariation, ExchangeAmountVariationFragment, type ExchangeAmountWithChange, ExchangeAmountWithChangeFragment, ExchangeRateQuery, type ExchangeRateRequest, type ExchangeRateRequestFrom, type ExecutionPlan, ExecutionPlanFragment, type ExtendWithOpaqueVariant, type FragmentDocumentFor, type FromQuoteDebtSwapQuoteInput, type FromQuoteRepayWithSupplyQuoteInput, type FromQuoteSupplySwapQuoteInput, type FromQuoteWithdrawSwapQuoteInput, HasProcessedKnownTransactionQuery, type HasProcessedKnownTransactionRequest, type HealthFactorError, HealthFactorErrorFragment, type HealthFactorResult, HealthFactorResultFragment, type HealthFactorVariation, HealthFactorVariationFragment, type HealthFactorWithChange, HealthFactorWithChangeFragment, HealthQuery, type Hub, type HubAsset, HubAssetFragment, type HubAssetId, type HubAssetInterestRateModelPoint, HubAssetInterestRateModelPointFragment, HubAssetInterestRateModelQuery, type HubAssetInterestRateModelRequest, type HubAssetInterestRateModelRequestQuery, type HubAssetSettings, HubAssetSettingsFragment, type HubAssetSummary, HubAssetSummaryFragment, type HubAssetUserState, HubAssetUserStateFragment, HubAssetsQuery, type HubAssetsRequest, type HubAssetsRequestOrderBy, type HubAssetsRequestQuery, HubFragment, type HubId, type HubIdParts, type HubIdTokenInput, type HubInput, HubQuery, type HubRequest, type HubRequestQuery, type HubSummary, HubSummaryFragment, HubSummaryHistoryQuery, type HubSummaryHistoryRequest, type HubSummaryHistoryRequestQuery, type HubSummarySample, HubSummarySampleFragment, type HubTokenInput, HubsQuery, type HubsRequest, type HubsRequestOrderBy, type HubsRequestQuery, type ID, type InsufficientBalanceError, InsufficientBalanceErrorFragment, type InsufficientLiquidityError, InsufficientLiquidityErrorFragment, type LimitDebtSwapQuoteInput, type LimitOrderTokenSwapQuoteInput, type LimitRepayWithSupplyQuoteInput, type LimitSupplySwapQuoteInput, type LimitWithdrawSwapQuoteInput, type LiquidateExactAmountWithPermit, type LiquidatePositionDebtAmount, type LiquidatePositionExecutionPlan, LiquidatePositionExecutionPlanFragment, LiquidatePositionQuery, type LiquidatePositionRequest, type LiquidatedActivity, LiquidatedActivityFragment, type LiquidationFeeVariation, LiquidationFeeVariationFragment, type MarketDebtSwapQuoteInput, type MarketOrderTokenSwapFromQuoteInput, type MarketOrderTokenSwapQuoteInput, type MarketRepayWithSupplyQuoteInput, type MarketSupplySwapQuoteInput, type MarketWithdrawSwapQuoteInput, type MaxLiquidationBonusVariation, MaxLiquidationBonusVariationFragment, type MerklBorrowReward, MerklBorrowRewardFragment, type MerklCriteria, MerklCriteriaFragment, type MerklGenericCriteria, MerklGenericCriteriaFragment, type MerklSupplyReward, MerklSupplyRewardFragment, type NativeAmount, NativeAmountFragment, type NativeToken, NativeTokenFragment, type OnChainHubAssetId, type OnChainReserveId, type OpaqueEnumVariant, OperationType, OrderDirection, PageSize, type PaginatedActivitiesResult, PaginatedActivitiesResultFragment, type PaginatedResultInfo, PaginatedResultInfoFragment, type PaginatedSpokePositionManagerResult, PaginatedSpokePositionManagerResultFragment, type PaginatedSpokeUserPositionManagerResult, PaginatedSpokeUserPositionManagerResultFragment, type PaginatedStableVaultMovementsResult, PaginatedStableVaultMovementsResultFragment, type PaginatedStableVaultRateUsersResult, PaginatedStableVaultRateUsersResultFragment, type PaginatedUserSwapsResult, PaginatedUserSwapsResultFragment, type PercentNumber, type PercentNumberChangeSnapshot, PercentNumberChangeSnapshotFragment, PercentNumberFragment, type PercentNumberVariation, PercentNumberVariationFragment, type PercentNumberWithChange, PercentNumberWithChangeFragment, type PermitTypedData, PermitTypedDataFragment, type PointsCriteria, PointsCriteriaFragment, type PointsGenericCriteria, PointsGenericCriteriaFragment, type PointsProgram, PointsProgramFragment, type PositionAmount, PositionAmountFragment, type PositionSwapAdapterContractApproval, PositionSwapAdapterContractApprovalFragment, type PositionSwapApproval, PositionSwapApprovalFragment, type PositionSwapByIntentApprovalsRequired, PositionSwapByIntentApprovalsRequiredFragment, type PositionSwapPositionManagerApproval, PositionSwapPositionManagerApprovalFragment, type PreContractActionRequired, PreContractActionRequiredFragment, PreparePositionSwapQuery, type PreparePositionSwapRequest, type PreparePositionSwapResult, PreparePositionSwapResultFragment, PrepareSwapCancelQuery, type PrepareSwapCancelRequest, type PrepareSwapCancelResult, PrepareSwapCancelResultFragment, type PrepareSwapOrder, PrepareSwapOrderFragment, PrepareTokenSwapQuery, type PrepareTokenSwapRequest, type PrepareTokenSwapResult, PrepareTokenSwapResultFragment, type PreviewAction, type PreviewBorrowPoints, PreviewBorrowPointsFragment, type PreviewMerklBorrowReward, PreviewMerklBorrowRewardFragment, type PreviewMerklSupplyReward, PreviewMerklSupplyRewardFragment, PreviewQuery, type PreviewRequest, type PreviewReward, PreviewRewardFragment, type PreviewRewardOutcome, PreviewRewardOutcomeFragment, type PreviewSupplyPoints, PreviewSupplyPointsFragment, type PreviewUserPosition, PreviewUserPositionFragment, ProtocolHistoryQuery, type ProtocolHistoryRequest, type ProtocolHistorySample, ProtocolHistorySampleFragment, QuoteAccuracy, RenounceSpokeUserPositionManagerQuery, type RenounceSpokeUserPositionManagerRequest, type RepayActivity, RepayActivityFragment, type RepayAmountInputWithPermit, type RepayErc20AmountInputWithPermit, RepayQuery, type RepayRequest, type RepaySignedPermitInput, type RepayWithSupply, type RepayWithSupplyActivity, RepayWithSupplyActivityFragment, RepayWithSupplyFragment, RepayWithSupplyKind, RepayWithSupplyQuoteQuery, type RepayWithSupplyQuoteRequest, type RepayWithSupplyQuoteResult, RepayWithSupplyQuoteResultFragment, type RequestOf, type Reserve, type ReserveAmountInput, type ReserveAmountInputWithPermit, type ReserveErc20AmountInput, type ReserveErc20AmountInputWithPermit, ReserveFragment, type ReserveId, type ReserveIdParts, type ReserveInfo, ReserveInfoFragment, type ReserveInput, ReserveQuery, type ReserveRequest, type ReserveRequestQuery, type ReserveSettings, ReserveSettingsFragment, type ReserveStatus, ReserveStatusFragment, type ReserveSummary, ReserveSummaryFragment, type ReserveUserState, ReserveUserStateFragment, ReservesQuery, type ReservesRequest, ReservesRequestFilter, type ReservesRequestOrderBy, type ReservesRequestQuery, type Reward, RewardFragment, type RewardId, SetSpokeUserPositionManagerQuery, type SetSpokeUserPositionManagerRequest, SetUserSuppliesAsCollateralQuery, type SetUserSuppliesAsCollateralRequest, type Spoke, SpokeFragment, type SpokeId, type SpokeIdParts, type SpokeInput, type SpokePositionManager, SpokePositionManagerFragment, SpokePositionManagersQuery, type SpokePositionManagersRequest, SpokeQuery, type SpokeRequest, type SpokeRequestQuery, type SpokeTokenInput, type SpokeUserPositionManager, SpokeUserPositionManagerFragment, SpokeUserPositionManagersQuery, type SpokeUserPositionManagersRequest, SpokesQuery, type SpokesRequest, type SpokesRequestQuery, type StableVault, type StableVaultAmountInput, type StableVaultAssignRateInput, StableVaultAssignRateQuery, type StableVaultAssignRateRequest, StableVaultClaimStatus, type StableVaultClaimStatusInput, StableVaultClaimStatusQuery, type StableVaultClaimStatusRequest, type StableVaultClaimSurplusInput, StableVaultClaimSurplusQuery, type StableVaultClaimSurplusRequest, type StableVaultDepositExecutionPlan, StableVaultDepositExecutionPlanFragment, type StableVaultDepositInput, StableVaultDepositQuery, type StableVaultDepositRequest, StableVaultFragment, type StableVaultId, type StableVaultInput, type StableVaultMovementsInput, StableVaultMovementsQuery, type StableVaultMovementsRequest, type StableVaultPendingAvailability, StableVaultPendingAvailabilityFragment, StableVaultQuery, type StableVaultRateUsersInput, StableVaultRateUsersQuery, type StableVaultRateUsersRequest, type StableVaultRates, StableVaultRatesFragment, type StableVaultRequest, type StableVaultRequestInput, type StableVaultSummary, StableVaultSummaryFragment, type StableVaultUnassignRateInput, StableVaultUnassignRateQuery, type StableVaultUnassignRateRequest, type StableVaultUserPosition, StableVaultUserPositionFragment, type StableVaultUserPositionId, type StableVaultUserPositionsInput, StableVaultUserPositionsQuery, type StableVaultUserPositionsRequest, type StableVaultUserPositionsRequestFilter, type StableVaultWithdrawClaim, StableVaultWithdrawClaimFragment, type StableVaultWithdrawClaimId, type StableVaultWithdrawExecutionPlan, StableVaultWithdrawExecutionPlanFragment, type StableVaultWithdrawInput, StableVaultWithdrawQuery, type StableVaultWithdrawRedeemExecutionPlan, StableVaultWithdrawRedeemExecutionPlanFragment, type StableVaultWithdrawRedeemInput, StableVaultWithdrawRedeemMutation, type StableVaultWithdrawRedeemRequest, type StableVaultWithdrawRequest, StableVaultsQuery, type StableVaultsRequest, type StableVaultsRequestInput, type SupplyActivity, SupplyActivityFragment, SupplyApyHistoryQuery, type SupplyApyHistoryRequest, type SupplyPoints, SupplyPointsFragment, SupplyQuery, type SupplyRequest, type SupplySwap, type SupplySwapActivity, SupplySwapActivityFragment, SupplySwapFragment, SupplySwapKind, SupplySwapQuoteQuery, type SupplySwapQuoteRequest, type SupplySwapQuoteResult, SupplySwapQuoteResultFragment, type SurplusClaim, SwapActivityStatus, type SwapByIntent, SwapByIntentFragment, type SwapByIntentInput, type SwapByIntentWithApprovalRequired, SwapByIntentWithApprovalRequiredFragment, type SwapByTransaction, SwapByTransactionFragment, type SwapByTransactionWithApprovalRequired, SwapByTransactionWithApprovalRequiredFragment, type SwapCancelled, SwapCancelledFragment, type SwapCancelledResult, SwapCancelledResultFragment, type SwapErc20Input, type SwapExecutionPlan, SwapExecutionPlanFragment, type SwapExpired, SwapExpiredFragment, type SwapFulfilled, SwapFulfilledFragment, type SwapId, SwapMutation, type SwapOpen, SwapOpenFragment, type SwapOperation, SwapOperationFragment, SwapOrderClass, type SwapPendingSignature, SwapPendingSignatureFragment, type SwapQuote, type SwapQuoteCosts, SwapQuoteCostsFragment, SwapQuoteFragment, type SwapQuoteId, type SwapReceipt, SwapReceiptFragment, type SwapRequest, type SwapStatus, SwapStatusFilter, SwapStatusFragment, SwapStatusQuery, type SwapStatusRequest, type SwapTokenInput, type SwapTransactionRequest, SwapTransactionRequestFragment, type SwapTypedData, SwapTypedDataFragment, type SwapWithTransactionInput, type SwappableTokenInput, SwappableTokensQuery, type SwappableTokensRequest, type SwappableTokensRequestQuery, TimeWindow, type Token, type TokenAmount, TokenAmountFragment, TokenCategory, TokenFragment, type TokenInfo, TokenInfoFragment, type TokenInfoId, type TokenInput, type TokenMovement, type TokenMovementAllocate, TokenMovementAllocateFragment, type TokenMovementBridgeIn, TokenMovementBridgeInFragment, type TokenMovementBridgeOut, TokenMovementBridgeOutFragment, type TokenMovementDeallocate, TokenMovementDeallocateFragment, TokenMovementFragment, type TokenMovementId, type TokenMovementRebalance, TokenMovementRebalanceFragment, type TokenMovementRecord, TokenMovementRecordFragment, TokenMovementStatus, type TokenMovementSwap, TokenMovementSwapFragment, type TokenSwap, type TokenSwapActivity, TokenSwapActivityFragment, TokenSwapFragment, TokenSwapKind, TokenSwapQuoteQuery, type TokenSwapQuoteRequest, type TokenSwapQuoteResult, TokenSwapQuoteResultFragment, type TransactionRequest, TransactionRequestFragment, type TxHashInput, UpdateUserPositionConditionsQuery, type UpdateUserPositionConditionsRequest, type UpdatedDynamicConfigActivity, UpdatedDynamicConfigActivityFragment, type UpdatedRiskPremiumActivity, UpdatedRiskPremiumActivityFragment, type UserBalance, UserBalanceFragment, type UserBalanceId, type UserBalancesByChains, type UserBalancesByHub, type UserBalancesByHubId, type UserBalancesBySpoke, type UserBalancesByTokens, type UserBalancesByUserPosition, UserBalancesQuery, type UserBalancesRequest, type UserBalancesRequestFilter, type UserBalancesRequestOrderBy, type UserBorrowItem, UserBorrowItemFragment, type UserBorrowItemId, UserBorrowsQuery, type UserBorrowsRequest, type UserBorrowsRequestOrderBy, type UserBorrowsRequestQuery, type UserChains, type UserClaimableReward, UserClaimableRewardFragment, UserClaimableRewardsQuery, type UserClaimableRewardsRequest, type UserHub, type UserHubInput, type UserMerklClaimableReward, UserMerklClaimableRewardFragment, type UserPosition, type UserPositionConditionVariation, UserPositionConditionVariationFragment, UserPositionConditionsUpdate, UserPositionFragment, type UserPositionId, type UserPositionIdParts, UserPositionQuery, type UserPositionRequest, type UserPositionRiskPremium, UserPositionRiskPremiumFragment, UserPositionsQuery, type UserPositionsRequest, type UserPositionsRequestFilter, type UserPositionsRequestOrderBy, type UserRiskPremiumBreakdownItem, UserRiskPremiumBreakdownItemFragment, UserRiskPremiumBreakdownQuery, type UserRiskPremiumBreakdownRequest, type UserRiskPremiumBreakdownRequestQuery, type UserSpokeInput, type UserSummary, type UserSummaryFilter, UserSummaryFragment, type UserSummaryHistoryItem, UserSummaryHistoryItemFragment, UserSummaryHistoryQuery, type UserSummaryHistoryRequest, UserSummaryQuery, type UserSummaryRequest, UserSuppliesQuery, type UserSuppliesRequest, type UserSuppliesRequestOrderBy, type UserSuppliesRequestQuery, type UserSupplyAsCollateral, type UserSupplyItem, UserSupplyItemFragment, type UserSupplyItemId, UserSwapsQuery, type UserSwapsRequest, type UserToken, type UsingAsCollateralActivity, UsingAsCollateralActivityFragment, type WithdrawActivity, WithdrawActivityFragment, WithdrawQuery, type WithdrawRequest, type WithdrawReserveAmountInput, type WithdrawSwap, type WithdrawSwapActivity, WithdrawSwapActivityFragment, WithdrawSwapFragment, WithdrawSwapKind, WithdrawSwapQuoteQuery, type WithdrawSwapQuoteRequest, type WithdrawSwapQuoteResult, WithdrawSwapQuoteResultFragment, assetId, boostedRateId, decodeHubId, decodeReserveId, decodeSpokeId, decodeUserPositionId, encodeHubId, encodeReserveId, encodeSpokeId, encodeUserPositionId, graphql, hubAssetId, hubId, isChainIdsVariant, isERC20PermitSignature, isHubInputVariant, isReserveInputVariant, isSpokeInputVariant, isTokensVariant, isTxHashInputVariant, reserveId, spokeId, stableVaultId, stableVaultUserPositionId, stableVaultWithdrawClaimId, swapId, swapQuoteId, tokenInfoId, tokenMovementId, userBalanceId, userBorrowItemId, userPositionId, userSupplyItemId };
|
|
210454
|
+
export { ActivitiesQuery, type ActivitiesRequest, type ActivitiesRequestQuery, type ActivityItem, ActivityItemFragment, ActivityType, type AmountInput, ApyMetric, type ApySample, ApySampleFragment, type Asset, type AssetAmountWithChange, AssetAmountWithChangeFragment, AssetBorrowHistoryQuery, type AssetBorrowHistoryRequest, type AssetBorrowHistoryRequestQuery, type AssetBorrowSample, AssetBorrowSampleFragment, AssetFragment, type AssetId, AssetPriceHistoryQuery, type AssetPriceHistoryRequest, type AssetPriceHistoryRequestQuery, type AssetPriceSample, AssetPriceSampleFragment, AssetQuery, type AssetRequest, type AssetRequestQuery, type AssetSampleBreakdown, AssetSampleBreakdownFragment, type AssetSummary, AssetSummaryFragment, AssetSupplyHistoryQuery, type AssetSupplyHistoryRequest, type AssetSupplyHistoryRequestQuery, type AssetSupplySample, AssetSupplySampleFragment, type Base64EncodedCompositeId, type BoostedRate, BoostedRateFragment, type BoostedRateId, type BorrowActivity, BorrowActivityFragment, BorrowApyHistoryQuery, type BorrowApyHistoryRequest, type BorrowPoints, BorrowPointsFragment, BorrowQuery, type BorrowRequest, type BorrowSwap, type BorrowSwapActivity, BorrowSwapActivityFragment, BorrowSwapFragment, BorrowSwapKind, BorrowSwapQuoteQuery, type BorrowSwapQuoteRequest, type BorrowSwapQuoteResult, BorrowSwapQuoteResultFragment, type CancelIntentSwapInput, type CancelSwapExecutionPlan, CancelSwapExecutionPlanFragment, CancelSwapMutation, type CancelSwapRequest, type Chain, ChainFragment, ChainQuery, type ChainRequest, type ChainTokenCategories, type ChainTokenInput, ChainsFilter, ChainsQuery, type ChainsRequest, type ChainsRequestQuery, ClaimRewardsQuery, type ClaimRewardsRequest, type CollateralFactorVariation, CollateralFactorVariationFragment, CollateralMetric, Currency, type DecimalNumber, DecimalNumberFragment, type DecimalNumberWithChange, DecimalNumberWithChangeFragment, type DomainData, DomainDataFragment, type ERC20PermitSignature, type Erc20Amount, Erc20AmountFragment, type Erc20Approval, Erc20ApprovalFragment, type Erc20ApprovalRequired, Erc20ApprovalRequiredFragment, type Erc20Input, type Erc20Token, Erc20TokenFragment, type ExchangeAmount, ExchangeAmountFragment, type ExchangeAmountVariation, ExchangeAmountVariationFragment, type ExchangeAmountWithChange, ExchangeAmountWithChangeFragment, ExchangeRateQuery, type ExchangeRateRequest, type ExchangeRateRequestFrom, type ExecutionPlan, ExecutionPlanFragment, type ExtendWithOpaqueVariant, type FragmentDocumentFor, type FromQuoteDebtSwapQuoteInput, type FromQuoteRepayWithSupplyQuoteInput, type FromQuoteSupplySwapQuoteInput, type FromQuoteWithdrawSwapQuoteInput, HasProcessedKnownTransactionQuery, type HasProcessedKnownTransactionRequest, type HealthFactorError, HealthFactorErrorFragment, type HealthFactorResult, HealthFactorResultFragment, type HealthFactorVariation, HealthFactorVariationFragment, type HealthFactorWithChange, HealthFactorWithChangeFragment, HealthQuery, type Hub, type HubAsset, HubAssetFragment, type HubAssetId, type HubAssetInterestRateModelPoint, HubAssetInterestRateModelPointFragment, HubAssetInterestRateModelQuery, type HubAssetInterestRateModelRequest, type HubAssetInterestRateModelRequestQuery, type HubAssetSettings, HubAssetSettingsFragment, type HubAssetSummary, HubAssetSummaryFragment, type HubAssetUserState, HubAssetUserStateFragment, HubAssetsQuery, type HubAssetsRequest, type HubAssetsRequestOrderBy, type HubAssetsRequestQuery, HubFragment, type HubId, type HubIdParts, type HubIdTokenInput, type HubInput, HubQuery, type HubRequest, type HubRequestQuery, type HubSummary, HubSummaryFragment, HubSummaryHistoryQuery, type HubSummaryHistoryRequest, type HubSummaryHistoryRequestQuery, type HubSummarySample, HubSummarySampleFragment, type HubTokenInput, HubsQuery, type HubsRequest, type HubsRequestOrderBy, type HubsRequestQuery, type ID, type InsufficientBalanceError, InsufficientBalanceErrorFragment, type InsufficientLiquidityError, InsufficientLiquidityErrorFragment, type LimitDebtSwapQuoteInput, type LimitOrderTokenSwapQuoteInput, type LimitRepayWithSupplyQuoteInput, type LimitSupplySwapQuoteInput, type LimitWithdrawSwapQuoteInput, type LiquidateExactAmountWithPermit, type LiquidatePositionDebtAmount, type LiquidatePositionExecutionPlan, LiquidatePositionExecutionPlanFragment, LiquidatePositionQuery, type LiquidatePositionRequest, type LiquidatedActivity, LiquidatedActivityFragment, type LiquidationFeeVariation, LiquidationFeeVariationFragment, type MarketDebtSwapQuoteInput, type MarketOrderTokenSwapFromQuoteInput, type MarketOrderTokenSwapQuoteInput, type MarketRepayWithSupplyQuoteInput, type MarketSupplySwapQuoteInput, type MarketWithdrawSwapQuoteInput, type MaxLiquidationBonusVariation, MaxLiquidationBonusVariationFragment, type MerklBorrowReward, MerklBorrowRewardFragment, type MerklCriteria, MerklCriteriaFragment, type MerklGenericCriteria, MerklGenericCriteriaFragment, type MerklSupplyReward, MerklSupplyRewardFragment, type NativeAmount, NativeAmountFragment, type NativeToken, NativeTokenFragment, type OnChainHubAssetId, type OnChainReserveId, type OpaqueEnumVariant, OperationType, OrderDirection, PageSize, type PaginatedActivitiesResult, PaginatedActivitiesResultFragment, type PaginatedReserveHoldersResult, type PaginatedResultInfo, PaginatedResultInfoFragment, type PaginatedSpokePositionManagerResult, PaginatedSpokePositionManagerResultFragment, type PaginatedSpokeUserPositionManagerResult, PaginatedSpokeUserPositionManagerResultFragment, type PaginatedStableVaultMovementsResult, PaginatedStableVaultMovementsResultFragment, type PaginatedStableVaultRateUsersResult, PaginatedStableVaultRateUsersResultFragment, type PaginatedUserSwapsResult, PaginatedUserSwapsResultFragment, type PercentNumber, type PercentNumberChangeSnapshot, PercentNumberChangeSnapshotFragment, PercentNumberFragment, type PercentNumberVariation, PercentNumberVariationFragment, type PercentNumberWithChange, PercentNumberWithChangeFragment, type PermitTypedData, PermitTypedDataFragment, type PointsCriteria, PointsCriteriaFragment, type PointsGenericCriteria, PointsGenericCriteriaFragment, type PointsProgram, PointsProgramFragment, type PositionAmount, PositionAmountFragment, type PositionSwapAdapterContractApproval, PositionSwapAdapterContractApprovalFragment, type PositionSwapApproval, PositionSwapApprovalFragment, type PositionSwapByIntentApprovalsRequired, PositionSwapByIntentApprovalsRequiredFragment, type PositionSwapPositionManagerApproval, PositionSwapPositionManagerApprovalFragment, type PositionSwapSetCollateralApproval, PositionSwapSetCollateralApprovalFragment, type PreContractActionRequired, PreContractActionRequiredFragment, PreparePositionSwapQuery, type PreparePositionSwapRequest, type PreparePositionSwapResult, PreparePositionSwapResultFragment, PrepareSwapCancelQuery, type PrepareSwapCancelRequest, type PrepareSwapCancelResult, PrepareSwapCancelResultFragment, type PrepareSwapOrder, PrepareSwapOrderFragment, PrepareTokenSwapQuery, type PrepareTokenSwapRequest, type PrepareTokenSwapResult, PrepareTokenSwapResultFragment, type PreviewAction, type PreviewBorrowPoints, PreviewBorrowPointsFragment, type PreviewMerklBorrowReward, PreviewMerklBorrowRewardFragment, type PreviewMerklSupplyReward, PreviewMerklSupplyRewardFragment, PreviewQuery, type PreviewRequest, type PreviewReward, PreviewRewardFragment, type PreviewRewardOutcome, PreviewRewardOutcomeFragment, type PreviewSupplyPoints, PreviewSupplyPointsFragment, type PreviewUserPosition, PreviewUserPositionFragment, ProtocolHistoryQuery, type ProtocolHistoryRequest, type ProtocolHistorySample, ProtocolHistorySampleFragment, QuoteAccuracy, RenounceSpokeUserPositionManagerQuery, type RenounceSpokeUserPositionManagerRequest, type RepayActivity, RepayActivityFragment, type RepayAmountInputWithPermit, type RepayErc20AmountInputWithPermit, RepayQuery, type RepayRequest, type RepaySignedPermitInput, type RepayWithSupply, type RepayWithSupplyActivity, RepayWithSupplyActivityFragment, RepayWithSupplyFragment, RepayWithSupplyKind, RepayWithSupplyQuoteQuery, type RepayWithSupplyQuoteRequest, type RepayWithSupplyQuoteResult, RepayWithSupplyQuoteResultFragment, type RequestOf, type Reserve, type ReserveAmountInput, type ReserveAmountInputWithPermit, type ReserveErc20AmountInput, type ReserveErc20AmountInputWithPermit, ReserveFragment, type ReserveHolder, ReserveHolderFragment, ReserveHoldersFilter, type ReserveHoldersOrderBy, ReserveHoldersQuery, type ReserveHoldersRequest, type ReserveId, type ReserveIdParts, type ReserveInfo, ReserveInfoFragment, type ReserveInput, ReserveQuery, type ReserveRequest, type ReserveRequestQuery, type ReserveSettings, ReserveSettingsFragment, type ReserveStatus, ReserveStatusFragment, type ReserveSummary, ReserveSummaryFragment, type ReserveUserState, ReserveUserStateFragment, ReservesQuery, type ReservesRequest, ReservesRequestFilter, type ReservesRequestOrderBy, type ReservesRequestQuery, type Reward, RewardFragment, type RewardId, SetSpokeUserPositionManagerQuery, type SetSpokeUserPositionManagerRequest, SetUserSuppliesAsCollateralQuery, type SetUserSuppliesAsCollateralRequest, type Spoke, SpokeFragment, type SpokeId, type SpokeIdParts, type SpokeInput, type SpokePositionManager, SpokePositionManagerFragment, SpokePositionManagersQuery, type SpokePositionManagersRequest, SpokeQuery, type SpokeRequest, type SpokeRequestQuery, type SpokeTokenInput, type SpokeUserPositionManager, SpokeUserPositionManagerFragment, SpokeUserPositionManagersQuery, type SpokeUserPositionManagersRequest, SpokesQuery, type SpokesRequest, type SpokesRequestQuery, type StableVault, type StableVaultAmountInput, type StableVaultAssignRateInput, StableVaultAssignRateQuery, type StableVaultAssignRateRequest, StableVaultClaimStatus, type StableVaultClaimStatusInput, StableVaultClaimStatusQuery, type StableVaultClaimStatusRequest, type StableVaultClaimSurplusInput, StableVaultClaimSurplusQuery, type StableVaultClaimSurplusRequest, type StableVaultDepositExecutionPlan, StableVaultDepositExecutionPlanFragment, type StableVaultDepositInput, StableVaultDepositQuery, type StableVaultDepositRequest, StableVaultFragment, type StableVaultId, type StableVaultInput, type StableVaultMovementsInput, StableVaultMovementsQuery, type StableVaultMovementsRequest, type StableVaultPendingAvailability, StableVaultPendingAvailabilityFragment, StableVaultQuery, type StableVaultRateUsersInput, StableVaultRateUsersQuery, type StableVaultRateUsersRequest, type StableVaultRates, StableVaultRatesFragment, type StableVaultRequest, type StableVaultRequestInput, type StableVaultSummary, StableVaultSummaryFragment, type StableVaultUnassignRateInput, StableVaultUnassignRateQuery, type StableVaultUnassignRateRequest, type StableVaultUserPosition, StableVaultUserPositionFragment, type StableVaultUserPositionId, type StableVaultUserPositionsInput, StableVaultUserPositionsQuery, type StableVaultUserPositionsRequest, type StableVaultUserPositionsRequestFilter, type StableVaultWithdrawClaim, StableVaultWithdrawClaimFragment, type StableVaultWithdrawClaimId, type StableVaultWithdrawExecutionPlan, StableVaultWithdrawExecutionPlanFragment, type StableVaultWithdrawInput, StableVaultWithdrawQuery, type StableVaultWithdrawRedeemExecutionPlan, StableVaultWithdrawRedeemExecutionPlanFragment, type StableVaultWithdrawRedeemInput, StableVaultWithdrawRedeemMutation, type StableVaultWithdrawRedeemRequest, type StableVaultWithdrawRequest, StableVaultsQuery, type StableVaultsRequest, type StableVaultsRequestInput, type SupplyActivity, SupplyActivityFragment, SupplyApyHistoryQuery, type SupplyApyHistoryRequest, type SupplyPoints, SupplyPointsFragment, SupplyQuery, type SupplyRequest, type SupplySwap, type SupplySwapActivity, SupplySwapActivityFragment, SupplySwapFragment, SupplySwapKind, SupplySwapQuoteQuery, type SupplySwapQuoteRequest, type SupplySwapQuoteResult, SupplySwapQuoteResultFragment, type SurplusClaim, SwapActivityStatus, type SwapByIntent, SwapByIntentFragment, type SwapByIntentInput, type SwapByIntentWithApprovalRequired, SwapByIntentWithApprovalRequiredFragment, type SwapByTransaction, SwapByTransactionFragment, type SwapByTransactionWithApprovalRequired, SwapByTransactionWithApprovalRequiredFragment, type SwapCancelled, SwapCancelledFragment, type SwapCancelledResult, SwapCancelledResultFragment, type SwapErc20Input, type SwapExecutionPlan, SwapExecutionPlanFragment, type SwapExpired, SwapExpiredFragment, type SwapFulfilled, SwapFulfilledFragment, type SwapId, SwapMutation, type SwapOpen, SwapOpenFragment, type SwapOperation, SwapOperationFragment, SwapOrderClass, type SwapPendingSignature, SwapPendingSignatureFragment, type SwapQuote, type SwapQuoteCosts, SwapQuoteCostsFragment, SwapQuoteFragment, type SwapQuoteId, type SwapReceipt, SwapReceiptFragment, type SwapRequest, type SwapStatus, SwapStatusFilter, SwapStatusFragment, SwapStatusQuery, type SwapStatusRequest, type SwapTokenInput, type SwapTransactionRequest, SwapTransactionRequestFragment, type SwapTypedData, SwapTypedDataFragment, type SwapWithTransactionInput, type SwappableTokenInput, SwappableTokensQuery, type SwappableTokensRequest, type SwappableTokensRequestQuery, TimeWindow, type Token, type TokenAmount, TokenAmountFragment, TokenCategory, TokenFragment, type TokenInfo, TokenInfoFragment, type TokenInfoId, type TokenInput, type TokenMovement, type TokenMovementAllocate, TokenMovementAllocateFragment, type TokenMovementBridgeIn, TokenMovementBridgeInFragment, type TokenMovementBridgeOut, TokenMovementBridgeOutFragment, type TokenMovementDeallocate, TokenMovementDeallocateFragment, TokenMovementFragment, type TokenMovementId, type TokenMovementRebalance, TokenMovementRebalanceFragment, type TokenMovementRecord, TokenMovementRecordFragment, TokenMovementStatus, type TokenMovementSwap, TokenMovementSwapFragment, type TokenSwap, type TokenSwapActivity, TokenSwapActivityFragment, TokenSwapFragment, TokenSwapKind, TokenSwapQuoteQuery, type TokenSwapQuoteRequest, type TokenSwapQuoteResult, TokenSwapQuoteResultFragment, type TransactionRequest, TransactionRequestFragment, type TxHashInput, UpdateUserPositionConditionsQuery, type UpdateUserPositionConditionsRequest, type UpdatedDynamicConfigActivity, UpdatedDynamicConfigActivityFragment, type UpdatedRiskPremiumActivity, UpdatedRiskPremiumActivityFragment, type UserBalance, UserBalanceFragment, type UserBalanceId, type UserBalancesByChains, type UserBalancesByHub, type UserBalancesByHubId, type UserBalancesBySpoke, type UserBalancesByTokens, type UserBalancesByUserPosition, UserBalancesQuery, type UserBalancesRequest, type UserBalancesRequestFilter, type UserBalancesRequestOrderBy, type UserBorrowItem, UserBorrowItemFragment, type UserBorrowItemId, UserBorrowsQuery, type UserBorrowsRequest, type UserBorrowsRequestOrderBy, type UserBorrowsRequestQuery, type UserChains, type UserClaimableReward, UserClaimableRewardFragment, UserClaimableRewardsQuery, type UserClaimableRewardsRequest, type UserHub, type UserHubInput, type UserMerklClaimableReward, UserMerklClaimableRewardFragment, type UserPosition, type UserPositionConditionVariation, UserPositionConditionVariationFragment, UserPositionConditionsUpdate, UserPositionFragment, type UserPositionId, type UserPositionIdParts, UserPositionQuery, type UserPositionRequest, type UserPositionRiskPremium, UserPositionRiskPremiumFragment, UserPositionsQuery, type UserPositionsRequest, type UserPositionsRequestFilter, type UserPositionsRequestOrderBy, type UserRiskPremiumBreakdownItem, UserRiskPremiumBreakdownItemFragment, UserRiskPremiumBreakdownQuery, type UserRiskPremiumBreakdownRequest, type UserRiskPremiumBreakdownRequestQuery, type UserSpokeInput, type UserSummary, type UserSummaryFilter, UserSummaryFragment, type UserSummaryHistoryItem, UserSummaryHistoryItemFragment, UserSummaryHistoryQuery, type UserSummaryHistoryRequest, UserSummaryQuery, type UserSummaryRequest, UserSuppliesQuery, type UserSuppliesRequest, type UserSuppliesRequestOrderBy, type UserSuppliesRequestQuery, type UserSupplyAsCollateral, type UserSupplyItem, UserSupplyItemFragment, type UserSupplyItemId, UserSwapsQuery, type UserSwapsRequest, type UserToken, type UsingAsCollateralActivity, UsingAsCollateralActivityFragment, type WithdrawActivity, WithdrawActivityFragment, WithdrawQuery, type WithdrawRequest, type WithdrawReserveAmountInput, type WithdrawSwap, type WithdrawSwapActivity, WithdrawSwapActivityFragment, WithdrawSwapFragment, WithdrawSwapKind, WithdrawSwapQuoteQuery, type WithdrawSwapQuoteRequest, type WithdrawSwapQuoteResult, WithdrawSwapQuoteResultFragment, assetId, boostedRateId, decodeHubId, decodeReserveId, decodeSpokeId, decodeUserPositionId, encodeHubId, encodeReserveId, encodeSpokeId, encodeUserPositionId, graphql, hubAssetId, hubId, isChainIdsVariant, isERC20PermitSignature, isHubInputVariant, isReserveInputVariant, isSpokeInputVariant, isTokensVariant, isTxHashInputVariant, reserveId, spokeId, stableVaultId, stableVaultUserPositionId, stableVaultWithdrawClaimId, swapId, swapQuoteId, tokenInfoId, tokenMovementId, userBalanceId, userBorrowItemId, userPositionId, userSupplyItemId };
|