@aave/graphql 1.0.0-next.16 → 1.0.0-next.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +140 -137
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +259 -93
- package/dist/index.d.ts +259 -93
- package/dist/index.js +140 -137
- package/dist/index.js.map +1 -1
- package/dist/schema.cjs +1 -1
- package/dist/schema.cjs.map +1 -1
- package/dist/schema.js +1 -1
- package/dist/schema.js.map +1 -1
- package/dist/testing.d.ts +6 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -70,13 +70,6 @@ declare enum HubAssetStatusType {
|
|
|
70
70
|
Frozen = "FROZEN",
|
|
71
71
|
Paused = "PAUSED"
|
|
72
72
|
}
|
|
73
|
-
/**
|
|
74
|
-
* The order by options for hub assets request.
|
|
75
|
-
*/
|
|
76
|
-
declare enum HubAssetsRequestOrderBy {
|
|
77
|
-
Balance = "BALANCE",
|
|
78
|
-
Name = "NAME"
|
|
79
|
-
}
|
|
80
73
|
/**
|
|
81
74
|
* The activity type for user history.
|
|
82
75
|
*/
|
|
@@ -205,7 +198,7 @@ type introspection_types = {
|
|
|
205
198
|
'AssetPriceSample': { kind: 'OBJECT'; name: 'AssetPriceSample'; fields: { 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'price': { name: 'price'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; };
|
|
206
199
|
'AssetRequest': { kind: 'INPUT_OBJECT'; name: 'AssetRequest'; isOneOf: false; inputFields: [{ name: 'query'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetRequestQuery'; ofType: null; }; }; defaultValue: null }]; };
|
|
207
200
|
'AssetRequestQuery': { kind: 'INPUT_OBJECT'; name: 'AssetRequestQuery'; isOneOf: true; inputFields: [{ name: 'token'; type: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; defaultValue: null }, { name: 'assetId'; type: { kind: 'SCALAR'; name: 'AssetId'; ofType: null; }; defaultValue: null }]; };
|
|
208
|
-
'AssetSummary': { kind: 'OBJECT'; name: 'AssetSummary'; fields: { 'borrowApy': { name: 'borrowApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'supplyApy': { name: 'supplyApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'totalBorrowCap': { name: 'totalBorrowCap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: '
|
|
201
|
+
'AssetSummary': { kind: 'OBJECT'; name: 'AssetSummary'; fields: { 'borrowApy': { name: 'borrowApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'supplyApy': { name: 'supplyApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'totalBorrowCap': { name: 'totalBorrowCap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetAmountWithChange'; ofType: null; }; } }; 'totalBorrowable': { name: 'totalBorrowable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetAmountWithChange'; ofType: null; }; } }; 'totalBorrowed': { name: 'totalBorrowed'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetAmountWithChange'; ofType: null; }; } }; 'totalSuppliable': { name: 'totalSuppliable'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetAmountWithChange'; ofType: null; }; } }; 'totalSupplied': { name: 'totalSupplied'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetAmountWithChange'; ofType: null; }; } }; 'totalSupplyCap': { name: 'totalSupplyCap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'AssetAmountWithChange'; ofType: null; }; } }; }; };
|
|
209
202
|
'AssetSupplyHistoryRequest': { kind: 'INPUT_OBJECT'; name: 'AssetSupplyHistoryRequest'; isOneOf: false; inputFields: [{ name: 'query'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'AssetSupplyHistoryRequestQuery'; ofType: null; }; }; defaultValue: null }, { name: 'window'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TimeWindow'; ofType: null; }; }; defaultValue: "LAST_DAY" }]; };
|
|
210
203
|
'AssetSupplyHistoryRequestQuery': { kind: 'INPUT_OBJECT'; name: 'AssetSupplyHistoryRequestQuery'; isOneOf: true; inputFields: [{ name: 'token'; type: { kind: 'INPUT_OBJECT'; name: 'Erc20Input'; ofType: null; }; defaultValue: null }, { name: 'assetId'; type: { kind: 'SCALAR'; name: 'AssetId'; ofType: null; }; defaultValue: null }]; };
|
|
211
204
|
'AssetSupplySample': { kind: 'OBJECT'; name: 'AssetSupplySample'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DecimalNumber'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'highestApy': { name: 'highestApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'lowestApy': { name: 'lowestApy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; }; };
|
|
@@ -258,7 +251,6 @@ type introspection_types = {
|
|
|
258
251
|
'FromQuoteDebtSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'FromQuoteDebtSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'newSlippage'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }]; };
|
|
259
252
|
'FromQuoteRepayWithSupplyQuoteInput': { kind: 'INPUT_OBJECT'; name: 'FromQuoteRepayWithSupplyQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'newSlippage'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }]; };
|
|
260
253
|
'FromQuoteSupplySwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'FromQuoteSupplySwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'newSlippage'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }]; };
|
|
261
|
-
'FromQuoteSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'FromQuoteSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'newSlippage'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }]; };
|
|
262
254
|
'FromQuoteWithdrawSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'FromQuoteWithdrawSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'newSlippage'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }]; };
|
|
263
255
|
'HasProcessedKnownTransactionRequest': { kind: 'INPUT_OBJECT'; name: 'HasProcessedKnownTransactionRequest'; isOneOf: false; inputFields: [{ name: 'operations'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OperationType'; ofType: null; }; }; }; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; }; defaultValue: null }]; };
|
|
264
256
|
'HealthFactorError': { kind: 'OBJECT'; name: 'HealthFactorError'; fields: { 'after': { name: 'after'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'current': { name: 'current'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; } }; 'reason': { name: 'reason'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
@@ -292,7 +284,7 @@ type introspection_types = {
|
|
|
292
284
|
'Int': unknown;
|
|
293
285
|
'JSON': unknown;
|
|
294
286
|
'LimitDebtSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'LimitDebtSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; defaultValue: null }, { name: 'currentPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserBorrowItemId'; ofType: null; }; }; defaultValue: null }, { name: 'currentAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'newReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; }; defaultValue: null }, { name: 'newAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'ENUM'; name: 'BorrowSwapKind'; ofType: null; }; defaultValue: null }]; };
|
|
295
|
-
'LimitOrderTokenSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'LimitOrderTokenSwapQuoteInput'; isOneOf: false; inputFields: [{ name: '
|
|
287
|
+
'LimitOrderTokenSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'LimitOrderTokenSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }, { name: 'sell'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SwapTokenInput'; ofType: null; }; }; defaultValue: null }, { name: 'buy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'SwapTokenInput'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SwapKind'; ofType: null; }; }; defaultValue: "SELL" }, { name: 'previousQuoteId'; type: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; defaultValue: null }]; };
|
|
296
288
|
'LimitRepayWithSupplyQuoteInput': { kind: 'INPUT_OBJECT'; name: 'LimitRepayWithSupplyQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; defaultValue: null }, { name: 'repayPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserBorrowItemId'; ofType: null; }; }; defaultValue: null }, { name: 'repayAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'supplyPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserSupplyItemId'; ofType: null; }; }; defaultValue: null }, { name: 'supplyAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'ENUM'; name: 'RepayWithSupplyKind'; ofType: null; }; defaultValue: null }]; };
|
|
297
289
|
'LimitSupplySwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'LimitSupplySwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; defaultValue: null }, { name: 'currentPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserSupplyItemId'; ofType: null; }; }; defaultValue: null }, { name: 'currentAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'newReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; }; defaultValue: null }, { name: 'newAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'ENUM'; name: 'SupplySwapKind'; ofType: null; }; defaultValue: null }, { name: 'enableCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
|
|
298
290
|
'LimitWithdrawSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'LimitWithdrawSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; defaultValue: null }, { name: 'withdrawPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserSupplyItemId'; ofType: null; }; }; defaultValue: null }, { name: 'withdrawAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'buyToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenInput'; ofType: null; }; }; defaultValue: null }, { name: 'buyAmount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'ENUM'; name: 'WithdrawSwapKind'; ofType: null; }; defaultValue: null }]; };
|
|
@@ -302,6 +294,7 @@ type introspection_types = {
|
|
|
302
294
|
'LiquidatedActivity': { kind: 'OBJECT'; name: 'LiquidatedActivity'; fields: { 'chain': { name: 'chain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Chain'; ofType: null; }; } }; 'collateral': { name: 'collateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'collateralReserve': { name: 'collateralReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveInfo'; ofType: null; }; } }; 'debt': { name: 'debt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Amount'; ofType: null; }; } }; 'debtReserve': { name: 'debtReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveInfo'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ID'; ofType: null; }; } }; 'liquidator': { name: 'liquidator'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; 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; }; } }; }; };
|
|
303
295
|
'LiquidationFeeVariation': { kind: 'OBJECT'; name: 'LiquidationFeeVariation'; fields: { 'after': { name: 'after'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'current': { name: 'current'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentNumber'; ofType: null; }; } }; 'reserveId': { name: 'reserveId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; } }; 'token': { name: 'token'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Token'; ofType: null; }; } }; }; };
|
|
304
296
|
'MarketDebtSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'MarketDebtSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'debtPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserBorrowItemId'; ofType: null; }; }; defaultValue: null }, { name: 'buyReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
|
|
297
|
+
'MarketOrderTokenSwapFromQuoteInput': { kind: 'INPUT_OBJECT'; name: 'MarketOrderTokenSwapFromQuoteInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'newSlippage'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }]; };
|
|
305
298
|
'MarketOrderTokenSwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'MarketOrderTokenSwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }, { name: 'buy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenInput'; ofType: null; }; }; defaultValue: null }, { name: 'sell'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'TokenInput'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'kind'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'SwapKind'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'receiver'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; };
|
|
306
299
|
'MarketRepayWithSupplyQuoteInput': { kind: 'INPUT_OBJECT'; name: 'MarketRepayWithSupplyQuoteInput'; isOneOf: false; inputFields: [{ name: 'debtPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserBorrowItemId'; ofType: null; }; }; defaultValue: null }, { name: 'repayWithReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
|
|
307
300
|
'MarketSupplySwapQuoteInput': { kind: 'INPUT_OBJECT'; name: 'MarketSupplySwapQuoteInput'; isOneOf: false; inputFields: [{ name: 'sellPosition'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'UserSupplyItemId'; ofType: null; }; }; defaultValue: null }, { name: 'buyReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ReserveId'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'enableCollateral'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: null }]; };
|
|
@@ -402,6 +395,7 @@ type introspection_types = {
|
|
|
402
395
|
'SwapByIntentWithApprovalRequired': { kind: 'OBJECT'; name: 'SwapByIntentWithApprovalRequired'; fields: { 'approval': { name: 'approval'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Erc20Approval'; ofType: null; }; } }; 'quote': { name: 'quote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapQuote'; ofType: null; }; } }; }; };
|
|
403
396
|
'SwapByTransaction': { kind: 'OBJECT'; name: 'SwapByTransaction'; fields: { 'quote': { name: 'quote'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapQuote'; ofType: null; }; } }; }; };
|
|
404
397
|
'SwapCancelled': { kind: 'OBJECT'; name: 'SwapCancelled'; fields: { 'cancelledAt': { name: 'cancelledAt'; type: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'explorerLink': { name: 'explorerLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
398
|
+
'SwapErc20Input': { kind: 'INPUT_OBJECT'; name: 'SwapErc20Input'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }]; };
|
|
405
399
|
'SwapExecutionPlan': { kind: 'UNION'; name: 'SwapExecutionPlan'; fields: {}; possibleTypes: 'InsufficientBalanceError' | 'SwapReceipt' | 'SwapTransactionRequest'; };
|
|
406
400
|
'SwapExpired': { kind: 'OBJECT'; name: 'SwapExpired'; fields: { 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'expiredAt': { name: 'expiredAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'explorerLink': { name: 'explorerLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
407
401
|
'SwapFulfilled': { kind: 'OBJECT'; name: 'SwapFulfilled'; fields: { 'bought': { name: 'bought'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SwapAmount'; ofType: null; }; } }; 'createdAt': { name: 'createdAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'desiredBuy': { name: 'desiredBuy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SwapAmount'; ofType: null; }; } }; 'desiredSell': { name: 'desiredSell'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SwapAmount'; ofType: null; }; } }; 'explorerLink': { name: 'explorerLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'fulfilledAt': { name: 'fulfilledAt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'refundTxHash': { name: 'refundTxHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; } }; 'sold': { name: 'sold'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'SwapAmount'; ofType: null; }; } }; 'txHash': { name: 'txHash'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
@@ -417,6 +411,7 @@ type introspection_types = {
|
|
|
417
411
|
'SwapStatus': { kind: 'UNION'; name: 'SwapStatus'; fields: {}; possibleTypes: 'SwapCancelled' | 'SwapExpired' | 'SwapFulfilled' | 'SwapOpen' | 'SwapPendingSignature'; };
|
|
418
412
|
'SwapStatusFilter': { name: 'SwapStatusFilter'; enumValues: 'CANCELLED' | 'EXPIRED' | 'FULFILLED' | 'OPEN' | 'PENDING_SIGNATURE'; };
|
|
419
413
|
'SwapStatusRequest': { kind: 'INPUT_OBJECT'; name: 'SwapStatusRequest'; isOneOf: false; inputFields: [{ name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapId'; ofType: null; }; }; defaultValue: null }]; };
|
|
414
|
+
'SwapTokenInput': { kind: 'INPUT_OBJECT'; name: 'SwapTokenInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'SwapErc20Input'; ofType: null; }; defaultValue: null }]; };
|
|
420
415
|
'SwapTransactionRequest': { kind: 'OBJECT'; name: 'SwapTransactionRequest'; fields: { 'orderReceipt': { name: 'orderReceipt'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'SwapReceipt'; ofType: null; }; } }; 'transaction': { name: 'transaction'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; }; };
|
|
421
416
|
'SwapTypedData': { kind: 'OBJECT'; name: 'SwapTypedData'; fields: { 'domain': { name: 'domain'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'DomainData'; ofType: null; }; } }; 'message': { name: 'message'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; 'primaryType': { name: 'primaryType'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'types': { name: 'types'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'JSON'; ofType: null; }; } }; }; };
|
|
422
417
|
'SwapWithTransactionInput': { kind: 'INPUT_OBJECT'; name: 'SwapWithTransactionInput'; isOneOf: false; inputFields: [{ name: 'quoteId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'SwapQuoteId'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'SCALAR'; name: 'Signature'; ofType: null; }; defaultValue: null }, { name: 'isSenderSmartContractWallet'; type: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; defaultValue: null }]; };
|
|
@@ -430,7 +425,7 @@ type introspection_types = {
|
|
|
430
425
|
'TokenInfo': { kind: 'OBJECT'; name: 'TokenInfo'; fields: { 'categories': { name: 'categories'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'TokenCategory'; ofType: null; }; }; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'icon': { name: 'icon'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'id': { name: 'id'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'TokenInfoId'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'symbol': { name: 'symbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
431
426
|
'TokenInfoId': unknown;
|
|
432
427
|
'TokenInput': { kind: 'INPUT_OBJECT'; name: 'TokenInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'AlwaysTrue'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; };
|
|
433
|
-
'TokenSwapQuoteRequest': { kind: 'INPUT_OBJECT'; name: 'TokenSwapQuoteRequest'; isOneOf: true; inputFields: [{ name: 'market'; type: { kind: 'INPUT_OBJECT'; name: 'MarketOrderTokenSwapQuoteInput'; ofType: null; }; defaultValue: null }, { name: 'limit'; type: { kind: 'INPUT_OBJECT'; name: 'LimitOrderTokenSwapQuoteInput'; ofType: null; }; defaultValue: null }, { name: 'fromQuote'; type: { kind: 'INPUT_OBJECT'; name: '
|
|
428
|
+
'TokenSwapQuoteRequest': { kind: 'INPUT_OBJECT'; name: 'TokenSwapQuoteRequest'; isOneOf: true; inputFields: [{ name: 'market'; type: { kind: 'INPUT_OBJECT'; name: 'MarketOrderTokenSwapQuoteInput'; ofType: null; }; defaultValue: null }, { name: 'limit'; type: { kind: 'INPUT_OBJECT'; name: 'LimitOrderTokenSwapQuoteInput'; ofType: null; }; defaultValue: null }, { name: 'fromQuote'; type: { kind: 'INPUT_OBJECT'; name: 'MarketOrderTokenSwapFromQuoteInput'; ofType: null; }; defaultValue: null }]; };
|
|
434
429
|
'TokenSwapQuoteResult': { kind: 'UNION'; name: 'TokenSwapQuoteResult'; fields: {}; possibleTypes: 'SwapByIntent' | 'SwapByIntentWithApprovalRequired' | 'SwapByTransaction'; };
|
|
435
430
|
'TransactionRequest': { kind: 'OBJECT'; name: 'TransactionRequest'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'data': { name: 'data'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BlockchainData'; ofType: null; }; } }; 'from': { name: 'from'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'operations': { name: 'operations'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'OperationType'; ofType: null; }; }; } }; 'to': { name: 'to'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; }; };
|
|
436
431
|
'TxHash': unknown;
|
|
@@ -757,7 +752,6 @@ declare const graphql: initGraphQLTada<{
|
|
|
757
752
|
EvmAddress: EvmAddress;
|
|
758
753
|
Float: number;
|
|
759
754
|
HubAssetId: HubAssetId;
|
|
760
|
-
HubAssetsRequestOrderBy: HubAssetsRequestOrderBy;
|
|
761
755
|
HubAssetStatusType: HubAssetStatusType;
|
|
762
756
|
HubId: HubId;
|
|
763
757
|
ID: ID;
|
|
@@ -27519,6 +27513,14 @@ declare const UserPositionFragment: gql_tada.TadaDocumentNode<{
|
|
|
27519
27513
|
normalized: _aave_types.BigDecimal;
|
|
27520
27514
|
};
|
|
27521
27515
|
};
|
|
27516
|
+
netAccruedInterest: {
|
|
27517
|
+
__typename: "ExchangeAmount";
|
|
27518
|
+
value: _aave_types.BigDecimal;
|
|
27519
|
+
name: string;
|
|
27520
|
+
symbol: string;
|
|
27521
|
+
icon: string;
|
|
27522
|
+
decimals: number;
|
|
27523
|
+
};
|
|
27522
27524
|
totalCollateral: {
|
|
27523
27525
|
__typename: "ExchangeAmountWithChange";
|
|
27524
27526
|
current: {
|
|
@@ -28745,6 +28747,8 @@ declare const HubSummaryHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
28745
28747
|
}, void>;
|
|
28746
28748
|
type HubSummaryHistoryRequest = RequestOf<typeof HubSummaryHistoryQuery>;
|
|
28747
28749
|
type HubSummaryHistoryRequestQuery = ReturnType<typeof graphql.scalar<'HubSummaryHistoryRequestQuery'>>;
|
|
28750
|
+
type HubAssetsRequestOrderBy = ReturnType<typeof graphql.scalar<'HubAssetsRequestOrderBy'>>;
|
|
28751
|
+
type HubsRequestOrderBy = ReturnType<typeof graphql.scalar<'HubsRequestOrderBy'>>;
|
|
28748
28752
|
|
|
28749
28753
|
type HubInput = ReturnType<typeof graphql.scalar<'HubInput'>>;
|
|
28750
28754
|
/**
|
|
@@ -29146,19 +29150,40 @@ type AssetAmountWithChange = FragmentOf<typeof AssetAmountWithChangeFragment>;
|
|
|
29146
29150
|
declare const AssetSummaryFragment: gql_tada.TadaDocumentNode<{
|
|
29147
29151
|
__typename: "AssetSummary";
|
|
29148
29152
|
totalSupplyCap: {
|
|
29149
|
-
__typename: "
|
|
29150
|
-
|
|
29151
|
-
__typename: "
|
|
29152
|
-
|
|
29153
|
-
|
|
29154
|
-
|
|
29153
|
+
__typename: "AssetAmountWithChange";
|
|
29154
|
+
amount: {
|
|
29155
|
+
__typename: "DecimalNumberWithChange";
|
|
29156
|
+
current: {
|
|
29157
|
+
__typename: "DecimalNumber";
|
|
29158
|
+
onChainValue: bigint;
|
|
29159
|
+
decimals: number;
|
|
29160
|
+
value: _aave_types.BigDecimal;
|
|
29161
|
+
};
|
|
29162
|
+
change: {
|
|
29163
|
+
__typename: "PercentNumber";
|
|
29164
|
+
onChainValue: bigint;
|
|
29165
|
+
decimals: number;
|
|
29166
|
+
value: _aave_types.BigDecimal;
|
|
29167
|
+
normalized: _aave_types.BigDecimal;
|
|
29168
|
+
};
|
|
29155
29169
|
};
|
|
29156
|
-
|
|
29157
|
-
__typename: "
|
|
29158
|
-
|
|
29159
|
-
|
|
29160
|
-
|
|
29161
|
-
|
|
29170
|
+
exchange: {
|
|
29171
|
+
__typename: "ExchangeAmountWithChange";
|
|
29172
|
+
current: {
|
|
29173
|
+
__typename: "ExchangeAmount";
|
|
29174
|
+
value: _aave_types.BigDecimal;
|
|
29175
|
+
name: string;
|
|
29176
|
+
symbol: string;
|
|
29177
|
+
icon: string;
|
|
29178
|
+
decimals: number;
|
|
29179
|
+
};
|
|
29180
|
+
change: {
|
|
29181
|
+
__typename: "PercentNumber";
|
|
29182
|
+
onChainValue: bigint;
|
|
29183
|
+
decimals: number;
|
|
29184
|
+
value: _aave_types.BigDecimal;
|
|
29185
|
+
normalized: _aave_types.BigDecimal;
|
|
29186
|
+
};
|
|
29162
29187
|
};
|
|
29163
29188
|
};
|
|
29164
29189
|
totalSupplied: {
|
|
@@ -29236,19 +29261,40 @@ declare const AssetSummaryFragment: gql_tada.TadaDocumentNode<{
|
|
|
29236
29261
|
};
|
|
29237
29262
|
};
|
|
29238
29263
|
totalBorrowCap: {
|
|
29239
|
-
__typename: "
|
|
29240
|
-
|
|
29241
|
-
__typename: "
|
|
29242
|
-
|
|
29243
|
-
|
|
29244
|
-
|
|
29264
|
+
__typename: "AssetAmountWithChange";
|
|
29265
|
+
amount: {
|
|
29266
|
+
__typename: "DecimalNumberWithChange";
|
|
29267
|
+
current: {
|
|
29268
|
+
__typename: "DecimalNumber";
|
|
29269
|
+
onChainValue: bigint;
|
|
29270
|
+
decimals: number;
|
|
29271
|
+
value: _aave_types.BigDecimal;
|
|
29272
|
+
};
|
|
29273
|
+
change: {
|
|
29274
|
+
__typename: "PercentNumber";
|
|
29275
|
+
onChainValue: bigint;
|
|
29276
|
+
decimals: number;
|
|
29277
|
+
value: _aave_types.BigDecimal;
|
|
29278
|
+
normalized: _aave_types.BigDecimal;
|
|
29279
|
+
};
|
|
29245
29280
|
};
|
|
29246
|
-
|
|
29247
|
-
__typename: "
|
|
29248
|
-
|
|
29249
|
-
|
|
29250
|
-
|
|
29251
|
-
|
|
29281
|
+
exchange: {
|
|
29282
|
+
__typename: "ExchangeAmountWithChange";
|
|
29283
|
+
current: {
|
|
29284
|
+
__typename: "ExchangeAmount";
|
|
29285
|
+
value: _aave_types.BigDecimal;
|
|
29286
|
+
name: string;
|
|
29287
|
+
symbol: string;
|
|
29288
|
+
icon: string;
|
|
29289
|
+
decimals: number;
|
|
29290
|
+
};
|
|
29291
|
+
change: {
|
|
29292
|
+
__typename: "PercentNumber";
|
|
29293
|
+
onChainValue: bigint;
|
|
29294
|
+
decimals: number;
|
|
29295
|
+
value: _aave_types.BigDecimal;
|
|
29296
|
+
normalized: _aave_types.BigDecimal;
|
|
29297
|
+
};
|
|
29252
29298
|
};
|
|
29253
29299
|
};
|
|
29254
29300
|
totalBorrowed: {
|
|
@@ -29388,19 +29434,40 @@ declare const AssetFragment: gql_tada.TadaDocumentNode<{
|
|
|
29388
29434
|
summary: {
|
|
29389
29435
|
__typename: "AssetSummary";
|
|
29390
29436
|
totalSupplyCap: {
|
|
29391
|
-
__typename: "
|
|
29392
|
-
|
|
29393
|
-
__typename: "
|
|
29394
|
-
|
|
29395
|
-
|
|
29396
|
-
|
|
29437
|
+
__typename: "AssetAmountWithChange";
|
|
29438
|
+
amount: {
|
|
29439
|
+
__typename: "DecimalNumberWithChange";
|
|
29440
|
+
current: {
|
|
29441
|
+
__typename: "DecimalNumber";
|
|
29442
|
+
onChainValue: bigint;
|
|
29443
|
+
decimals: number;
|
|
29444
|
+
value: _aave_types.BigDecimal;
|
|
29445
|
+
};
|
|
29446
|
+
change: {
|
|
29447
|
+
__typename: "PercentNumber";
|
|
29448
|
+
onChainValue: bigint;
|
|
29449
|
+
decimals: number;
|
|
29450
|
+
value: _aave_types.BigDecimal;
|
|
29451
|
+
normalized: _aave_types.BigDecimal;
|
|
29452
|
+
};
|
|
29397
29453
|
};
|
|
29398
|
-
|
|
29399
|
-
__typename: "
|
|
29400
|
-
|
|
29401
|
-
|
|
29402
|
-
|
|
29403
|
-
|
|
29454
|
+
exchange: {
|
|
29455
|
+
__typename: "ExchangeAmountWithChange";
|
|
29456
|
+
current: {
|
|
29457
|
+
__typename: "ExchangeAmount";
|
|
29458
|
+
value: _aave_types.BigDecimal;
|
|
29459
|
+
name: string;
|
|
29460
|
+
symbol: string;
|
|
29461
|
+
icon: string;
|
|
29462
|
+
decimals: number;
|
|
29463
|
+
};
|
|
29464
|
+
change: {
|
|
29465
|
+
__typename: "PercentNumber";
|
|
29466
|
+
onChainValue: bigint;
|
|
29467
|
+
decimals: number;
|
|
29468
|
+
value: _aave_types.BigDecimal;
|
|
29469
|
+
normalized: _aave_types.BigDecimal;
|
|
29470
|
+
};
|
|
29404
29471
|
};
|
|
29405
29472
|
};
|
|
29406
29473
|
totalSupplied: {
|
|
@@ -29478,19 +29545,40 @@ declare const AssetFragment: gql_tada.TadaDocumentNode<{
|
|
|
29478
29545
|
};
|
|
29479
29546
|
};
|
|
29480
29547
|
totalBorrowCap: {
|
|
29481
|
-
__typename: "
|
|
29482
|
-
|
|
29483
|
-
__typename: "
|
|
29484
|
-
|
|
29485
|
-
|
|
29486
|
-
|
|
29548
|
+
__typename: "AssetAmountWithChange";
|
|
29549
|
+
amount: {
|
|
29550
|
+
__typename: "DecimalNumberWithChange";
|
|
29551
|
+
current: {
|
|
29552
|
+
__typename: "DecimalNumber";
|
|
29553
|
+
onChainValue: bigint;
|
|
29554
|
+
decimals: number;
|
|
29555
|
+
value: _aave_types.BigDecimal;
|
|
29556
|
+
};
|
|
29557
|
+
change: {
|
|
29558
|
+
__typename: "PercentNumber";
|
|
29559
|
+
onChainValue: bigint;
|
|
29560
|
+
decimals: number;
|
|
29561
|
+
value: _aave_types.BigDecimal;
|
|
29562
|
+
normalized: _aave_types.BigDecimal;
|
|
29563
|
+
};
|
|
29487
29564
|
};
|
|
29488
|
-
|
|
29489
|
-
__typename: "
|
|
29490
|
-
|
|
29491
|
-
|
|
29492
|
-
|
|
29493
|
-
|
|
29565
|
+
exchange: {
|
|
29566
|
+
__typename: "ExchangeAmountWithChange";
|
|
29567
|
+
current: {
|
|
29568
|
+
__typename: "ExchangeAmount";
|
|
29569
|
+
value: _aave_types.BigDecimal;
|
|
29570
|
+
name: string;
|
|
29571
|
+
symbol: string;
|
|
29572
|
+
icon: string;
|
|
29573
|
+
decimals: number;
|
|
29574
|
+
};
|
|
29575
|
+
change: {
|
|
29576
|
+
__typename: "PercentNumber";
|
|
29577
|
+
onChainValue: bigint;
|
|
29578
|
+
decimals: number;
|
|
29579
|
+
value: _aave_types.BigDecimal;
|
|
29580
|
+
normalized: _aave_types.BigDecimal;
|
|
29581
|
+
};
|
|
29494
29582
|
};
|
|
29495
29583
|
};
|
|
29496
29584
|
totalBorrowed: {
|
|
@@ -29653,19 +29741,40 @@ declare const AssetQuery: gql_tada.TadaDocumentNode<{
|
|
|
29653
29741
|
summary: {
|
|
29654
29742
|
__typename: "AssetSummary";
|
|
29655
29743
|
totalSupplyCap: {
|
|
29656
|
-
__typename: "
|
|
29657
|
-
|
|
29658
|
-
__typename: "
|
|
29659
|
-
|
|
29660
|
-
|
|
29661
|
-
|
|
29744
|
+
__typename: "AssetAmountWithChange";
|
|
29745
|
+
amount: {
|
|
29746
|
+
__typename: "DecimalNumberWithChange";
|
|
29747
|
+
current: {
|
|
29748
|
+
__typename: "DecimalNumber";
|
|
29749
|
+
onChainValue: bigint;
|
|
29750
|
+
decimals: number;
|
|
29751
|
+
value: _aave_types.BigDecimal;
|
|
29752
|
+
};
|
|
29753
|
+
change: {
|
|
29754
|
+
__typename: "PercentNumber";
|
|
29755
|
+
onChainValue: bigint;
|
|
29756
|
+
decimals: number;
|
|
29757
|
+
value: _aave_types.BigDecimal;
|
|
29758
|
+
normalized: _aave_types.BigDecimal;
|
|
29759
|
+
};
|
|
29662
29760
|
};
|
|
29663
|
-
|
|
29664
|
-
__typename: "
|
|
29665
|
-
|
|
29666
|
-
|
|
29667
|
-
|
|
29668
|
-
|
|
29761
|
+
exchange: {
|
|
29762
|
+
__typename: "ExchangeAmountWithChange";
|
|
29763
|
+
current: {
|
|
29764
|
+
__typename: "ExchangeAmount";
|
|
29765
|
+
value: _aave_types.BigDecimal;
|
|
29766
|
+
name: string;
|
|
29767
|
+
symbol: string;
|
|
29768
|
+
icon: string;
|
|
29769
|
+
decimals: number;
|
|
29770
|
+
};
|
|
29771
|
+
change: {
|
|
29772
|
+
__typename: "PercentNumber";
|
|
29773
|
+
onChainValue: bigint;
|
|
29774
|
+
decimals: number;
|
|
29775
|
+
value: _aave_types.BigDecimal;
|
|
29776
|
+
normalized: _aave_types.BigDecimal;
|
|
29777
|
+
};
|
|
29669
29778
|
};
|
|
29670
29779
|
};
|
|
29671
29780
|
totalSupplied: {
|
|
@@ -29743,19 +29852,40 @@ declare const AssetQuery: gql_tada.TadaDocumentNode<{
|
|
|
29743
29852
|
};
|
|
29744
29853
|
};
|
|
29745
29854
|
totalBorrowCap: {
|
|
29746
|
-
__typename: "
|
|
29747
|
-
|
|
29748
|
-
__typename: "
|
|
29749
|
-
|
|
29750
|
-
|
|
29751
|
-
|
|
29855
|
+
__typename: "AssetAmountWithChange";
|
|
29856
|
+
amount: {
|
|
29857
|
+
__typename: "DecimalNumberWithChange";
|
|
29858
|
+
current: {
|
|
29859
|
+
__typename: "DecimalNumber";
|
|
29860
|
+
onChainValue: bigint;
|
|
29861
|
+
decimals: number;
|
|
29862
|
+
value: _aave_types.BigDecimal;
|
|
29863
|
+
};
|
|
29864
|
+
change: {
|
|
29865
|
+
__typename: "PercentNumber";
|
|
29866
|
+
onChainValue: bigint;
|
|
29867
|
+
decimals: number;
|
|
29868
|
+
value: _aave_types.BigDecimal;
|
|
29869
|
+
normalized: _aave_types.BigDecimal;
|
|
29870
|
+
};
|
|
29752
29871
|
};
|
|
29753
|
-
|
|
29754
|
-
__typename: "
|
|
29755
|
-
|
|
29756
|
-
|
|
29757
|
-
|
|
29758
|
-
|
|
29872
|
+
exchange: {
|
|
29873
|
+
__typename: "ExchangeAmountWithChange";
|
|
29874
|
+
current: {
|
|
29875
|
+
__typename: "ExchangeAmount";
|
|
29876
|
+
value: _aave_types.BigDecimal;
|
|
29877
|
+
name: string;
|
|
29878
|
+
symbol: string;
|
|
29879
|
+
icon: string;
|
|
29880
|
+
decimals: number;
|
|
29881
|
+
};
|
|
29882
|
+
change: {
|
|
29883
|
+
__typename: "PercentNumber";
|
|
29884
|
+
onChainValue: bigint;
|
|
29885
|
+
decimals: number;
|
|
29886
|
+
value: _aave_types.BigDecimal;
|
|
29887
|
+
normalized: _aave_types.BigDecimal;
|
|
29888
|
+
};
|
|
29759
29889
|
};
|
|
29760
29890
|
};
|
|
29761
29891
|
totalBorrowed: {
|
|
@@ -37805,11 +37935,27 @@ declare const TokenSwapQuoteQuery: gql_tada.TadaDocumentNode<{
|
|
|
37805
37935
|
};
|
|
37806
37936
|
} | {
|
|
37807
37937
|
limit: {
|
|
37808
|
-
|
|
37809
|
-
|
|
37810
|
-
|
|
37811
|
-
|
|
37812
|
-
|
|
37938
|
+
previousQuoteId?: SwapQuoteId | null | undefined;
|
|
37939
|
+
kind?: SwapKind | null | undefined;
|
|
37940
|
+
receiver?: _aave_types.EvmAddress | null | undefined;
|
|
37941
|
+
user: _aave_types.EvmAddress;
|
|
37942
|
+
buy: {
|
|
37943
|
+
native: _aave_types.BigDecimal;
|
|
37944
|
+
} | {
|
|
37945
|
+
erc20: {
|
|
37946
|
+
value: _aave_types.BigDecimal;
|
|
37947
|
+
address: _aave_types.EvmAddress;
|
|
37948
|
+
};
|
|
37949
|
+
};
|
|
37950
|
+
sell: {
|
|
37951
|
+
native: _aave_types.BigDecimal;
|
|
37952
|
+
} | {
|
|
37953
|
+
erc20: {
|
|
37954
|
+
value: _aave_types.BigDecimal;
|
|
37955
|
+
address: _aave_types.EvmAddress;
|
|
37956
|
+
};
|
|
37957
|
+
};
|
|
37958
|
+
chainId: _aave_types.ChainId;
|
|
37813
37959
|
};
|
|
37814
37960
|
} | {
|
|
37815
37961
|
fromQuote: {
|
|
@@ -37821,7 +37967,7 @@ declare const TokenSwapQuoteQuery: gql_tada.TadaDocumentNode<{
|
|
|
37821
37967
|
type TokenSwapQuoteRequest = RequestOf<typeof TokenSwapQuoteQuery>;
|
|
37822
37968
|
type MarketOrderTokenSwapQuoteInput = ReturnType<typeof graphql.scalar<'MarketOrderTokenSwapQuoteInput'>>;
|
|
37823
37969
|
type LimitOrderTokenSwapQuoteInput = ReturnType<typeof graphql.scalar<'LimitOrderTokenSwapQuoteInput'>>;
|
|
37824
|
-
type
|
|
37970
|
+
type MarketOrderTokenSwapFromQuoteInput = ReturnType<typeof graphql.scalar<'MarketOrderTokenSwapFromQuoteInput'>>;
|
|
37825
37971
|
/**
|
|
37826
37972
|
* @internal
|
|
37827
37973
|
*/
|
|
@@ -49499,11 +49645,12 @@ declare const PreparePositionSwapQuery: gql_tada.TadaDocumentNode<{
|
|
|
49499
49645
|
}, void>;
|
|
49500
49646
|
type PreparePositionSwapRequest = RequestOf<typeof PreparePositionSwapQuery>;
|
|
49501
49647
|
type CancelIntentSwapInput = ReturnType<typeof graphql.scalar<'CancelIntentSwapInput'>>;
|
|
49502
|
-
type PrepareLimitOrderSwapInput = ReturnType<typeof graphql.scalar<'PrepareLimitOrderSwapInput'>>;
|
|
49503
|
-
type PrepareMarketOrderSwapInput = ReturnType<typeof graphql.scalar<'PrepareMarketOrderSwapInput'>>;
|
|
49504
49648
|
type SwapByIntentInput = ReturnType<typeof graphql.scalar<'SwapByIntentInput'>>;
|
|
49505
49649
|
type SwapWithTransactionInput = ReturnType<typeof graphql.scalar<'SwapWithTransactionInput'>>;
|
|
49506
49650
|
type SwappableTokensRequestQuery = ReturnType<typeof graphql.scalar<'SwappableTokensRequestQuery'>>;
|
|
49651
|
+
type SwapTokenInput = ReturnType<typeof graphql.scalar<'SwapTokenInput'>>;
|
|
49652
|
+
type SwapErc20Input = ReturnType<typeof graphql.scalar<'SwapErc20Input'>>;
|
|
49653
|
+
type SwappableTokenInput = ReturnType<typeof graphql.scalar<'SwappableTokenInput'>>;
|
|
49507
49654
|
|
|
49508
49655
|
/**
|
|
49509
49656
|
* @internal
|
|
@@ -70776,6 +70923,14 @@ declare const UserPositionsQuery: gql_tada.TadaDocumentNode<{
|
|
|
70776
70923
|
normalized: _aave_types.BigDecimal;
|
|
70777
70924
|
};
|
|
70778
70925
|
};
|
|
70926
|
+
netAccruedInterest: {
|
|
70927
|
+
__typename: "ExchangeAmount";
|
|
70928
|
+
value: _aave_types.BigDecimal;
|
|
70929
|
+
name: string;
|
|
70930
|
+
symbol: string;
|
|
70931
|
+
icon: string;
|
|
70932
|
+
decimals: number;
|
|
70933
|
+
};
|
|
70779
70934
|
totalCollateral: {
|
|
70780
70935
|
__typename: "ExchangeAmountWithChange";
|
|
70781
70936
|
current: {
|
|
@@ -71092,6 +71247,14 @@ declare const UserPositionQuery: gql_tada.TadaDocumentNode<{
|
|
|
71092
71247
|
normalized: _aave_types.BigDecimal;
|
|
71093
71248
|
};
|
|
71094
71249
|
};
|
|
71250
|
+
netAccruedInterest: {
|
|
71251
|
+
__typename: "ExchangeAmount";
|
|
71252
|
+
value: _aave_types.BigDecimal;
|
|
71253
|
+
name: string;
|
|
71254
|
+
symbol: string;
|
|
71255
|
+
icon: string;
|
|
71256
|
+
decimals: number;
|
|
71257
|
+
};
|
|
71095
71258
|
totalCollateral: {
|
|
71096
71259
|
__typename: "ExchangeAmountWithChange";
|
|
71097
71260
|
current: {
|
|
@@ -71729,5 +71892,8 @@ declare const UserRiskPremiumBreakdownQuery: gql_tada.TadaDocumentNode<{
|
|
|
71729
71892
|
}, void>;
|
|
71730
71893
|
type UserRiskPremiumBreakdownRequest = RequestOf<typeof UserRiskPremiumBreakdownQuery>;
|
|
71731
71894
|
type UserRiskPremiumBreakdownRequestQuery = ReturnType<typeof graphql.scalar<'UserRiskPremiumBreakdownRequestQuery'>>;
|
|
71895
|
+
type UserHub = ReturnType<typeof graphql.scalar<'UserHub'>>;
|
|
71896
|
+
type UserHubInput = ReturnType<typeof graphql.scalar<'UserHubInput'>>;
|
|
71897
|
+
type ChainTokenInput = ReturnType<typeof graphql.scalar<'ChainTokenInput'>>;
|
|
71732
71898
|
|
|
71733
|
-
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 AssetSummary, AssetSummaryFragment, AssetSupplyHistoryQuery, type AssetSupplyHistoryRequest, type AssetSupplyHistoryRequestQuery, type AssetSupplySample, AssetSupplySampleFragment, type Base64EncodedCompositeId, type BorrowActivity, BorrowActivityFragment, BorrowApyHistoryQuery, type BorrowApyHistoryRequest, BorrowQuery, type BorrowRequest, BorrowSwapKind, BorrowSwapQuoteQuery, type BorrowSwapQuoteRequest, type BorrowSwapQuoteResult, BorrowSwapQuoteResultFragment, type CancelIntentSwapInput, type CancelSwapExecutionPlan, CancelSwapExecutionPlanFragment, CancelSwapMutation, type CancelSwapRequest, type Chain, ChainFragment, ChainQuery, type ChainRequest, type ChainTokenCategories, ChainsFilter, ChainsQuery, type ChainsRequest, type ChainsRequestQuery, 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 FromQuoteSwapQuoteInput, 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 HubAssetSettings, HubAssetSettingsFragment, HubAssetStatusType, type HubAssetSummary, HubAssetSummaryFragment, type HubAssetUserState, HubAssetUserStateFragment, HubAssetsQuery, type HubAssetsRequest, 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 HubsRequestQuery, type ID, type InsufficientBalanceError, InsufficientBalanceErrorFragment, type LimitDebtSwapQuoteInput, type LimitOrderTokenSwapQuoteInput, type LimitRepayWithSupplyQuoteInput, type LimitSupplySwapQuoteInput, type LimitWithdrawSwapQuoteInput, type LiquidatePositionDebtAmount, type LiquidatePositionExecutionPlan, LiquidatePositionExecutionPlanFragment, LiquidatePositionQuery, type LiquidatePositionRequest, type LiquidatedActivity, LiquidatedActivityFragment, type LiquidationFeeVariation, LiquidationFeeVariationFragment, type MarketDebtSwapQuoteInput, type MarketOrderTokenSwapQuoteInput, type MarketRepayWithSupplyQuoteInput, type MarketSupplySwapQuoteInput, type MarketWithdrawSwapQuoteInput, type MaxLiquidationBonusVariation, MaxLiquidationBonusVariationFragment, 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 PaginatedUserSwapsResult, PaginatedUserSwapsResultFragment, type PercentNumber, type PercentNumberChangeSnapshot, PercentNumberChangeSnapshotFragment, PercentNumberFragment, type PercentNumberVariation, PercentNumberVariationFragment, type PercentNumberWithChange, PercentNumberWithChangeFragment, type PermitMessageData, PermitMessageDataFragment, type PermitRequest, PermitTypedDataQuery, type PermitTypedDataResponse, PermitTypedDataResponseFragment, type PositionAmount, PositionAmountFragment, type PositionSwapAdapterContractApproval, PositionSwapAdapterContractApprovalFragment, type PositionSwapApproval, PositionSwapApprovalFragment, type PositionSwapByIntentApprovalsRequired, PositionSwapByIntentApprovalsRequiredFragment, type PositionSwapPositionManagerApproval, PositionSwapPositionManagerApprovalFragment, type PreContractActionRequired, PreContractActionRequiredFragment, type PrepareLimitOrderSwapInput, type PrepareMarketOrderSwapInput, PreparePositionSwapQuery, type PreparePositionSwapRequest, type PreparePositionSwapResult, PreparePositionSwapResultFragment, PrepareSwapCancelQuery, type PrepareSwapCancelRequest, type PrepareSwapCancelResult, PrepareSwapCancelResultFragment, type PrepareSwapOrder, PrepareSwapOrderFragment, PrepareTokenSwapQuery, type PrepareTokenSwapRequest, type PrepareTokenSwapResult, PrepareTokenSwapResultFragment, type PreviewAction, PreviewQuery, type PreviewRequest, type PreviewUserPosition, PreviewUserPositionFragment, ProtocolHistoryQuery, type ProtocolHistoryRequest, type ProtocolHistorySample, ProtocolHistorySampleFragment, RenounceSpokeUserPositionManagerQuery, type RenounceSpokeUserPositionManagerRequest, type RepayActivity, RepayActivityFragment, type RepayAmountInputWithPermit, type RepayErc20AmountInputWithPermit, type RepayPermitRequest, RepayQuery, type RepayRequest, 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, 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 SupplyActivity, SupplyActivityFragment, SupplyApyHistoryQuery, type SupplyApyHistoryRequest, type SupplyPermitRequest, SupplyQuery, type SupplyRequest, SupplySwapKind, SupplySwapQuoteQuery, type SupplySwapQuoteRequest, type SupplySwapQuoteResult, SupplySwapQuoteResultFragment, type SwapAmount, SwapAmountFragment, type SwapByIntent, SwapByIntentFragment, type SwapByIntentInput, type SwapByIntentWithApprovalRequired, SwapByIntentWithApprovalRequiredFragment, type SwapByTransaction, SwapByTransactionFragment, type SwapCancelled, SwapCancelledFragment, type SwapExecutionPlan, SwapExecutionPlanFragment, type SwapExpired, SwapExpiredFragment, type SwapFulfilled, SwapFulfilledFragment, type SwapId, SwapKind, SwapMutation, type SwapOpen, SwapOpenFragment, type SwapPendingSignature, SwapPendingSignatureFragment, type SwapQuote, type SwapQuoteCosts, SwapQuoteCostsFragment, SwapQuoteFragment, type SwapQuoteId, type SwapReceipt, SwapReceiptFragment, type SwapRequest, type SwapStatus, SwapStatusFilter, SwapStatusFragment, SwapStatusQuery, type SwapStatusRequest, type SwapTransactionRequest, SwapTransactionRequestFragment, type SwapTypedData, SwapTypedDataFragment, type SwapWithTransactionInput, SwappableTokensQuery, type SwappableTokensRequest, type SwappableTokensRequestQuery, TimeWindow, type Token, type TokenAmount, TokenAmountFragment, TokenCategory, TokenFragment, type TokenInfo, TokenInfoFragment, type TokenInfoId, type TokenInput, TokenSwapQuoteQuery, type TokenSwapQuoteRequest, type TokenSwapQuoteResult, TokenSwapQuoteResultFragment, type TransactionRequest, TransactionRequestFragment, type TxHashInput, type TypeDefinition, TypeDefinitionFragment, type TypeField, TypeFieldFragment, 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 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, WithdrawSwapKind, WithdrawSwapQuoteQuery, type WithdrawSwapQuoteRequest, type WithdrawSwapQuoteResult, WithdrawSwapQuoteResultFragment, assetId, decodeHubId, decodeReserveId, decodeUserPositionId, encodeHubId, encodeReserveId, encodeSpokeId, encodeUserPositionId, graphql, hubAssetId, hubId, isChainIdsVariant, isERC20PermitSignature, isHubInputVariant, isSpokeInputVariant, isTxHashInputVariant, reserveId, spokeId, swapId, swapQuoteId, tokenInfoId, userBalanceId, userBorrowItemId, userPositionId, userSupplyItemId };
|
|
71899
|
+
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 AssetSummary, AssetSummaryFragment, AssetSupplyHistoryQuery, type AssetSupplyHistoryRequest, type AssetSupplyHistoryRequestQuery, type AssetSupplySample, AssetSupplySampleFragment, type Base64EncodedCompositeId, type BorrowActivity, BorrowActivityFragment, BorrowApyHistoryQuery, type BorrowApyHistoryRequest, BorrowQuery, type BorrowRequest, 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, 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 HubAssetSettings, HubAssetSettingsFragment, HubAssetStatusType, 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 LimitDebtSwapQuoteInput, type LimitOrderTokenSwapQuoteInput, type LimitRepayWithSupplyQuoteInput, type LimitSupplySwapQuoteInput, type LimitWithdrawSwapQuoteInput, 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 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 PaginatedUserSwapsResult, PaginatedUserSwapsResultFragment, type PercentNumber, type PercentNumberChangeSnapshot, PercentNumberChangeSnapshotFragment, PercentNumberFragment, type PercentNumberVariation, PercentNumberVariationFragment, type PercentNumberWithChange, PercentNumberWithChangeFragment, type PermitMessageData, PermitMessageDataFragment, type PermitRequest, PermitTypedDataQuery, type PermitTypedDataResponse, PermitTypedDataResponseFragment, type PositionAmount, PositionAmountFragment, type PositionSwapAdapterContractApproval, PositionSwapAdapterContractApprovalFragment, type PositionSwapApproval, PositionSwapApprovalFragment, type PositionSwapByIntentApprovalsRequired, PositionSwapByIntentApprovalsRequiredFragment, type PositionSwapPositionManagerApproval, PositionSwapPositionManagerApprovalFragment, type PreContractActionRequired, PreContractActionRequiredFragment, PreparePositionSwapQuery, type PreparePositionSwapRequest, type PreparePositionSwapResult, PreparePositionSwapResultFragment, PrepareSwapCancelQuery, type PrepareSwapCancelRequest, type PrepareSwapCancelResult, PrepareSwapCancelResultFragment, type PrepareSwapOrder, PrepareSwapOrderFragment, PrepareTokenSwapQuery, type PrepareTokenSwapRequest, type PrepareTokenSwapResult, PrepareTokenSwapResultFragment, type PreviewAction, PreviewQuery, type PreviewRequest, type PreviewUserPosition, PreviewUserPositionFragment, ProtocolHistoryQuery, type ProtocolHistoryRequest, type ProtocolHistorySample, ProtocolHistorySampleFragment, RenounceSpokeUserPositionManagerQuery, type RenounceSpokeUserPositionManagerRequest, type RepayActivity, RepayActivityFragment, type RepayAmountInputWithPermit, type RepayErc20AmountInputWithPermit, type RepayPermitRequest, RepayQuery, type RepayRequest, 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, 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 SupplyActivity, SupplyActivityFragment, SupplyApyHistoryQuery, type SupplyApyHistoryRequest, type SupplyPermitRequest, SupplyQuery, type SupplyRequest, SupplySwapKind, SupplySwapQuoteQuery, type SupplySwapQuoteRequest, type SupplySwapQuoteResult, SupplySwapQuoteResultFragment, type SwapAmount, SwapAmountFragment, type SwapByIntent, SwapByIntentFragment, type SwapByIntentInput, type SwapByIntentWithApprovalRequired, SwapByIntentWithApprovalRequiredFragment, type SwapByTransaction, SwapByTransactionFragment, type SwapCancelled, SwapCancelledFragment, type SwapErc20Input, type SwapExecutionPlan, SwapExecutionPlanFragment, type SwapExpired, SwapExpiredFragment, type SwapFulfilled, SwapFulfilledFragment, type SwapId, SwapKind, SwapMutation, type SwapOpen, SwapOpenFragment, 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, TokenSwapQuoteQuery, type TokenSwapQuoteRequest, type TokenSwapQuoteResult, TokenSwapQuoteResultFragment, type TransactionRequest, TransactionRequestFragment, type TxHashInput, type TypeDefinition, TypeDefinitionFragment, type TypeField, TypeFieldFragment, 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 UserHub, type UserHubInput, 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, WithdrawSwapKind, WithdrawSwapQuoteQuery, type WithdrawSwapQuoteRequest, type WithdrawSwapQuoteResult, WithdrawSwapQuoteResultFragment, assetId, decodeHubId, decodeReserveId, decodeUserPositionId, encodeHubId, encodeReserveId, encodeSpokeId, encodeUserPositionId, graphql, hubAssetId, hubId, isChainIdsVariant, isERC20PermitSignature, isHubInputVariant, isSpokeInputVariant, isTxHashInputVariant, reserveId, spokeId, swapId, swapQuoteId, tokenInfoId, userBalanceId, userBorrowItemId, userPositionId, userSupplyItemId };
|