@aave/graphql 1.0.2 → 1.1.1

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.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; }; } }; }; };
@@ -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 }]; };
@@ -473,9 +491,10 @@ type introspection_types = {
473
491
  'SetSpokeUserPositionManagerRequest': { kind: 'INPUT_OBJECT'; name: 'SetSpokeUserPositionManagerRequest'; 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: 'approve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'signature'; type: { kind: 'INPUT_OBJECT'; name: 'ERC20PermitSignature'; ofType: null; }; defaultValue: null }]; };
474
492
  'SetUserSuppliesAsCollateralRequest': { kind: 'INPUT_OBJECT'; name: 'SetUserSuppliesAsCollateralRequest'; isOneOf: false; inputFields: [{ name: 'changes'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UserSupplyAsCollateral'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
475
493
  'Signature': unknown;
476
- 'Spoke': { kind: 'OBJECT'; name: 'Spoke'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; '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: 'SpokeId'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
494
+ 'Spoke': { kind: 'OBJECT'; name: 'Spoke'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; '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: 'SpokeId'; ofType: null; }; } }; 'liquidationConfig': { name: 'liquidationConfig'; type: { kind: 'OBJECT'; name: 'SpokeLiquidationConfig'; ofType: null; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
477
495
  'SpokeId': unknown;
478
496
  'SpokeInput': { kind: 'INPUT_OBJECT'; name: 'SpokeInput'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }]; };
497
+ 'SpokeLiquidationConfig': { kind: 'OBJECT'; name: 'SpokeLiquidationConfig'; fields: { 'healthFactorForMaxBonus': { name: 'healthFactorForMaxBonus'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'liquidationBonusFactor': { name: 'liquidationBonusFactor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'targetHealthFactor': { name: 'targetHealthFactor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; };
479
498
  'SpokePositionManager': { kind: 'OBJECT'; name: 'SpokePositionManager'; fields: { 'active': { name: 'active'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
480
499
  'SpokePositionManagersRequest': { kind: 'INPUT_OBJECT'; name: 'SpokePositionManagersRequest'; isOneOf: false; inputFields: [{ name: 'spoke'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SpokeId'; ofType: null; }; }; defaultValue: null }, { name: 'includeInactive'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: null }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; };
481
500
  'SpokeRequest': { kind: 'INPUT_OBJECT'; name: 'SpokeRequest'; isOneOf: false; inputFields: [{ name: 'query'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SpokeRequestQuery'; ofType: null; }; }; defaultValue: null }]; };
@@ -965,6 +984,7 @@ declare const graphql: initGraphQLTada<{
965
984
  OrderDirection: OrderDirection;
966
985
  PageSize: PageSize;
967
986
  QuoteAccuracy: QuoteAccuracy;
987
+ ReserveHoldersFilter: ReserveHoldersFilter;
968
988
  ReserveId: ReserveId;
969
989
  ReservesRequestFilter: ReservesRequestFilter;
970
990
  RewardId: RewardId;
@@ -3496,6 +3516,18 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
3496
3516
  categories: TokenCategory[];
3497
3517
  };
3498
3518
  };
3519
+ liquidationConfig: {
3520
+ __typename: "SpokeLiquidationConfig";
3521
+ targetHealthFactor: _aave_types.BigDecimal;
3522
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
3523
+ liquidationBonusFactor: {
3524
+ __typename: "PercentNumber";
3525
+ onChainValue: bigint;
3526
+ decimals: number;
3527
+ value: _aave_types.BigDecimal;
3528
+ normalized: _aave_types.BigDecimal;
3529
+ };
3530
+ } | null;
3499
3531
  };
3500
3532
  chain: {
3501
3533
  __typename: "Chain";
@@ -4954,6 +4986,81 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
4954
4986
  masked: false;
4955
4987
  }>;
4956
4988
  type Reserve = FragmentOf<typeof ReserveFragment>;
4989
+ declare const ReserveHolderFragment: gql_tada.TadaDocumentNode<{
4990
+ __typename: "ReserveHolder";
4991
+ address: _aave_types.EvmAddress;
4992
+ amount: {
4993
+ __typename: "Erc20Amount";
4994
+ token: {
4995
+ __typename: "Erc20Token";
4996
+ info: {
4997
+ __typename: "TokenInfo";
4998
+ id: TokenInfoId;
4999
+ name: string;
5000
+ symbol: string;
5001
+ icon: string;
5002
+ decimals: number;
5003
+ categories: TokenCategory[];
5004
+ };
5005
+ address: _aave_types.EvmAddress;
5006
+ chain: {
5007
+ __typename: "Chain";
5008
+ name: string;
5009
+ icon: string;
5010
+ chainId: _aave_types.ChainId;
5011
+ rpcUrl: string;
5012
+ explorerUrl: string;
5013
+ isTestnet: boolean;
5014
+ isFork: boolean;
5015
+ nativeWrappedToken: _aave_types.EvmAddress;
5016
+ nativeGateway: _aave_types.EvmAddress;
5017
+ signatureGateway: _aave_types.EvmAddress;
5018
+ nativeInfo: {
5019
+ __typename: "TokenInfo";
5020
+ id: TokenInfoId;
5021
+ name: string;
5022
+ symbol: string;
5023
+ icon: string;
5024
+ decimals: number;
5025
+ categories: TokenCategory[];
5026
+ };
5027
+ };
5028
+ isWrappedNativeToken: boolean;
5029
+ };
5030
+ amount: {
5031
+ __typename: "DecimalNumber";
5032
+ onChainValue: bigint;
5033
+ decimals: number;
5034
+ value: _aave_types.BigDecimal;
5035
+ };
5036
+ exchange: {
5037
+ __typename: "ExchangeAmount";
5038
+ value: _aave_types.BigDecimal;
5039
+ name: string;
5040
+ symbol: string;
5041
+ icon: string;
5042
+ decimals: number;
5043
+ };
5044
+ exchangeRate: {
5045
+ __typename: "DecimalNumber";
5046
+ onChainValue: bigint;
5047
+ decimals: number;
5048
+ value: _aave_types.BigDecimal;
5049
+ };
5050
+ };
5051
+ weight: {
5052
+ __typename: "PercentNumber";
5053
+ onChainValue: bigint;
5054
+ decimals: number;
5055
+ value: _aave_types.BigDecimal;
5056
+ normalized: _aave_types.BigDecimal;
5057
+ };
5058
+ }, {}, {
5059
+ fragment: "ReserveHolder";
5060
+ on: "ReserveHolder";
5061
+ masked: false;
5062
+ }>;
5063
+ type ReserveHolder = FragmentOf<typeof ReserveHolderFragment>;
4957
5064
  declare const ReserveInfoFragment: gql_tada.TadaDocumentNode<{
4958
5065
  __typename: "ReserveInfo";
4959
5066
  id: ReserveId;
@@ -5716,6 +5823,23 @@ type UserMerklClaimableReward = FragmentOf<typeof UserMerklClaimableRewardFragme
5716
5823
  type UserClaimableReward = ExtendWithOpaqueType<UserMerklClaimableReward>;
5717
5824
  declare const UserClaimableRewardFragment: FragmentDocumentFor<UserClaimableReward, 'UserClaimableReward'>;
5718
5825
 
5826
+ declare const SpokeLiquidationConfigFragment: gql_tada.TadaDocumentNode<{
5827
+ __typename: "SpokeLiquidationConfig";
5828
+ targetHealthFactor: _aave_types.BigDecimal;
5829
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
5830
+ liquidationBonusFactor: {
5831
+ __typename: "PercentNumber";
5832
+ onChainValue: bigint;
5833
+ decimals: number;
5834
+ value: _aave_types.BigDecimal;
5835
+ normalized: _aave_types.BigDecimal;
5836
+ };
5837
+ }, {}, {
5838
+ fragment: "SpokeLiquidationConfig";
5839
+ on: "SpokeLiquidationConfig";
5840
+ masked: false;
5841
+ }>;
5842
+ type SpokeLiquidationConfig = FragmentOf<typeof SpokeLiquidationConfigFragment>;
5719
5843
  declare const SpokeFragment: gql_tada.TadaDocumentNode<{
5720
5844
  __typename: "Spoke";
5721
5845
  id: SpokeId;
@@ -5743,6 +5867,18 @@ declare const SpokeFragment: gql_tada.TadaDocumentNode<{
5743
5867
  categories: TokenCategory[];
5744
5868
  };
5745
5869
  };
5870
+ liquidationConfig: {
5871
+ __typename: "SpokeLiquidationConfig";
5872
+ targetHealthFactor: _aave_types.BigDecimal;
5873
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
5874
+ liquidationBonusFactor: {
5875
+ __typename: "PercentNumber";
5876
+ onChainValue: bigint;
5877
+ decimals: number;
5878
+ value: _aave_types.BigDecimal;
5879
+ normalized: _aave_types.BigDecimal;
5880
+ };
5881
+ } | null;
5746
5882
  }, {}, {
5747
5883
  fragment: "Spoke";
5748
5884
  on: "Spoke";
@@ -83880,6 +84016,18 @@ declare const UserSupplyItemFragment: gql_tada.TadaDocumentNode<{
83880
84016
  categories: TokenCategory[];
83881
84017
  };
83882
84018
  };
84019
+ liquidationConfig: {
84020
+ __typename: "SpokeLiquidationConfig";
84021
+ targetHealthFactor: _aave_types.BigDecimal;
84022
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
84023
+ liquidationBonusFactor: {
84024
+ __typename: "PercentNumber";
84025
+ onChainValue: bigint;
84026
+ decimals: number;
84027
+ value: _aave_types.BigDecimal;
84028
+ normalized: _aave_types.BigDecimal;
84029
+ };
84030
+ } | null;
83883
84031
  };
83884
84032
  chain: {
83885
84033
  __typename: "Chain";
@@ -85788,6 +85936,18 @@ declare const UserBorrowItemFragment: gql_tada.TadaDocumentNode<{
85788
85936
  categories: TokenCategory[];
85789
85937
  };
85790
85938
  };
85939
+ liquidationConfig: {
85940
+ __typename: "SpokeLiquidationConfig";
85941
+ targetHealthFactor: _aave_types.BigDecimal;
85942
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
85943
+ liquidationBonusFactor: {
85944
+ __typename: "PercentNumber";
85945
+ onChainValue: bigint;
85946
+ decimals: number;
85947
+ value: _aave_types.BigDecimal;
85948
+ normalized: _aave_types.BigDecimal;
85949
+ };
85950
+ } | null;
85791
85951
  };
85792
85952
  chain: {
85793
85953
  __typename: "Chain";
@@ -87432,6 +87592,18 @@ declare const UserPositionFragment: gql_tada.TadaDocumentNode<{
87432
87592
  categories: TokenCategory[];
87433
87593
  };
87434
87594
  };
87595
+ liquidationConfig: {
87596
+ __typename: "SpokeLiquidationConfig";
87597
+ targetHealthFactor: _aave_types.BigDecimal;
87598
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
87599
+ liquidationBonusFactor: {
87600
+ __typename: "PercentNumber";
87601
+ onChainValue: bigint;
87602
+ decimals: number;
87603
+ value: _aave_types.BigDecimal;
87604
+ normalized: _aave_types.BigDecimal;
87605
+ };
87606
+ } | null;
87435
87607
  };
87436
87608
  user: _aave_types.EvmAddress;
87437
87609
  createdAt: Date;
@@ -92199,6 +92371,18 @@ declare const ReserveQuery: gql_tada.TadaDocumentNode<{
92199
92371
  categories: TokenCategory[];
92200
92372
  };
92201
92373
  };
92374
+ liquidationConfig: {
92375
+ __typename: "SpokeLiquidationConfig";
92376
+ targetHealthFactor: _aave_types.BigDecimal;
92377
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
92378
+ liquidationBonusFactor: {
92379
+ __typename: "PercentNumber";
92380
+ onChainValue: bigint;
92381
+ decimals: number;
92382
+ value: _aave_types.BigDecimal;
92383
+ normalized: _aave_types.BigDecimal;
92384
+ };
92385
+ } | null;
92202
92386
  };
92203
92387
  chain: {
92204
92388
  __typename: "Chain";
@@ -93702,6 +93886,18 @@ declare const ReservesQuery: gql_tada.TadaDocumentNode<{
93702
93886
  categories: TokenCategory[];
93703
93887
  };
93704
93888
  };
93889
+ liquidationConfig: {
93890
+ __typename: "SpokeLiquidationConfig";
93891
+ targetHealthFactor: _aave_types.BigDecimal;
93892
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
93893
+ liquidationBonusFactor: {
93894
+ __typename: "PercentNumber";
93895
+ onChainValue: bigint;
93896
+ decimals: number;
93897
+ value: _aave_types.BigDecimal;
93898
+ normalized: _aave_types.BigDecimal;
93899
+ };
93900
+ } | null;
93705
93901
  };
93706
93902
  chain: {
93707
93903
  __typename: "Chain";
@@ -95227,6 +95423,110 @@ type ReservesRequest = RequestOf<typeof ReservesQuery>;
95227
95423
  type ReservesRequestOrderBy = ReturnType<typeof graphql.scalar<'ReservesRequestOrderBy'>>;
95228
95424
  type ReservesRequestQuery = ReturnType<typeof graphql.scalar<'ReservesRequestQuery'>>;
95229
95425
  type ChainTokenCategories = ReturnType<typeof graphql.scalar<'ChainTokenCategories'>>;
95426
+ /**
95427
+ * @internal
95428
+ */
95429
+ declare const ReserveHoldersQuery: gql_tada.TadaDocumentNode<{
95430
+ value: {
95431
+ items: {
95432
+ __typename: "ReserveHolder";
95433
+ address: _aave_types.EvmAddress;
95434
+ amount: {
95435
+ __typename: "Erc20Amount";
95436
+ token: {
95437
+ __typename: "Erc20Token";
95438
+ info: {
95439
+ __typename: "TokenInfo";
95440
+ id: TokenInfoId;
95441
+ name: string;
95442
+ symbol: string;
95443
+ icon: string;
95444
+ decimals: number;
95445
+ categories: TokenCategory[];
95446
+ };
95447
+ address: _aave_types.EvmAddress;
95448
+ chain: {
95449
+ __typename: "Chain";
95450
+ name: string;
95451
+ icon: string;
95452
+ chainId: _aave_types.ChainId;
95453
+ rpcUrl: string;
95454
+ explorerUrl: string;
95455
+ isTestnet: boolean;
95456
+ isFork: boolean;
95457
+ nativeWrappedToken: _aave_types.EvmAddress;
95458
+ nativeGateway: _aave_types.EvmAddress;
95459
+ signatureGateway: _aave_types.EvmAddress;
95460
+ nativeInfo: {
95461
+ __typename: "TokenInfo";
95462
+ id: TokenInfoId;
95463
+ name: string;
95464
+ symbol: string;
95465
+ icon: string;
95466
+ decimals: number;
95467
+ categories: TokenCategory[];
95468
+ };
95469
+ };
95470
+ isWrappedNativeToken: boolean;
95471
+ };
95472
+ amount: {
95473
+ __typename: "DecimalNumber";
95474
+ onChainValue: bigint;
95475
+ decimals: number;
95476
+ value: _aave_types.BigDecimal;
95477
+ };
95478
+ exchange: {
95479
+ __typename: "ExchangeAmount";
95480
+ value: _aave_types.BigDecimal;
95481
+ name: string;
95482
+ symbol: string;
95483
+ icon: string;
95484
+ decimals: number;
95485
+ };
95486
+ exchangeRate: {
95487
+ __typename: "DecimalNumber";
95488
+ onChainValue: bigint;
95489
+ decimals: number;
95490
+ value: _aave_types.BigDecimal;
95491
+ };
95492
+ };
95493
+ weight: {
95494
+ __typename: "PercentNumber";
95495
+ onChainValue: bigint;
95496
+ decimals: number;
95497
+ value: _aave_types.BigDecimal;
95498
+ normalized: _aave_types.BigDecimal;
95499
+ };
95500
+ }[];
95501
+ pageInfo: {
95502
+ __typename: "PaginatedResultInfo";
95503
+ prev: _aave_types.Cursor | null;
95504
+ next: _aave_types.Cursor | null;
95505
+ };
95506
+ };
95507
+ }, {
95508
+ currency: Currency;
95509
+ request: {
95510
+ cursor?: _aave_types.Cursor | null | undefined;
95511
+ pageSize?: PageSize | null | undefined;
95512
+ orderBy?: {
95513
+ amount?: OrderDirection | null | undefined;
95514
+ } | null | undefined;
95515
+ filter?: ReserveHoldersFilter | null | undefined;
95516
+ reserve: {
95517
+ reserveId: ReserveId;
95518
+ } | {
95519
+ reserveInput: {
95520
+ onChainId: OnChainReserveId;
95521
+ spoke: _aave_types.EvmAddress;
95522
+ chainId: _aave_types.ChainId;
95523
+ };
95524
+ };
95525
+ };
95526
+ }, void>;
95527
+ type ReserveHoldersRequest = RequestOf<typeof ReserveHoldersQuery>;
95528
+ type ReserveHoldersOrderBy = ReturnType<typeof graphql.scalar<'ReserveHoldersOrderBy'>>;
95529
+ type PaginatedReserveHoldersResult = ResultOf<typeof ReserveHoldersQuery>['value'];
95230
95530
 
95231
95531
  /**
95232
95532
  * @internal
@@ -95424,6 +95724,18 @@ declare const SpokeQuery: gql_tada.TadaDocumentNode<{
95424
95724
  categories: TokenCategory[];
95425
95725
  };
95426
95726
  };
95727
+ liquidationConfig: {
95728
+ __typename: "SpokeLiquidationConfig";
95729
+ targetHealthFactor: _aave_types.BigDecimal;
95730
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
95731
+ liquidationBonusFactor: {
95732
+ __typename: "PercentNumber";
95733
+ onChainValue: bigint;
95734
+ decimals: number;
95735
+ value: _aave_types.BigDecimal;
95736
+ normalized: _aave_types.BigDecimal;
95737
+ };
95738
+ } | null;
95427
95739
  } | null;
95428
95740
  }, {
95429
95741
  request: {
@@ -95470,6 +95782,18 @@ declare const SpokesQuery: gql_tada.TadaDocumentNode<{
95470
95782
  categories: TokenCategory[];
95471
95783
  };
95472
95784
  };
95785
+ liquidationConfig: {
95786
+ __typename: "SpokeLiquidationConfig";
95787
+ targetHealthFactor: _aave_types.BigDecimal;
95788
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
95789
+ liquidationBonusFactor: {
95790
+ __typename: "PercentNumber";
95791
+ onChainValue: bigint;
95792
+ decimals: number;
95793
+ value: _aave_types.BigDecimal;
95794
+ normalized: _aave_types.BigDecimal;
95795
+ };
95796
+ } | null;
95473
95797
  }[];
95474
95798
  }, {
95475
95799
  request: {
@@ -170697,6 +171021,18 @@ declare const BorrowActivityFragment: gql_tada.TadaDocumentNode<{
170697
171021
  categories: TokenCategory[];
170698
171022
  };
170699
171023
  };
171024
+ liquidationConfig: {
171025
+ __typename: "SpokeLiquidationConfig";
171026
+ targetHealthFactor: _aave_types.BigDecimal;
171027
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
171028
+ liquidationBonusFactor: {
171029
+ __typename: "PercentNumber";
171030
+ onChainValue: bigint;
171031
+ decimals: number;
171032
+ value: _aave_types.BigDecimal;
171033
+ normalized: _aave_types.BigDecimal;
171034
+ };
171035
+ } | null;
170700
171036
  };
170701
171037
  reserve: {
170702
171038
  __typename: "ReserveInfo";
@@ -171264,6 +171600,18 @@ declare const SupplyActivityFragment: gql_tada.TadaDocumentNode<{
171264
171600
  categories: TokenCategory[];
171265
171601
  };
171266
171602
  };
171603
+ liquidationConfig: {
171604
+ __typename: "SpokeLiquidationConfig";
171605
+ targetHealthFactor: _aave_types.BigDecimal;
171606
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
171607
+ liquidationBonusFactor: {
171608
+ __typename: "PercentNumber";
171609
+ onChainValue: bigint;
171610
+ decimals: number;
171611
+ value: _aave_types.BigDecimal;
171612
+ normalized: _aave_types.BigDecimal;
171613
+ };
171614
+ } | null;
171267
171615
  };
171268
171616
  reserve: {
171269
171617
  __typename: "ReserveInfo";
@@ -171831,6 +172179,18 @@ declare const WithdrawActivityFragment: gql_tada.TadaDocumentNode<{
171831
172179
  categories: TokenCategory[];
171832
172180
  };
171833
172181
  };
172182
+ liquidationConfig: {
172183
+ __typename: "SpokeLiquidationConfig";
172184
+ targetHealthFactor: _aave_types.BigDecimal;
172185
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
172186
+ liquidationBonusFactor: {
172187
+ __typename: "PercentNumber";
172188
+ onChainValue: bigint;
172189
+ decimals: number;
172190
+ value: _aave_types.BigDecimal;
172191
+ normalized: _aave_types.BigDecimal;
172192
+ };
172193
+ } | null;
171834
172194
  };
171835
172195
  reserve: {
171836
172196
  __typename: "ReserveInfo";
@@ -172398,6 +172758,18 @@ declare const RepayActivityFragment: gql_tada.TadaDocumentNode<{
172398
172758
  categories: TokenCategory[];
172399
172759
  };
172400
172760
  };
172761
+ liquidationConfig: {
172762
+ __typename: "SpokeLiquidationConfig";
172763
+ targetHealthFactor: _aave_types.BigDecimal;
172764
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
172765
+ liquidationBonusFactor: {
172766
+ __typename: "PercentNumber";
172767
+ onChainValue: bigint;
172768
+ decimals: number;
172769
+ value: _aave_types.BigDecimal;
172770
+ normalized: _aave_types.BigDecimal;
172771
+ };
172772
+ } | null;
172401
172773
  };
172402
172774
  reserve: {
172403
172775
  __typename: "ReserveInfo";
@@ -172965,6 +173337,18 @@ declare const LiquidatedActivityFragment: gql_tada.TadaDocumentNode<{
172965
173337
  categories: TokenCategory[];
172966
173338
  };
172967
173339
  };
173340
+ liquidationConfig: {
173341
+ __typename: "SpokeLiquidationConfig";
173342
+ targetHealthFactor: _aave_types.BigDecimal;
173343
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
173344
+ liquidationBonusFactor: {
173345
+ __typename: "PercentNumber";
173346
+ onChainValue: bigint;
173347
+ decimals: number;
173348
+ value: _aave_types.BigDecimal;
173349
+ normalized: _aave_types.BigDecimal;
173350
+ };
173351
+ } | null;
172968
173352
  };
172969
173353
  collateralReserve: {
172970
173354
  __typename: "ReserveInfo";
@@ -174038,6 +174422,18 @@ declare const UsingAsCollateralActivityFragment: gql_tada.TadaDocumentNode<{
174038
174422
  categories: TokenCategory[];
174039
174423
  };
174040
174424
  };
174425
+ liquidationConfig: {
174426
+ __typename: "SpokeLiquidationConfig";
174427
+ targetHealthFactor: _aave_types.BigDecimal;
174428
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
174429
+ liquidationBonusFactor: {
174430
+ __typename: "PercentNumber";
174431
+ onChainValue: bigint;
174432
+ decimals: number;
174433
+ value: _aave_types.BigDecimal;
174434
+ normalized: _aave_types.BigDecimal;
174435
+ };
174436
+ } | null;
174041
174437
  };
174042
174438
  reserve: {
174043
174439
  __typename: "ReserveInfo";
@@ -174547,6 +174943,18 @@ declare const UpdatedDynamicConfigActivityFragment: gql_tada.TadaDocumentNode<{
174547
174943
  categories: TokenCategory[];
174548
174944
  };
174549
174945
  };
174946
+ liquidationConfig: {
174947
+ __typename: "SpokeLiquidationConfig";
174948
+ targetHealthFactor: _aave_types.BigDecimal;
174949
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
174950
+ liquidationBonusFactor: {
174951
+ __typename: "PercentNumber";
174952
+ onChainValue: bigint;
174953
+ decimals: number;
174954
+ value: _aave_types.BigDecimal;
174955
+ normalized: _aave_types.BigDecimal;
174956
+ };
174957
+ } | null;
174550
174958
  };
174551
174959
  reserve: {
174552
174960
  __typename: "ReserveInfo";
@@ -175106,6 +175514,18 @@ declare const UpdatedRiskPremiumActivityFragment: gql_tada.TadaDocumentNode<{
175106
175514
  categories: TokenCategory[];
175107
175515
  };
175108
175516
  };
175517
+ liquidationConfig: {
175518
+ __typename: "SpokeLiquidationConfig";
175519
+ targetHealthFactor: _aave_types.BigDecimal;
175520
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
175521
+ liquidationBonusFactor: {
175522
+ __typename: "PercentNumber";
175523
+ onChainValue: bigint;
175524
+ decimals: number;
175525
+ value: _aave_types.BigDecimal;
175526
+ normalized: _aave_types.BigDecimal;
175527
+ };
175528
+ } | null;
175109
175529
  };
175110
175530
  premium: {
175111
175531
  __typename: "PercentNumberChangeSnapshot";
@@ -179276,6 +179696,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
179276
179696
  categories: TokenCategory[];
179277
179697
  };
179278
179698
  };
179699
+ liquidationConfig: {
179700
+ __typename: "SpokeLiquidationConfig";
179701
+ targetHealthFactor: _aave_types.BigDecimal;
179702
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
179703
+ liquidationBonusFactor: {
179704
+ __typename: "PercentNumber";
179705
+ onChainValue: bigint;
179706
+ decimals: number;
179707
+ value: _aave_types.BigDecimal;
179708
+ normalized: _aave_types.BigDecimal;
179709
+ };
179710
+ } | null;
179279
179711
  };
179280
179712
  reserve: {
179281
179713
  __typename: "ReserveInfo";
@@ -180885,6 +181317,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
180885
181317
  categories: TokenCategory[];
180886
181318
  };
180887
181319
  };
181320
+ liquidationConfig: {
181321
+ __typename: "SpokeLiquidationConfig";
181322
+ targetHealthFactor: _aave_types.BigDecimal;
181323
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
181324
+ liquidationBonusFactor: {
181325
+ __typename: "PercentNumber";
181326
+ onChainValue: bigint;
181327
+ decimals: number;
181328
+ value: _aave_types.BigDecimal;
181329
+ normalized: _aave_types.BigDecimal;
181330
+ };
181331
+ } | null;
180888
181332
  };
180889
181333
  collateralReserve: {
180890
181334
  __typename: "ReserveInfo";
@@ -181952,6 +182396,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
181952
182396
  categories: TokenCategory[];
181953
182397
  };
181954
182398
  };
182399
+ liquidationConfig: {
182400
+ __typename: "SpokeLiquidationConfig";
182401
+ targetHealthFactor: _aave_types.BigDecimal;
182402
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
182403
+ liquidationBonusFactor: {
182404
+ __typename: "PercentNumber";
182405
+ onChainValue: bigint;
182406
+ decimals: number;
182407
+ value: _aave_types.BigDecimal;
182408
+ normalized: _aave_types.BigDecimal;
182409
+ };
182410
+ } | null;
181955
182411
  };
181956
182412
  reserve: {
181957
182413
  __typename: "ReserveInfo";
@@ -183561,6 +184017,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
183561
184017
  categories: TokenCategory[];
183562
184018
  };
183563
184019
  };
184020
+ liquidationConfig: {
184021
+ __typename: "SpokeLiquidationConfig";
184022
+ targetHealthFactor: _aave_types.BigDecimal;
184023
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
184024
+ liquidationBonusFactor: {
184025
+ __typename: "PercentNumber";
184026
+ onChainValue: bigint;
184027
+ decimals: number;
184028
+ value: _aave_types.BigDecimal;
184029
+ normalized: _aave_types.BigDecimal;
184030
+ };
184031
+ } | null;
183564
184032
  };
183565
184033
  reserve: {
183566
184034
  __typename: "ReserveInfo";
@@ -185432,6 +185900,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
185432
185900
  categories: TokenCategory[];
185433
185901
  };
185434
185902
  };
185903
+ liquidationConfig: {
185904
+ __typename: "SpokeLiquidationConfig";
185905
+ targetHealthFactor: _aave_types.BigDecimal;
185906
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
185907
+ liquidationBonusFactor: {
185908
+ __typename: "PercentNumber";
185909
+ onChainValue: bigint;
185910
+ decimals: number;
185911
+ value: _aave_types.BigDecimal;
185912
+ normalized: _aave_types.BigDecimal;
185913
+ };
185914
+ } | null;
185435
185915
  };
185436
185916
  reserve: {
185437
185917
  __typename: "ReserveInfo";
@@ -185985,6 +186465,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
185985
186465
  categories: TokenCategory[];
185986
186466
  };
185987
186467
  };
186468
+ liquidationConfig: {
186469
+ __typename: "SpokeLiquidationConfig";
186470
+ targetHealthFactor: _aave_types.BigDecimal;
186471
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
186472
+ liquidationBonusFactor: {
186473
+ __typename: "PercentNumber";
186474
+ onChainValue: bigint;
186475
+ decimals: number;
186476
+ value: _aave_types.BigDecimal;
186477
+ normalized: _aave_types.BigDecimal;
186478
+ };
186479
+ } | null;
185988
186480
  };
185989
186481
  premium: {
185990
186482
  __typename: "PercentNumberChangeSnapshot";
@@ -186058,6 +186550,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
186058
186550
  categories: TokenCategory[];
186059
186551
  };
186060
186552
  };
186553
+ liquidationConfig: {
186554
+ __typename: "SpokeLiquidationConfig";
186555
+ targetHealthFactor: _aave_types.BigDecimal;
186556
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
186557
+ liquidationBonusFactor: {
186558
+ __typename: "PercentNumber";
186559
+ onChainValue: bigint;
186560
+ decimals: number;
186561
+ value: _aave_types.BigDecimal;
186562
+ normalized: _aave_types.BigDecimal;
186563
+ };
186564
+ } | null;
186061
186565
  };
186062
186566
  reserve: {
186063
186567
  __typename: "ReserveInfo";
@@ -186561,6 +187065,18 @@ declare const ActivityItemFragment: gql_tada.TadaDocumentNode<{
186561
187065
  categories: TokenCategory[];
186562
187066
  };
186563
187067
  };
187068
+ liquidationConfig: {
187069
+ __typename: "SpokeLiquidationConfig";
187070
+ targetHealthFactor: _aave_types.BigDecimal;
187071
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
187072
+ liquidationBonusFactor: {
187073
+ __typename: "PercentNumber";
187074
+ onChainValue: bigint;
187075
+ decimals: number;
187076
+ value: _aave_types.BigDecimal;
187077
+ normalized: _aave_types.BigDecimal;
187078
+ };
187079
+ } | null;
186564
187080
  };
186565
187081
  reserve: {
186566
187082
  __typename: "ReserveInfo";
@@ -187785,6 +188301,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
187785
188301
  categories: TokenCategory[];
187786
188302
  };
187787
188303
  };
188304
+ liquidationConfig: {
188305
+ __typename: "SpokeLiquidationConfig";
188306
+ targetHealthFactor: _aave_types.BigDecimal;
188307
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
188308
+ liquidationBonusFactor: {
188309
+ __typename: "PercentNumber";
188310
+ onChainValue: bigint;
188311
+ decimals: number;
188312
+ value: _aave_types.BigDecimal;
188313
+ normalized: _aave_types.BigDecimal;
188314
+ };
188315
+ } | null;
187788
188316
  };
187789
188317
  reserve: {
187790
188318
  __typename: "ReserveInfo";
@@ -189394,6 +189922,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
189394
189922
  categories: TokenCategory[];
189395
189923
  };
189396
189924
  };
189925
+ liquidationConfig: {
189926
+ __typename: "SpokeLiquidationConfig";
189927
+ targetHealthFactor: _aave_types.BigDecimal;
189928
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
189929
+ liquidationBonusFactor: {
189930
+ __typename: "PercentNumber";
189931
+ onChainValue: bigint;
189932
+ decimals: number;
189933
+ value: _aave_types.BigDecimal;
189934
+ normalized: _aave_types.BigDecimal;
189935
+ };
189936
+ } | null;
189397
189937
  };
189398
189938
  collateralReserve: {
189399
189939
  __typename: "ReserveInfo";
@@ -190461,6 +191001,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
190461
191001
  categories: TokenCategory[];
190462
191002
  };
190463
191003
  };
191004
+ liquidationConfig: {
191005
+ __typename: "SpokeLiquidationConfig";
191006
+ targetHealthFactor: _aave_types.BigDecimal;
191007
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
191008
+ liquidationBonusFactor: {
191009
+ __typename: "PercentNumber";
191010
+ onChainValue: bigint;
191011
+ decimals: number;
191012
+ value: _aave_types.BigDecimal;
191013
+ normalized: _aave_types.BigDecimal;
191014
+ };
191015
+ } | null;
190464
191016
  };
190465
191017
  reserve: {
190466
191018
  __typename: "ReserveInfo";
@@ -192070,6 +192622,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
192070
192622
  categories: TokenCategory[];
192071
192623
  };
192072
192624
  };
192625
+ liquidationConfig: {
192626
+ __typename: "SpokeLiquidationConfig";
192627
+ targetHealthFactor: _aave_types.BigDecimal;
192628
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
192629
+ liquidationBonusFactor: {
192630
+ __typename: "PercentNumber";
192631
+ onChainValue: bigint;
192632
+ decimals: number;
192633
+ value: _aave_types.BigDecimal;
192634
+ normalized: _aave_types.BigDecimal;
192635
+ };
192636
+ } | null;
192073
192637
  };
192074
192638
  reserve: {
192075
192639
  __typename: "ReserveInfo";
@@ -193941,6 +194505,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
193941
194505
  categories: TokenCategory[];
193942
194506
  };
193943
194507
  };
194508
+ liquidationConfig: {
194509
+ __typename: "SpokeLiquidationConfig";
194510
+ targetHealthFactor: _aave_types.BigDecimal;
194511
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
194512
+ liquidationBonusFactor: {
194513
+ __typename: "PercentNumber";
194514
+ onChainValue: bigint;
194515
+ decimals: number;
194516
+ value: _aave_types.BigDecimal;
194517
+ normalized: _aave_types.BigDecimal;
194518
+ };
194519
+ } | null;
193944
194520
  };
193945
194521
  reserve: {
193946
194522
  __typename: "ReserveInfo";
@@ -194494,6 +195070,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
194494
195070
  categories: TokenCategory[];
194495
195071
  };
194496
195072
  };
195073
+ liquidationConfig: {
195074
+ __typename: "SpokeLiquidationConfig";
195075
+ targetHealthFactor: _aave_types.BigDecimal;
195076
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
195077
+ liquidationBonusFactor: {
195078
+ __typename: "PercentNumber";
195079
+ onChainValue: bigint;
195080
+ decimals: number;
195081
+ value: _aave_types.BigDecimal;
195082
+ normalized: _aave_types.BigDecimal;
195083
+ };
195084
+ } | null;
194497
195085
  };
194498
195086
  premium: {
194499
195087
  __typename: "PercentNumberChangeSnapshot";
@@ -194567,6 +195155,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
194567
195155
  categories: TokenCategory[];
194568
195156
  };
194569
195157
  };
195158
+ liquidationConfig: {
195159
+ __typename: "SpokeLiquidationConfig";
195160
+ targetHealthFactor: _aave_types.BigDecimal;
195161
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
195162
+ liquidationBonusFactor: {
195163
+ __typename: "PercentNumber";
195164
+ onChainValue: bigint;
195165
+ decimals: number;
195166
+ value: _aave_types.BigDecimal;
195167
+ normalized: _aave_types.BigDecimal;
195168
+ };
195169
+ } | null;
194570
195170
  };
194571
195171
  reserve: {
194572
195172
  __typename: "ReserveInfo";
@@ -195070,6 +195670,18 @@ declare const PaginatedActivitiesResultFragment: gql_tada.TadaDocumentNode<{
195070
195670
  categories: TokenCategory[];
195071
195671
  };
195072
195672
  };
195673
+ liquidationConfig: {
195674
+ __typename: "SpokeLiquidationConfig";
195675
+ targetHealthFactor: _aave_types.BigDecimal;
195676
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
195677
+ liquidationBonusFactor: {
195678
+ __typename: "PercentNumber";
195679
+ onChainValue: bigint;
195680
+ decimals: number;
195681
+ value: _aave_types.BigDecimal;
195682
+ normalized: _aave_types.BigDecimal;
195683
+ };
195684
+ } | null;
195073
195685
  };
195074
195686
  reserve: {
195075
195687
  __typename: "ReserveInfo";
@@ -196304,6 +196916,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
196304
196916
  categories: TokenCategory[];
196305
196917
  };
196306
196918
  };
196919
+ liquidationConfig: {
196920
+ __typename: "SpokeLiquidationConfig";
196921
+ targetHealthFactor: _aave_types.BigDecimal;
196922
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
196923
+ liquidationBonusFactor: {
196924
+ __typename: "PercentNumber";
196925
+ onChainValue: bigint;
196926
+ decimals: number;
196927
+ value: _aave_types.BigDecimal;
196928
+ normalized: _aave_types.BigDecimal;
196929
+ };
196930
+ } | null;
196307
196931
  };
196308
196932
  reserve: {
196309
196933
  __typename: "ReserveInfo";
@@ -197913,6 +198537,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
197913
198537
  categories: TokenCategory[];
197914
198538
  };
197915
198539
  };
198540
+ liquidationConfig: {
198541
+ __typename: "SpokeLiquidationConfig";
198542
+ targetHealthFactor: _aave_types.BigDecimal;
198543
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
198544
+ liquidationBonusFactor: {
198545
+ __typename: "PercentNumber";
198546
+ onChainValue: bigint;
198547
+ decimals: number;
198548
+ value: _aave_types.BigDecimal;
198549
+ normalized: _aave_types.BigDecimal;
198550
+ };
198551
+ } | null;
197916
198552
  };
197917
198553
  collateralReserve: {
197918
198554
  __typename: "ReserveInfo";
@@ -198980,6 +199616,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
198980
199616
  categories: TokenCategory[];
198981
199617
  };
198982
199618
  };
199619
+ liquidationConfig: {
199620
+ __typename: "SpokeLiquidationConfig";
199621
+ targetHealthFactor: _aave_types.BigDecimal;
199622
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
199623
+ liquidationBonusFactor: {
199624
+ __typename: "PercentNumber";
199625
+ onChainValue: bigint;
199626
+ decimals: number;
199627
+ value: _aave_types.BigDecimal;
199628
+ normalized: _aave_types.BigDecimal;
199629
+ };
199630
+ } | null;
198983
199631
  };
198984
199632
  reserve: {
198985
199633
  __typename: "ReserveInfo";
@@ -200589,6 +201237,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
200589
201237
  categories: TokenCategory[];
200590
201238
  };
200591
201239
  };
201240
+ liquidationConfig: {
201241
+ __typename: "SpokeLiquidationConfig";
201242
+ targetHealthFactor: _aave_types.BigDecimal;
201243
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
201244
+ liquidationBonusFactor: {
201245
+ __typename: "PercentNumber";
201246
+ onChainValue: bigint;
201247
+ decimals: number;
201248
+ value: _aave_types.BigDecimal;
201249
+ normalized: _aave_types.BigDecimal;
201250
+ };
201251
+ } | null;
200592
201252
  };
200593
201253
  reserve: {
200594
201254
  __typename: "ReserveInfo";
@@ -202460,6 +203120,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
202460
203120
  categories: TokenCategory[];
202461
203121
  };
202462
203122
  };
203123
+ liquidationConfig: {
203124
+ __typename: "SpokeLiquidationConfig";
203125
+ targetHealthFactor: _aave_types.BigDecimal;
203126
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
203127
+ liquidationBonusFactor: {
203128
+ __typename: "PercentNumber";
203129
+ onChainValue: bigint;
203130
+ decimals: number;
203131
+ value: _aave_types.BigDecimal;
203132
+ normalized: _aave_types.BigDecimal;
203133
+ };
203134
+ } | null;
202463
203135
  };
202464
203136
  reserve: {
202465
203137
  __typename: "ReserveInfo";
@@ -203013,6 +203685,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
203013
203685
  categories: TokenCategory[];
203014
203686
  };
203015
203687
  };
203688
+ liquidationConfig: {
203689
+ __typename: "SpokeLiquidationConfig";
203690
+ targetHealthFactor: _aave_types.BigDecimal;
203691
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
203692
+ liquidationBonusFactor: {
203693
+ __typename: "PercentNumber";
203694
+ onChainValue: bigint;
203695
+ decimals: number;
203696
+ value: _aave_types.BigDecimal;
203697
+ normalized: _aave_types.BigDecimal;
203698
+ };
203699
+ } | null;
203016
203700
  };
203017
203701
  premium: {
203018
203702
  __typename: "PercentNumberChangeSnapshot";
@@ -203086,6 +203770,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
203086
203770
  categories: TokenCategory[];
203087
203771
  };
203088
203772
  };
203773
+ liquidationConfig: {
203774
+ __typename: "SpokeLiquidationConfig";
203775
+ targetHealthFactor: _aave_types.BigDecimal;
203776
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
203777
+ liquidationBonusFactor: {
203778
+ __typename: "PercentNumber";
203779
+ onChainValue: bigint;
203780
+ decimals: number;
203781
+ value: _aave_types.BigDecimal;
203782
+ normalized: _aave_types.BigDecimal;
203783
+ };
203784
+ } | null;
203089
203785
  };
203090
203786
  reserve: {
203091
203787
  __typename: "ReserveInfo";
@@ -203589,6 +204285,18 @@ declare const ActivitiesQuery: gql_tada.TadaDocumentNode<{
203589
204285
  categories: TokenCategory[];
203590
204286
  };
203591
204287
  };
204288
+ liquidationConfig: {
204289
+ __typename: "SpokeLiquidationConfig";
204290
+ targetHealthFactor: _aave_types.BigDecimal;
204291
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
204292
+ liquidationBonusFactor: {
204293
+ __typename: "PercentNumber";
204294
+ onChainValue: bigint;
204295
+ decimals: number;
204296
+ value: _aave_types.BigDecimal;
204297
+ normalized: _aave_types.BigDecimal;
204298
+ };
204299
+ } | null;
203592
204300
  };
203593
204301
  reserve: {
203594
204302
  __typename: "ReserveInfo";
@@ -204854,6 +205562,18 @@ declare const UserSuppliesQuery: gql_tada.TadaDocumentNode<{
204854
205562
  categories: TokenCategory[];
204855
205563
  };
204856
205564
  };
205565
+ liquidationConfig: {
205566
+ __typename: "SpokeLiquidationConfig";
205567
+ targetHealthFactor: _aave_types.BigDecimal;
205568
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
205569
+ liquidationBonusFactor: {
205570
+ __typename: "PercentNumber";
205571
+ onChainValue: bigint;
205572
+ decimals: number;
205573
+ value: _aave_types.BigDecimal;
205574
+ normalized: _aave_types.BigDecimal;
205575
+ };
205576
+ } | null;
204857
205577
  };
204858
205578
  chain: {
204859
205579
  __typename: "Chain";
@@ -206811,6 +207531,18 @@ declare const UserBorrowsQuery: gql_tada.TadaDocumentNode<{
206811
207531
  categories: TokenCategory[];
206812
207532
  };
206813
207533
  };
207534
+ liquidationConfig: {
207535
+ __typename: "SpokeLiquidationConfig";
207536
+ targetHealthFactor: _aave_types.BigDecimal;
207537
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
207538
+ liquidationBonusFactor: {
207539
+ __typename: "PercentNumber";
207540
+ onChainValue: bigint;
207541
+ decimals: number;
207542
+ value: _aave_types.BigDecimal;
207543
+ normalized: _aave_types.BigDecimal;
207544
+ };
207545
+ } | null;
206814
207546
  };
206815
207547
  chain: {
206816
207548
  __typename: "Chain";
@@ -208436,6 +209168,18 @@ declare const UserPositionsQuery: gql_tada.TadaDocumentNode<{
208436
209168
  categories: TokenCategory[];
208437
209169
  };
208438
209170
  };
209171
+ liquidationConfig: {
209172
+ __typename: "SpokeLiquidationConfig";
209173
+ targetHealthFactor: _aave_types.BigDecimal;
209174
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
209175
+ liquidationBonusFactor: {
209176
+ __typename: "PercentNumber";
209177
+ onChainValue: bigint;
209178
+ decimals: number;
209179
+ value: _aave_types.BigDecimal;
209180
+ normalized: _aave_types.BigDecimal;
209181
+ };
209182
+ } | null;
208439
209183
  };
208440
209184
  user: _aave_types.EvmAddress;
208441
209185
  createdAt: Date;
@@ -208707,6 +209451,18 @@ declare const UserPositionQuery: gql_tada.TadaDocumentNode<{
208707
209451
  categories: TokenCategory[];
208708
209452
  };
208709
209453
  };
209454
+ liquidationConfig: {
209455
+ __typename: "SpokeLiquidationConfig";
209456
+ targetHealthFactor: _aave_types.BigDecimal;
209457
+ healthFactorForMaxBonus: _aave_types.BigDecimal;
209458
+ liquidationBonusFactor: {
209459
+ __typename: "PercentNumber";
209460
+ onChainValue: bigint;
209461
+ decimals: number;
209462
+ value: _aave_types.BigDecimal;
209463
+ normalized: _aave_types.BigDecimal;
209464
+ };
209465
+ } | null;
208710
209466
  };
208711
209467
  user: _aave_types.EvmAddress;
208712
209468
  createdAt: Date;
@@ -210253,4 +211009,4 @@ type StableVaultWithdrawRedeemInput = ReturnType<typeof graphql.scalar<'StableVa
210253
211009
  type StableVaultsRequestInput = ReturnType<typeof graphql.scalar<'StableVaultsRequest'>>;
210254
211010
  type SurplusClaim = ReturnType<typeof graphql.scalar<'SurplusClaim'>>;
210255
211011
 
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 };
211012
+ 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 SpokeLiquidationConfig, SpokeLiquidationConfigFragment, 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 };