@aave/graphql 1.0.2 → 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 +227 -209
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +201 -3
- package/dist/index.d.ts +201 -3
- package/dist/index.js +227 -209
- 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 +6 -1
- package/package.json +1 -1
package/dist/index.d.cts
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; }; } }; }; };
|
|
@@ -437,7 +452,7 @@ type introspection_types = {
|
|
|
437
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; }; } }; }; };
|
|
438
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" }]; };
|
|
439
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; }; } }; }; };
|
|
440
|
-
'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; }; } }; }; };
|
|
441
456
|
'QuoteAccuracy': { name: 'QuoteAccuracy'; enumValues: 'FAST' | 'ACCURATE'; };
|
|
442
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 }]; };
|
|
443
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; }; } }; }; };
|
|
@@ -455,6 +470,9 @@ type introspection_types = {
|
|
|
455
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 }]; };
|
|
456
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 }]; };
|
|
457
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" }]; };
|
|
458
476
|
'ReserveId': unknown;
|
|
459
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; }; } }; }; };
|
|
460
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 }]; };
|
|
@@ -965,6 +983,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
965
983
|
OrderDirection: OrderDirection;
|
|
966
984
|
PageSize: PageSize;
|
|
967
985
|
QuoteAccuracy: QuoteAccuracy;
|
|
986
|
+
ReserveHoldersFilter: ReserveHoldersFilter;
|
|
968
987
|
ReserveId: ReserveId;
|
|
969
988
|
ReservesRequestFilter: ReservesRequestFilter;
|
|
970
989
|
RewardId: RewardId;
|
|
@@ -4954,6 +4973,81 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
|
|
|
4954
4973
|
masked: false;
|
|
4955
4974
|
}>;
|
|
4956
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>;
|
|
4957
5051
|
declare const ReserveInfoFragment: gql_tada.TadaDocumentNode<{
|
|
4958
5052
|
__typename: "ReserveInfo";
|
|
4959
5053
|
id: ReserveId;
|
|
@@ -95227,6 +95321,110 @@ type ReservesRequest = RequestOf<typeof ReservesQuery>;
|
|
|
95227
95321
|
type ReservesRequestOrderBy = ReturnType<typeof graphql.scalar<'ReservesRequestOrderBy'>>;
|
|
95228
95322
|
type ReservesRequestQuery = ReturnType<typeof graphql.scalar<'ReservesRequestQuery'>>;
|
|
95229
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'];
|
|
95230
95428
|
|
|
95231
95429
|
/**
|
|
95232
95430
|
* @internal
|
|
@@ -210253,4 +210451,4 @@ type StableVaultWithdrawRedeemInput = ReturnType<typeof graphql.scalar<'StableVa
|
|
|
210253
210451
|
type StableVaultsRequestInput = ReturnType<typeof graphql.scalar<'StableVaultsRequest'>>;
|
|
210254
210452
|
type SurplusClaim = ReturnType<typeof graphql.scalar<'SurplusClaim'>>;
|
|
210255
210453
|
|
|
210256
|
-
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 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 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 };
|