@aave/graphql 0.6.1 → 0.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +127 -94
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +254 -50
- package/dist/index.d.ts +254 -50
- package/dist/index.js +127 -94
- package/dist/index.js.map +1 -1
- package/dist/test-utils.cjs +123 -4
- package/dist/test-utils.cjs.map +1 -1
- package/dist/test-utils.js +123 -4
- package/dist/test-utils.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _aave_types from '@aave/types';
|
|
2
|
-
import { BigDecimal, BigIntString, BlockchainData, ChainId, Cursor, DateTime, EvmAddress,
|
|
2
|
+
import { BigDecimal, BigIntString, BlockchainData, ChainId, Cursor, DateTime, EvmAddress, ID, Signature, TxHash, Void, AnySelectionSet, TypedSelectionSet, AnyVariables } from '@aave/types';
|
|
3
3
|
import * as gql_tada from 'gql.tada';
|
|
4
4
|
import { initGraphQLTada, TadaDocumentNode, DocumentDecoration, FragmentOf } from 'gql.tada';
|
|
5
5
|
export { FragmentOf } from 'gql.tada';
|
|
@@ -44,7 +44,10 @@ declare enum OperationType {
|
|
|
44
44
|
VaultFeeUpdated = "VAULT_FEE_UPDATED",
|
|
45
45
|
VaultFeeWithdrawn = "VAULT_FEE_WITHDRAWN",
|
|
46
46
|
VaultWithdraw = "VAULT_WITHDRAW",
|
|
47
|
-
Liquidation = "LIQUIDATION"
|
|
47
|
+
Liquidation = "LIQUIDATION",
|
|
48
|
+
VaultTransfer = "VAULT_TRANSFER",
|
|
49
|
+
RevenueSplitterOwnerDeployed = "REVENUE_SPLITTER_OWNER_DEPLOYED",
|
|
50
|
+
RevenueSplitterOwnerTransfer = "REVENUE_SPLITTER_OWNER_TRANSFER"
|
|
48
51
|
}
|
|
49
52
|
/**
|
|
50
53
|
* The filter for chains.
|
|
@@ -136,7 +139,7 @@ type introspection_types = {
|
|
|
136
139
|
'MeritSupplyIncentive': { kind: 'OBJECT'; name: 'MeritSupplyIncentive'; fields: { 'claimLink': { name: 'claimLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; } }; 'extraSupplyApr': { name: 'extraSupplyApr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; }; };
|
|
137
140
|
'MessageData': { kind: 'OBJECT'; name: 'MessageData'; fields: { 'deadline': { name: 'deadline'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'nonce': { name: 'nonce'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'spender': { name: 'spender'; 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; }; } }; }; };
|
|
138
141
|
'NativeCurrency': { kind: 'OBJECT'; name: 'NativeCurrency'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'imageUrl': { name: 'imageUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; 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; }; } }; 'wrappedToken': { name: 'wrappedToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; };
|
|
139
|
-
'OperationType': { name: 'OperationType'; enumValues: 'BORROW' | 'REPAY' | 'RESERVE_USED_AS_COLLATERAL_ENABLED' | 'RESERVE_USED_AS_COLLATERAL_DISABLED' | 'SUPPLY' | 'USER_EMODE_SET' | 'WITHDRAW' | 'VAULT_DEPLOYED' | 'VAULT_DEPOSIT' | 'VAULT_FEE_UPDATED' | 'VAULT_FEE_WITHDRAWN' | 'VAULT_WITHDRAW' | 'LIQUIDATION'; };
|
|
142
|
+
'OperationType': { name: 'OperationType'; enumValues: 'BORROW' | 'REPAY' | 'RESERVE_USED_AS_COLLATERAL_ENABLED' | 'RESERVE_USED_AS_COLLATERAL_DISABLED' | 'SUPPLY' | 'USER_EMODE_SET' | 'WITHDRAW' | 'VAULT_DEPLOYED' | 'VAULT_DEPOSIT' | 'VAULT_FEE_UPDATED' | 'VAULT_FEE_WITHDRAWN' | 'VAULT_WITHDRAW' | 'VAULT_TRANSFER' | 'REVENUE_SPLITTER_OWNER_DEPLOYED' | 'REVENUE_SPLITTER_OWNER_TRANSFER' | 'LIQUIDATION'; };
|
|
140
143
|
'OrderDirection': { name: 'OrderDirection'; enumValues: 'ASC' | 'DESC'; };
|
|
141
144
|
'PageSize': { name: 'PageSize'; enumValues: 'TEN' | 'FIFTY'; };
|
|
142
145
|
'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; } }; }; };
|
|
@@ -147,12 +150,12 @@ type introspection_types = {
|
|
|
147
150
|
'PermitRequest': { kind: 'INPUT_OBJECT'; name: 'PermitRequest'; isOneOf: false; inputFields: [{ name: 'spender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'currency'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
|
|
148
151
|
'PermitTypedDataResponse': { kind: 'OBJECT'; name: 'PermitTypedDataResponse'; 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: 'OBJECT'; name: 'MessageData'; 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: 'OBJECT'; name: 'TypeDefinition'; ofType: null; }; } }; }; };
|
|
149
152
|
'PreviewAction': { kind: 'INPUT_OBJECT'; name: 'PreviewAction'; isOneOf: true; inputFields: [{ name: 'supply'; type: { kind: 'INPUT_OBJECT'; name: 'SupplyRequest'; ofType: null; }; defaultValue: null }, { name: 'borrow'; type: { kind: 'INPUT_OBJECT'; name: 'BorrowRequest'; ofType: null; }; defaultValue: null }, { name: 'repay'; type: { kind: 'INPUT_OBJECT'; name: 'RepayRequest'; ofType: null; }; defaultValue: null }, { name: 'withdraw'; type: { kind: 'INPUT_OBJECT'; name: 'WithdrawRequest'; ofType: null; }; defaultValue: null }]; };
|
|
150
|
-
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'approveBorrowCreditDelegation': { name: 'approveBorrowCreditDelegation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; 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; }; }; }; } }; '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; }; }; }; } }; 'collateralToggle': { name: 'collateralToggle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'creditDelegateeAllowance': { name: 'creditDelegateeAllowance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'forkTopUp': { name: 'forkTopUp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ForkTopUpResponse'; 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; }; } }; 'healthFactorPreview': { name: 'healthFactorPreview'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HealthFactorPreviewResponse'; ofType: null; }; } }; 'liquidate': { name: 'liquidate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'permitTypedData': { name: 'permitTypedData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PermitTypedDataResponse'; ofType: null; }; } }; 'repay': { name: 'repay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; } }; 'savingsGhoBalance': { name: 'savingsGhoBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'savingsGhoDeposit': { name: 'savingsGhoDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'savingsGhoWithdraw': { name: 'savingsGhoWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; 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; }; }; }; } }; 'usdExchangeRates': { name: 'usdExchangeRates'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UsdExchangeRate'; 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: 'MarketUserReserveBorrowPosition'; ofType: null; }; }; }; } }; 'userMarketState': { name: 'userMarketState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketUserState'; ofType: null; }; } }; 'userMeritRewards': { name: 'userMeritRewards'; type: { kind: 'OBJECT'; name: 'UserMeritRewards'; ofType: null; } }; 'userSetEmode': { name: 'userSetEmode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; 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: 'MarketUserReserveSupplyPosition'; ofType: null; }; }; }; } }; 'userTransactionHistory': { name: 'userTransactionHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedUserTransactionHistoryResult'; ofType: null; }; } }; 'userVaults': { name: 'userVaults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedVaultsResult'; ofType: null; }; } }; 'vault': { name: 'vault'; type: { kind: 'OBJECT'; name: 'Vault'; ofType: null; } }; 'vaultDeploy': { name: 'vaultDeploy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'vaultDeposit': { name: 'vaultDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'vaultMintShares': { name: 'vaultMintShares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'vaultPreviewDeposit': { name: 'vaultPreviewDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultPreviewMint': { name: 'vaultPreviewMint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultPreviewRedeem': { name: 'vaultPreviewRedeem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultPreviewWithdraw': { name: 'vaultPreviewWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultRedeemShares': { name: 'vaultRedeemShares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultSetFee': { name: 'vaultSetFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultUserActivity': { name: 'vaultUserActivity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'VaultUserActivityResult'; ofType: null; }; } }; 'vaultUserTransactionHistory': { name: 'vaultUserTransactionHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedVaultUserTransactionHistoryResult'; ofType: null; }; } }; 'vaultWithdraw': { name: 'vaultWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultWithdrawFees': { name: 'vaultWithdrawFees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaults': { name: 'vaults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedVaultsResult'; ofType: null; }; } }; 'withdraw': { name: 'withdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; }; };
|
|
153
|
+
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { 'approveBorrowCreditDelegation': { name: 'approveBorrowCreditDelegation'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; 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; }; }; }; } }; '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; }; }; }; } }; 'collateralToggle': { name: 'collateralToggle'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'creditDelegateeAllowance': { name: 'creditDelegateeAllowance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'forkTopUp': { name: 'forkTopUp'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ForkTopUpResponse'; 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; }; } }; 'healthFactorPreview': { name: 'healthFactorPreview'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'HealthFactorPreviewResponse'; ofType: null; }; } }; 'liquidate': { name: 'liquidate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'market': { name: 'market'; type: { kind: 'OBJECT'; name: 'Market'; ofType: null; } }; 'markets': { name: 'markets'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Market'; ofType: null; }; }; }; } }; 'permitTypedData': { name: 'permitTypedData'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PermitTypedDataResponse'; ofType: null; }; } }; 'repay': { name: 'repay'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; } }; 'savingsGhoBalance': { name: 'savingsGhoBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'savingsGhoDeposit': { name: 'savingsGhoDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'savingsGhoWithdraw': { name: 'savingsGhoWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; 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; }; }; }; } }; 'usdExchangeRates': { name: 'usdExchangeRates'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'UsdExchangeRate'; 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: 'MarketUserReserveBorrowPosition'; ofType: null; }; }; }; } }; 'userMarketState': { name: 'userMarketState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketUserState'; ofType: null; }; } }; 'userMeritRewards': { name: 'userMeritRewards'; type: { kind: 'OBJECT'; name: 'UserMeritRewards'; ofType: null; } }; 'userSetEmode': { name: 'userSetEmode'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; 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: 'MarketUserReserveSupplyPosition'; ofType: null; }; }; }; } }; 'userTransactionHistory': { name: 'userTransactionHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedUserTransactionHistoryResult'; ofType: null; }; } }; 'userVaults': { name: 'userVaults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedVaultsResult'; ofType: null; }; } }; 'vault': { name: 'vault'; type: { kind: 'OBJECT'; name: 'Vault'; ofType: null; } }; 'vaultCreateRecipientsConfiguration': { name: 'vaultCreateRecipientsConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultDeploy': { name: 'vaultDeploy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'vaultDeposit': { name: 'vaultDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'vaultMintShares': { name: 'vaultMintShares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; 'vaultPreviewDeposit': { name: 'vaultPreviewDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultPreviewMint': { name: 'vaultPreviewMint'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultPreviewRedeem': { name: 'vaultPreviewRedeem'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultPreviewWithdraw': { name: 'vaultPreviewWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'vaultRecipientConfiguration': { name: 'vaultRecipientConfiguration'; type: { kind: 'OBJECT'; name: 'VaultFeesRecipientsConfiguration'; ofType: null; } }; 'vaultRedeemShares': { name: 'vaultRedeemShares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultSetFee': { name: 'vaultSetFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultSetRecipientsConfiguration': { name: 'vaultSetRecipientsConfiguration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultTransferOwnership': { name: 'vaultTransferOwnership'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultUserActivity': { name: 'vaultUserActivity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'VaultUserActivityResult'; ofType: null; }; } }; 'vaultUserTransactionHistory': { name: 'vaultUserTransactionHistory'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedVaultUserTransactionHistoryResult'; ofType: null; }; } }; 'vaultWithdraw': { name: 'vaultWithdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaultWithdrawFees': { name: 'vaultWithdrawFees'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TransactionRequest'; ofType: null; }; } }; 'vaults': { name: 'vaults'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedVaultsResult'; ofType: null; }; } }; 'withdraw': { name: 'withdraw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ExecutionPlan'; ofType: null; }; } }; }; };
|
|
151
154
|
'RepayAmountInput': { kind: 'INPUT_OBJECT'; name: 'RepayAmountInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'RepayErc20AmountInput'; ofType: null; }; defaultValue: null }]; };
|
|
152
155
|
'RepayErc20Amount': { kind: 'INPUT_OBJECT'; name: 'RepayErc20Amount'; isOneOf: true; inputFields: [{ name: 'exact'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'max'; type: { kind: 'SCALAR'; name: 'AlwaysTrue'; ofType: null; }; defaultValue: null }]; };
|
|
153
156
|
'RepayErc20AmountInput': { kind: 'INPUT_OBJECT'; name: 'RepayErc20AmountInput'; isOneOf: false; inputFields: [{ name: 'currency'; 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: 'INPUT_OBJECT'; name: 'RepayErc20Amount'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'INPUT_OBJECT'; name: 'ERC712Signature'; ofType: null; }; defaultValue: null }]; };
|
|
154
157
|
'RepayRequest': { kind: 'INPUT_OBJECT'; name: 'RepayRequest'; isOneOf: false; inputFields: [{ name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'RepayAmountInput'; ofType: null; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'onBehalfOf'; type: { 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 }]; };
|
|
155
|
-
'Reserve': { kind: 'OBJECT'; name: 'Reserve'; fields: { 'aToken': { name: 'aToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Currency'; ofType: null; }; } }; 'acceptsNative': { name: 'acceptsNative'; type: { kind: 'OBJECT'; name: 'NativeCurrency'; ofType: null; } }; 'borrowInfo': { name: 'borrowInfo'; type: { kind: 'OBJECT'; name: 'ReserveBorrowInfo'; ofType: null; } }; 'eModeInfo': { name: 'eModeInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EmodeReserveInfo'; ofType: null; }; }; }; } }; 'flashLoanEnabled': { name: 'flashLoanEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'incentives': { name: 'incentives'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ReserveIncentive'; ofType: null; }; }; }; } }; 'isFrozen': { name: 'isFrozen'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPaused': { name: 'isPaused'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isolationModeConfig': { name: 'isolationModeConfig'; type: { kind: 'OBJECT'; name: 'ReserveIsolationModeConfig'; ofType: null; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketInfo'; ofType: null; }; } }; 'permitSupported': { name: 'permitSupported'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'supplyInfo': { name: 'supplyInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveSupplyInfo'; ofType: null; }; } }; 'underlyingToken': { name: 'underlyingToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Currency'; ofType: null; }; } }; 'usdExchangeRate': { name: 'usdExchangeRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'usdOracleAddress': { name: 'usdOracleAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'userState': { name: 'userState'; type: { kind: 'OBJECT'; name: 'ReserveUserState'; ofType: null; } }; 'vToken': { name: 'vToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Currency'; ofType: null; }; } }; }; };
|
|
158
|
+
'Reserve': { kind: 'OBJECT'; name: 'Reserve'; fields: { 'aToken': { name: 'aToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Currency'; ofType: null; }; } }; 'acceptsNative': { name: 'acceptsNative'; type: { kind: 'OBJECT'; name: 'NativeCurrency'; ofType: null; } }; 'borrowInfo': { name: 'borrowInfo'; type: { kind: 'OBJECT'; name: 'ReserveBorrowInfo'; ofType: null; } }; 'eModeInfo': { name: 'eModeInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'EmodeReserveInfo'; ofType: null; }; }; }; } }; 'flashLoanEnabled': { name: 'flashLoanEnabled'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'incentives': { name: 'incentives'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'ReserveIncentive'; ofType: null; }; }; }; } }; 'interestRateStrategyAddress': { name: 'interestRateStrategyAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'isFrozen': { name: 'isFrozen'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isPaused': { name: 'isPaused'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'isolationModeConfig': { name: 'isolationModeConfig'; type: { kind: 'OBJECT'; name: 'ReserveIsolationModeConfig'; ofType: null; } }; 'market': { name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'MarketInfo'; ofType: null; }; } }; 'permitSupported': { name: 'permitSupported'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'size': { name: 'size'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'supplyInfo': { name: 'supplyInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveSupplyInfo'; ofType: null; }; } }; 'underlyingToken': { name: 'underlyingToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Currency'; ofType: null; }; } }; 'usdExchangeRate': { name: 'usdExchangeRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'usdOracleAddress': { name: 'usdOracleAddress'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'userState': { name: 'userState'; type: { kind: 'OBJECT'; name: 'ReserveUserState'; ofType: null; } }; 'vToken': { name: 'vToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Currency'; ofType: null; }; } }; }; };
|
|
156
159
|
'ReserveBorrowInfo': { kind: 'OBJECT'; name: 'ReserveBorrowInfo'; fields: { 'apy': { name: 'apy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'availableLiquidity': { name: 'availableLiquidity'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'borrowCap': { name: 'borrowCap'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'borrowCapReached': { name: 'borrowCapReached'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'borrowingState': { name: 'borrowingState'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'ReserveBorrowingState'; ofType: null; }; } }; 'optimalUsageRate': { name: 'optimalUsageRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'reserveFactor': { name: 'reserveFactor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'total': { name: 'total'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'utilizationRate': { name: 'utilizationRate'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'variableRateSlope1': { name: 'variableRateSlope1'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'variableRateSlope2': { name: 'variableRateSlope2'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; }; };
|
|
157
160
|
'ReserveBorrowingState': { name: 'ReserveBorrowingState'; enumValues: 'ENABLED' | 'DISABLED' | 'USER_EMODE_DISABLED_BORROW'; };
|
|
158
161
|
'ReserveIncentive': { kind: 'UNION'; name: 'ReserveIncentive'; fields: {}; possibleTypes: 'AaveBorrowIncentive' | 'AaveSupplyIncentive' | 'MeritBorrowAndSupplyIncentiveCondition' | 'MeritBorrowIncentive' | 'MeritSupplyIncentive'; };
|
|
@@ -202,19 +205,27 @@ type introspection_types = {
|
|
|
202
205
|
'UserVaultsOrderBy': { kind: 'INPUT_OBJECT'; name: 'UserVaultsOrderBy'; isOneOf: true; inputFields: [{ name: 'shares'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }, { name: 'fee'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }]; };
|
|
203
206
|
'UserVaultsRequest': { kind: 'INPUT_OBJECT'; name: 'UserVaultsRequest'; isOneOf: false; inputFields: [{ name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'filters'; type: { kind: 'INPUT_OBJECT'; name: 'UserVaultsFilter'; ofType: null; }; defaultValue: null }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'UserVaultsOrderBy'; ofType: null; }; }; defaultValue: "{shares: ASC}" }, { name: 'pageSize'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'PageSize'; ofType: null; }; }; defaultValue: "FIFTY" }, { name: 'cursor'; type: { kind: 'SCALAR'; name: 'Cursor'; ofType: null; }; defaultValue: null }]; };
|
|
204
207
|
'UserWithdrawTransaction': { kind: 'OBJECT'; name: 'UserWithdrawTransaction'; fields: { 'amount': { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'blockExplorerUrl': { name: 'blockExplorerUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'reserve': { name: 'reserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'ReserveInfo'; 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; }; } }; }; };
|
|
205
|
-
'Vault': { kind: 'OBJECT'; name: 'Vault'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'fee': { name: 'fee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'feesBalance': { name: 'feesBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'shareName': { name: 'shareName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'shareSymbol': { name: 'shareSymbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalFeeRevenue': { name: 'totalFeeRevenue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'usedReserve': { name: 'usedReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; }; } }; 'userShares': { name: 'userShares'; type: { kind: 'OBJECT'; name: 'UserVaultShares'; ofType: null; } }; 'vaultApr': { name: 'vaultApr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; }; };
|
|
206
|
-
'
|
|
208
|
+
'Vault': { kind: 'OBJECT'; name: 'Vault'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'fee': { name: 'fee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'feesBalance': { name: 'feesBalance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'owner': { name: 'owner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'recipients': { name: 'recipients'; type: { kind: 'OBJECT'; name: 'VaultFeesRecipientsConfiguration'; ofType: null; } }; 'shareName': { name: 'shareName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'shareSymbol': { name: 'shareSymbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'totalFeeRevenue': { name: 'totalFeeRevenue'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'usedReserve': { name: 'usedReserve'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Reserve'; ofType: null; }; } }; 'userShares': { name: 'userShares'; type: { kind: 'OBJECT'; name: 'UserVaultShares'; ofType: null; } }; 'vaultApr': { name: 'vaultApr'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; }; };
|
|
209
|
+
'VaultCreateRecipientsConfigurationRequest': { kind: 'INPUT_OBJECT'; name: 'VaultCreateRecipientsConfigurationRequest'; isOneOf: false; inputFields: [{ name: 'vault'; 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 }, { name: 'recipients'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultFeesRecipientSplitInput'; ofType: null; }; }; }; }; defaultValue: null }]; };
|
|
210
|
+
'VaultDeployRequest': { kind: 'INPUT_OBJECT'; name: 'VaultDeployRequest'; isOneOf: false; inputFields: [{ name: 'underlyingToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'market'; 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 }, { name: 'deployer'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'owner'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'initialFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'shareName'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'shareSymbol'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; }; defaultValue: null }, { name: 'initialLockDeposit'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'recipients'; type: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultFeesRecipientSplitInput'; ofType: null; }; }; }; defaultValue: null }]; };
|
|
207
211
|
'VaultDepositAmountInput': { kind: 'INPUT_OBJECT'; name: 'VaultDepositAmountInput'; isOneOf: false; inputFields: [{ name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'asAToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "false" }, { name: 'permitSig'; type: { kind: 'INPUT_OBJECT'; name: 'ERC712Signature'; ofType: null; }; defaultValue: null }]; };
|
|
208
212
|
'VaultDepositRequest': { kind: 'INPUT_OBJECT'; name: 'VaultDepositRequest'; isOneOf: false; inputFields: [{ name: 'vault'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultDepositAmountInput'; ofType: null; }; }; defaultValue: null }, { name: 'depositor'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'sharesRecipient'; type: { 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 }]; };
|
|
213
|
+
'VaultFeesRecipientSplit': { kind: 'OBJECT'; name: 'VaultFeesRecipientSplit'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'isAaveLabs': { name: 'isAaveLabs'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'split': { name: 'split'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; }; };
|
|
214
|
+
'VaultFeesRecipientSplitInput': { kind: 'INPUT_OBJECT'; name: 'VaultFeesRecipientSplitInput'; isOneOf: false; inputFields: [{ name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'percent'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }]; };
|
|
215
|
+
'VaultFeesRecipientsConfiguration': { kind: 'OBJECT'; name: 'VaultFeesRecipientsConfiguration'; fields: { 'address': { name: 'address'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; 'entries': { name: 'entries'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'VaultFeesRecipientSplit'; ofType: null; }; }; }; } }; }; };
|
|
209
216
|
'VaultInput': { kind: 'INPUT_OBJECT'; name: 'VaultInput'; 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 }]; };
|
|
210
217
|
'VaultMintShareInput': { kind: 'INPUT_OBJECT'; name: 'VaultMintShareInput'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'asAToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "false" }, { name: 'permitSig'; type: { kind: 'INPUT_OBJECT'; name: 'ERC712Signature'; ofType: null; }; defaultValue: null }]; };
|
|
211
218
|
'VaultMintSharesRequest': { kind: 'INPUT_OBJECT'; name: 'VaultMintSharesRequest'; isOneOf: false; inputFields: [{ name: 'vault'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'shares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultMintShareInput'; ofType: null; }; }; defaultValue: null }, { name: 'minter'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'sharesRecipient'; type: { 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 }]; };
|
|
212
219
|
'VaultOperationPreviewRequest': { kind: 'INPUT_OBJECT'; name: 'VaultOperationPreviewRequest'; isOneOf: false; inputFields: [{ name: 'vault'; 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 }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }]; };
|
|
220
|
+
'VaultRecipientConfigurationRequest': { kind: 'INPUT_OBJECT'; name: 'VaultRecipientConfigurationRequest'; isOneOf: false; inputFields: [{ name: 'by'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultRecipientConfigurationRequestBy'; ofType: null; }; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }]; };
|
|
221
|
+
'VaultRecipientConfigurationRequestBy': { kind: 'INPUT_OBJECT'; name: 'VaultRecipientConfigurationRequestBy'; isOneOf: true; inputFields: [{ name: 'address'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; };
|
|
213
222
|
'VaultRedeemShareInput': { kind: 'INPUT_OBJECT'; name: 'VaultRedeemShareInput'; isOneOf: false; inputFields: [{ name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'asAToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; }; defaultValue: "false" }, { name: 'permitSig'; type: { kind: 'INPUT_OBJECT'; name: 'ERC712Signature'; ofType: null; }; defaultValue: null }]; };
|
|
214
223
|
'VaultRedeemSharesRequest': { kind: 'INPUT_OBJECT'; name: 'VaultRedeemSharesRequest'; isOneOf: false; inputFields: [{ name: 'vault'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'shares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultRedeemShareInput'; ofType: null; }; }; defaultValue: null }, { name: 'sharesOwner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'authorizedUser'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'recipient'; type: { 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 }]; };
|
|
215
224
|
'VaultRequest': { kind: 'INPUT_OBJECT'; name: 'VaultRequest'; isOneOf: false; inputFields: [{ name: 'by'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultRequestBy'; ofType: null; }; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }, { name: 'user'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }]; };
|
|
216
225
|
'VaultRequestBy': { kind: 'INPUT_OBJECT'; name: 'VaultRequestBy'; isOneOf: true; inputFields: [{ name: 'address'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'txHash'; type: { kind: 'SCALAR'; name: 'TxHash'; ofType: null; }; defaultValue: null }]; };
|
|
217
226
|
'VaultSetFeeRequest': { kind: 'INPUT_OBJECT'; name: 'VaultSetFeeRequest'; isOneOf: false; inputFields: [{ name: 'vault'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'newFee'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }]; };
|
|
227
|
+
'VaultSetRecipientsConfigurationRequest': { kind: 'INPUT_OBJECT'; name: 'VaultSetRecipientsConfigurationRequest'; isOneOf: false; inputFields: [{ name: 'vault'; 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 }, { name: 'configuration'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
|
|
228
|
+
'VaultTransferOwnershipRequest': { kind: 'INPUT_OBJECT'; name: 'VaultTransferOwnershipRequest'; isOneOf: false; inputFields: [{ name: 'vault'; 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 }, { name: 'newOwner'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }]; };
|
|
218
229
|
'VaultUserActivityItem': { kind: 'OBJECT'; name: 'VaultUserActivityItem'; fields: { 'balance': { name: 'balance'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'date': { name: 'date'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'DateTime'; ofType: null; }; } }; 'deposited': { name: 'deposited'; type: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; } }; 'earned': { name: 'earned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; 'withdrew': { name: 'withdrew'; type: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; } }; }; };
|
|
219
230
|
'VaultUserActivityRequest': { kind: 'INPUT_OBJECT'; name: 'VaultUserActivityRequest'; isOneOf: false; inputFields: [{ name: 'vault'; 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 }, { name: 'user'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'window'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'VaultUserActivityTimeWindow'; ofType: null; }; }; defaultValue: null }]; };
|
|
220
231
|
'VaultUserActivityResult': { kind: 'OBJECT'; name: 'VaultUserActivityResult'; fields: { 'breakdown': { name: 'breakdown'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'VaultUserActivityItem'; ofType: null; }; }; }; } }; 'earned': { name: 'earned'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; ofType: null; }; } }; }; };
|
|
@@ -274,7 +285,6 @@ declare const graphql: initGraphQLTada<{
|
|
|
274
285
|
Cursor: Cursor;
|
|
275
286
|
DateTime: DateTime;
|
|
276
287
|
EvmAddress: EvmAddress;
|
|
277
|
-
FixedBytes32: FixedBytes32;
|
|
278
288
|
Float: number;
|
|
279
289
|
ID: ID;
|
|
280
290
|
Int: number;
|
|
@@ -296,33 +306,6 @@ declare const graphql: initGraphQLTada<{
|
|
|
296
306
|
type RequestOf<Document> = Document extends DocumentDecoration<unknown, {
|
|
297
307
|
request: infer Request;
|
|
298
308
|
}> ? Request : never;
|
|
299
|
-
/**
|
|
300
|
-
* @internal
|
|
301
|
-
*/
|
|
302
|
-
type FragmentShape = NonNullable<Parameters<typeof graphql>[1]>[number];
|
|
303
|
-
type GetDocumentNode<In extends string = string, Fragments extends FragmentShape[] = FragmentShape[]> = ReturnType<typeof graphql<In, Fragments>>;
|
|
304
|
-
/**
|
|
305
|
-
* Used in unions to future-proof against new types being added.
|
|
306
|
-
*
|
|
307
|
-
* ⚠️ DO NOT MATCH ON THIS — it's here to block exhaustive checks.
|
|
308
|
-
*/
|
|
309
|
-
type __FutureProofUnion = {
|
|
310
|
-
__typename: symbol;
|
|
311
|
-
};
|
|
312
|
-
/**
|
|
313
|
-
* @internal
|
|
314
|
-
*/
|
|
315
|
-
type AnySelectionSet = object;
|
|
316
|
-
/**
|
|
317
|
-
* @internal
|
|
318
|
-
*/
|
|
319
|
-
type AnyVariables = Record<string, unknown>;
|
|
320
|
-
/**
|
|
321
|
-
* @internal
|
|
322
|
-
*/
|
|
323
|
-
type TypedSelectionSet<TTypename extends string = string> = {
|
|
324
|
-
__typename: TTypename;
|
|
325
|
-
};
|
|
326
309
|
/**
|
|
327
310
|
* @internal
|
|
328
311
|
*/
|
|
@@ -331,21 +314,7 @@ type FragmentDocumentFor<TGqlNode extends AnySelectionSet, TTypename extends str
|
|
|
331
314
|
on: TTypename;
|
|
332
315
|
masked: false;
|
|
333
316
|
}>;
|
|
334
|
-
type RequestFrom<In extends string> = RequestOf<GetDocumentNode<In, FragmentShape[]>>;
|
|
335
|
-
type StandardDocumentNode<Value = any, Request = any> = TadaDocumentNode<StandardData<Value>, {
|
|
336
|
-
request: Request;
|
|
337
|
-
}>;
|
|
338
|
-
declare function assertTypename<Typename extends string>(node: TypedSelectionSet, typename: Typename): asserts node is TypedSelectionSet<Typename>;
|
|
339
317
|
|
|
340
|
-
/**
|
|
341
|
-
* A standardized data object.
|
|
342
|
-
*
|
|
343
|
-
* All GQL operations should alias their results to `value` to ensure interoperability
|
|
344
|
-
* with this client interface.
|
|
345
|
-
*/
|
|
346
|
-
type StandardData<T> = {
|
|
347
|
-
value: T;
|
|
348
|
-
};
|
|
349
318
|
/**
|
|
350
319
|
* Criteria for ordering by user.
|
|
351
320
|
*/
|
|
@@ -708,6 +677,7 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
708
677
|
isFrozen: boolean;
|
|
709
678
|
isPaused: boolean;
|
|
710
679
|
flashLoanEnabled: boolean;
|
|
680
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
711
681
|
permitSupported: boolean;
|
|
712
682
|
supplyInfo: {
|
|
713
683
|
__typename: "ReserveSupplyInfo";
|
|
@@ -1103,6 +1073,7 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
1103
1073
|
isFrozen: boolean;
|
|
1104
1074
|
isPaused: boolean;
|
|
1105
1075
|
flashLoanEnabled: boolean;
|
|
1076
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
1106
1077
|
permitSupported: boolean;
|
|
1107
1078
|
supplyInfo: {
|
|
1108
1079
|
__typename: "ReserveSupplyInfo";
|
|
@@ -2148,6 +2119,7 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
|
|
|
2148
2119
|
isFrozen: boolean;
|
|
2149
2120
|
isPaused: boolean;
|
|
2150
2121
|
flashLoanEnabled: boolean;
|
|
2122
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
2151
2123
|
permitSupported: boolean;
|
|
2152
2124
|
supplyInfo: {
|
|
2153
2125
|
__typename: "ReserveSupplyInfo";
|
|
@@ -4770,6 +4742,44 @@ declare const UserVaultSharesFragment: gql_tada.TadaDocumentNode<{
|
|
|
4770
4742
|
masked: false;
|
|
4771
4743
|
}>;
|
|
4772
4744
|
type UserVaultShares = FragmentOf<typeof UserVaultSharesFragment>;
|
|
4745
|
+
declare const VaultFeesRecipientSplitFragment: gql_tada.TadaDocumentNode<{
|
|
4746
|
+
__typename: "VaultFeesRecipientSplit";
|
|
4747
|
+
address: _aave_types.EvmAddress;
|
|
4748
|
+
split: {
|
|
4749
|
+
__typename: "PercentValue";
|
|
4750
|
+
raw: _aave_types.BigIntString;
|
|
4751
|
+
decimals: number;
|
|
4752
|
+
value: _aave_types.BigDecimal;
|
|
4753
|
+
formatted: _aave_types.BigDecimal;
|
|
4754
|
+
};
|
|
4755
|
+
isAaveLabs: boolean;
|
|
4756
|
+
}, {}, {
|
|
4757
|
+
fragment: "VaultFeesRecipientSplit";
|
|
4758
|
+
on: "VaultFeesRecipientSplit";
|
|
4759
|
+
masked: false;
|
|
4760
|
+
}>;
|
|
4761
|
+
type VaultFeesRecipientSplit = FragmentOf<typeof VaultFeesRecipientSplitFragment>;
|
|
4762
|
+
declare const VaultFeesRecipientsConfigurationFragment: gql_tada.TadaDocumentNode<{
|
|
4763
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
4764
|
+
address: _aave_types.EvmAddress;
|
|
4765
|
+
entries: {
|
|
4766
|
+
__typename: "VaultFeesRecipientSplit";
|
|
4767
|
+
address: _aave_types.EvmAddress;
|
|
4768
|
+
split: {
|
|
4769
|
+
__typename: "PercentValue";
|
|
4770
|
+
raw: _aave_types.BigIntString;
|
|
4771
|
+
decimals: number;
|
|
4772
|
+
value: _aave_types.BigDecimal;
|
|
4773
|
+
formatted: _aave_types.BigDecimal;
|
|
4774
|
+
};
|
|
4775
|
+
isAaveLabs: boolean;
|
|
4776
|
+
}[];
|
|
4777
|
+
}, {}, {
|
|
4778
|
+
fragment: "VaultFeesRecipientsConfiguration";
|
|
4779
|
+
on: "VaultFeesRecipientsConfiguration";
|
|
4780
|
+
masked: false;
|
|
4781
|
+
}>;
|
|
4782
|
+
type VaultFeesRecipientsConfiguration = FragmentOf<typeof VaultFeesRecipientsConfigurationFragment>;
|
|
4773
4783
|
declare const VaultFragment: gql_tada.TadaDocumentNode<{
|
|
4774
4784
|
__typename: "Vault";
|
|
4775
4785
|
address: _aave_types.EvmAddress;
|
|
@@ -4845,6 +4855,7 @@ declare const VaultFragment: gql_tada.TadaDocumentNode<{
|
|
|
4845
4855
|
isFrozen: boolean;
|
|
4846
4856
|
isPaused: boolean;
|
|
4847
4857
|
flashLoanEnabled: boolean;
|
|
4858
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
4848
4859
|
permitSupported: boolean;
|
|
4849
4860
|
supplyInfo: {
|
|
4850
4861
|
__typename: "ReserveSupplyInfo";
|
|
@@ -5189,6 +5200,22 @@ declare const VaultFragment: gql_tada.TadaDocumentNode<{
|
|
|
5189
5200
|
};
|
|
5190
5201
|
usd: _aave_types.BigDecimal;
|
|
5191
5202
|
};
|
|
5203
|
+
recipients: {
|
|
5204
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
5205
|
+
address: _aave_types.EvmAddress;
|
|
5206
|
+
entries: {
|
|
5207
|
+
__typename: "VaultFeesRecipientSplit";
|
|
5208
|
+
address: _aave_types.EvmAddress;
|
|
5209
|
+
split: {
|
|
5210
|
+
__typename: "PercentValue";
|
|
5211
|
+
raw: _aave_types.BigIntString;
|
|
5212
|
+
decimals: number;
|
|
5213
|
+
value: _aave_types.BigDecimal;
|
|
5214
|
+
formatted: _aave_types.BigDecimal;
|
|
5215
|
+
};
|
|
5216
|
+
isAaveLabs: boolean;
|
|
5217
|
+
}[];
|
|
5218
|
+
} | null;
|
|
5192
5219
|
balance: {
|
|
5193
5220
|
__typename: "TokenAmount";
|
|
5194
5221
|
usdPerToken: _aave_types.BigDecimal;
|
|
@@ -5330,6 +5357,7 @@ declare const PaginatedVaultsResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
5330
5357
|
isFrozen: boolean;
|
|
5331
5358
|
isPaused: boolean;
|
|
5332
5359
|
flashLoanEnabled: boolean;
|
|
5360
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
5333
5361
|
permitSupported: boolean;
|
|
5334
5362
|
supplyInfo: {
|
|
5335
5363
|
__typename: "ReserveSupplyInfo";
|
|
@@ -5674,6 +5702,22 @@ declare const PaginatedVaultsResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
5674
5702
|
};
|
|
5675
5703
|
usd: _aave_types.BigDecimal;
|
|
5676
5704
|
};
|
|
5705
|
+
recipients: {
|
|
5706
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
5707
|
+
address: _aave_types.EvmAddress;
|
|
5708
|
+
entries: {
|
|
5709
|
+
__typename: "VaultFeesRecipientSplit";
|
|
5710
|
+
address: _aave_types.EvmAddress;
|
|
5711
|
+
split: {
|
|
5712
|
+
__typename: "PercentValue";
|
|
5713
|
+
raw: _aave_types.BigIntString;
|
|
5714
|
+
decimals: number;
|
|
5715
|
+
value: _aave_types.BigDecimal;
|
|
5716
|
+
formatted: _aave_types.BigDecimal;
|
|
5717
|
+
};
|
|
5718
|
+
isAaveLabs: boolean;
|
|
5719
|
+
}[];
|
|
5720
|
+
} | null;
|
|
5677
5721
|
balance: {
|
|
5678
5722
|
__typename: "TokenAmount";
|
|
5679
5723
|
usdPerToken: _aave_types.BigDecimal;
|
|
@@ -6440,6 +6484,7 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
6440
6484
|
isFrozen: boolean;
|
|
6441
6485
|
isPaused: boolean;
|
|
6442
6486
|
flashLoanEnabled: boolean;
|
|
6487
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
6443
6488
|
permitSupported: boolean;
|
|
6444
6489
|
supplyInfo: {
|
|
6445
6490
|
__typename: "ReserveSupplyInfo";
|
|
@@ -6835,6 +6880,7 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
6835
6880
|
isFrozen: boolean;
|
|
6836
6881
|
isPaused: boolean;
|
|
6837
6882
|
flashLoanEnabled: boolean;
|
|
6883
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
6838
6884
|
permitSupported: boolean;
|
|
6839
6885
|
supplyInfo: {
|
|
6840
6886
|
__typename: "ReserveSupplyInfo";
|
|
@@ -7343,6 +7389,7 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
7343
7389
|
isFrozen: boolean;
|
|
7344
7390
|
isPaused: boolean;
|
|
7345
7391
|
flashLoanEnabled: boolean;
|
|
7392
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
7346
7393
|
permitSupported: boolean;
|
|
7347
7394
|
supplyInfo: {
|
|
7348
7395
|
__typename: "ReserveSupplyInfo";
|
|
@@ -7738,6 +7785,7 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
7738
7785
|
isFrozen: boolean;
|
|
7739
7786
|
isPaused: boolean;
|
|
7740
7787
|
flashLoanEnabled: boolean;
|
|
7788
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
7741
7789
|
permitSupported: boolean;
|
|
7742
7790
|
supplyInfo: {
|
|
7743
7791
|
__typename: "ReserveSupplyInfo";
|
|
@@ -8553,6 +8601,7 @@ declare const ReserveQuery: gql_tada.TadaDocumentNode<{
|
|
|
8553
8601
|
isFrozen: boolean;
|
|
8554
8602
|
isPaused: boolean;
|
|
8555
8603
|
flashLoanEnabled: boolean;
|
|
8604
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
8556
8605
|
permitSupported: boolean;
|
|
8557
8606
|
supplyInfo: {
|
|
8558
8607
|
__typename: "ReserveSupplyInfo";
|
|
@@ -9415,6 +9464,10 @@ declare const VaultDeployQuery: gql_tada.TadaDocumentNode<{
|
|
|
9415
9464
|
};
|
|
9416
9465
|
}, {
|
|
9417
9466
|
request: {
|
|
9467
|
+
recipients?: {
|
|
9468
|
+
percent: _aave_types.BigDecimal;
|
|
9469
|
+
address: _aave_types.EvmAddress;
|
|
9470
|
+
}[] | null | undefined;
|
|
9418
9471
|
initialLockDeposit: _aave_types.BigDecimal;
|
|
9419
9472
|
shareSymbol: string;
|
|
9420
9473
|
shareName: string;
|
|
@@ -10847,6 +10900,7 @@ declare const VaultQuery: gql_tada.TadaDocumentNode<{
|
|
|
10847
10900
|
isFrozen: boolean;
|
|
10848
10901
|
isPaused: boolean;
|
|
10849
10902
|
flashLoanEnabled: boolean;
|
|
10903
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
10850
10904
|
permitSupported: boolean;
|
|
10851
10905
|
supplyInfo: {
|
|
10852
10906
|
__typename: "ReserveSupplyInfo";
|
|
@@ -11191,6 +11245,22 @@ declare const VaultQuery: gql_tada.TadaDocumentNode<{
|
|
|
11191
11245
|
};
|
|
11192
11246
|
usd: _aave_types.BigDecimal;
|
|
11193
11247
|
};
|
|
11248
|
+
recipients: {
|
|
11249
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
11250
|
+
address: _aave_types.EvmAddress;
|
|
11251
|
+
entries: {
|
|
11252
|
+
__typename: "VaultFeesRecipientSplit";
|
|
11253
|
+
address: _aave_types.EvmAddress;
|
|
11254
|
+
split: {
|
|
11255
|
+
__typename: "PercentValue";
|
|
11256
|
+
raw: _aave_types.BigIntString;
|
|
11257
|
+
decimals: number;
|
|
11258
|
+
value: _aave_types.BigDecimal;
|
|
11259
|
+
formatted: _aave_types.BigDecimal;
|
|
11260
|
+
};
|
|
11261
|
+
isAaveLabs: boolean;
|
|
11262
|
+
}[];
|
|
11263
|
+
} | null;
|
|
11194
11264
|
balance: {
|
|
11195
11265
|
__typename: "TokenAmount";
|
|
11196
11266
|
usdPerToken: _aave_types.BigDecimal;
|
|
@@ -11340,6 +11410,7 @@ declare const VaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
11340
11410
|
isFrozen: boolean;
|
|
11341
11411
|
isPaused: boolean;
|
|
11342
11412
|
flashLoanEnabled: boolean;
|
|
11413
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
11343
11414
|
permitSupported: boolean;
|
|
11344
11415
|
supplyInfo: {
|
|
11345
11416
|
__typename: "ReserveSupplyInfo";
|
|
@@ -11684,6 +11755,22 @@ declare const VaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
11684
11755
|
};
|
|
11685
11756
|
usd: _aave_types.BigDecimal;
|
|
11686
11757
|
};
|
|
11758
|
+
recipients: {
|
|
11759
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
11760
|
+
address: _aave_types.EvmAddress;
|
|
11761
|
+
entries: {
|
|
11762
|
+
__typename: "VaultFeesRecipientSplit";
|
|
11763
|
+
address: _aave_types.EvmAddress;
|
|
11764
|
+
split: {
|
|
11765
|
+
__typename: "PercentValue";
|
|
11766
|
+
raw: _aave_types.BigIntString;
|
|
11767
|
+
decimals: number;
|
|
11768
|
+
value: _aave_types.BigDecimal;
|
|
11769
|
+
formatted: _aave_types.BigDecimal;
|
|
11770
|
+
};
|
|
11771
|
+
isAaveLabs: boolean;
|
|
11772
|
+
}[];
|
|
11773
|
+
} | null;
|
|
11687
11774
|
balance: {
|
|
11688
11775
|
__typename: "TokenAmount";
|
|
11689
11776
|
usdPerToken: _aave_types.BigDecimal;
|
|
@@ -11843,6 +11930,7 @@ declare const UserVaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
11843
11930
|
isFrozen: boolean;
|
|
11844
11931
|
isPaused: boolean;
|
|
11845
11932
|
flashLoanEnabled: boolean;
|
|
11933
|
+
interestRateStrategyAddress: _aave_types.EvmAddress;
|
|
11846
11934
|
permitSupported: boolean;
|
|
11847
11935
|
supplyInfo: {
|
|
11848
11936
|
__typename: "ReserveSupplyInfo";
|
|
@@ -12187,6 +12275,22 @@ declare const UserVaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
12187
12275
|
};
|
|
12188
12276
|
usd: _aave_types.BigDecimal;
|
|
12189
12277
|
};
|
|
12278
|
+
recipients: {
|
|
12279
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
12280
|
+
address: _aave_types.EvmAddress;
|
|
12281
|
+
entries: {
|
|
12282
|
+
__typename: "VaultFeesRecipientSplit";
|
|
12283
|
+
address: _aave_types.EvmAddress;
|
|
12284
|
+
split: {
|
|
12285
|
+
__typename: "PercentValue";
|
|
12286
|
+
raw: _aave_types.BigIntString;
|
|
12287
|
+
decimals: number;
|
|
12288
|
+
value: _aave_types.BigDecimal;
|
|
12289
|
+
formatted: _aave_types.BigDecimal;
|
|
12290
|
+
};
|
|
12291
|
+
isAaveLabs: boolean;
|
|
12292
|
+
}[];
|
|
12293
|
+
} | null;
|
|
12190
12294
|
balance: {
|
|
12191
12295
|
__typename: "TokenAmount";
|
|
12192
12296
|
usdPerToken: _aave_types.BigDecimal;
|
|
@@ -12445,6 +12549,9 @@ type VaultUserTransactionHistoryRequest = RequestOf<typeof VaultUserTransactionH
|
|
|
12445
12549
|
type VaultUserTransactionHistoryResult = {
|
|
12446
12550
|
value: PaginatedVaultUserTransactionHistoryResult;
|
|
12447
12551
|
};
|
|
12552
|
+
/**
|
|
12553
|
+
* @internal
|
|
12554
|
+
*/
|
|
12448
12555
|
declare const VaultUserActivityQuery: gql_tada.TadaDocumentNode<{
|
|
12449
12556
|
value: {
|
|
12450
12557
|
__typename: "VaultUserActivityResult";
|
|
@@ -12517,5 +12624,102 @@ declare const VaultUserActivityQuery: gql_tada.TadaDocumentNode<{
|
|
|
12517
12624
|
};
|
|
12518
12625
|
}, void>;
|
|
12519
12626
|
type VaultUserActivityRequest = RequestOf<typeof VaultUserActivityQuery>;
|
|
12627
|
+
/**
|
|
12628
|
+
* @internal
|
|
12629
|
+
*/
|
|
12630
|
+
declare const vaultTransferOwnershipQuery: gql_tada.TadaDocumentNode<{
|
|
12631
|
+
value: {
|
|
12632
|
+
__typename: "TransactionRequest";
|
|
12633
|
+
to: _aave_types.EvmAddress;
|
|
12634
|
+
from: _aave_types.EvmAddress;
|
|
12635
|
+
data: _aave_types.BlockchainData;
|
|
12636
|
+
value: _aave_types.BigIntString;
|
|
12637
|
+
chainId: _aave_types.ChainId;
|
|
12638
|
+
operation: OperationType | null;
|
|
12639
|
+
};
|
|
12640
|
+
}, {
|
|
12641
|
+
request: {
|
|
12642
|
+
newOwner: _aave_types.EvmAddress;
|
|
12643
|
+
chainId: _aave_types.ChainId;
|
|
12644
|
+
vault: _aave_types.EvmAddress;
|
|
12645
|
+
};
|
|
12646
|
+
}, void>;
|
|
12647
|
+
type VaultTransferOwnershipRequest = RequestOf<typeof vaultTransferOwnershipQuery>;
|
|
12648
|
+
/**
|
|
12649
|
+
* @internal
|
|
12650
|
+
*/
|
|
12651
|
+
declare const vaultCreateRecipientsConfigurationQuery: gql_tada.TadaDocumentNode<{
|
|
12652
|
+
value: {
|
|
12653
|
+
__typename: "TransactionRequest";
|
|
12654
|
+
to: _aave_types.EvmAddress;
|
|
12655
|
+
from: _aave_types.EvmAddress;
|
|
12656
|
+
data: _aave_types.BlockchainData;
|
|
12657
|
+
value: _aave_types.BigIntString;
|
|
12658
|
+
chainId: _aave_types.ChainId;
|
|
12659
|
+
operation: OperationType | null;
|
|
12660
|
+
};
|
|
12661
|
+
}, {
|
|
12662
|
+
request: {
|
|
12663
|
+
recipients: {
|
|
12664
|
+
percent: _aave_types.BigDecimal;
|
|
12665
|
+
address: _aave_types.EvmAddress;
|
|
12666
|
+
}[];
|
|
12667
|
+
chainId: _aave_types.ChainId;
|
|
12668
|
+
vault: _aave_types.EvmAddress;
|
|
12669
|
+
};
|
|
12670
|
+
}, void>;
|
|
12671
|
+
type VaultCreateRecipientsConfigurationRequest = RequestOf<typeof vaultCreateRecipientsConfigurationQuery>;
|
|
12672
|
+
/**
|
|
12673
|
+
* @internal
|
|
12674
|
+
*/
|
|
12675
|
+
declare const vaultSetRecipientsConfigurationQuery: gql_tada.TadaDocumentNode<{
|
|
12676
|
+
value: {
|
|
12677
|
+
__typename: "TransactionRequest";
|
|
12678
|
+
to: _aave_types.EvmAddress;
|
|
12679
|
+
from: _aave_types.EvmAddress;
|
|
12680
|
+
data: _aave_types.BlockchainData;
|
|
12681
|
+
value: _aave_types.BigIntString;
|
|
12682
|
+
chainId: _aave_types.ChainId;
|
|
12683
|
+
operation: OperationType | null;
|
|
12684
|
+
};
|
|
12685
|
+
}, {
|
|
12686
|
+
request: {
|
|
12687
|
+
configuration: _aave_types.EvmAddress;
|
|
12688
|
+
chainId: _aave_types.ChainId;
|
|
12689
|
+
vault: _aave_types.EvmAddress;
|
|
12690
|
+
};
|
|
12691
|
+
}, void>;
|
|
12692
|
+
type VaultSetRecipientsConfigurationRequest = RequestOf<typeof vaultSetRecipientsConfigurationQuery>;
|
|
12693
|
+
/**
|
|
12694
|
+
* @internal
|
|
12695
|
+
*/
|
|
12696
|
+
declare const vaultRecipientConfigurationQuery: gql_tada.TadaDocumentNode<{
|
|
12697
|
+
value: {
|
|
12698
|
+
__typename: "VaultFeesRecipientsConfiguration";
|
|
12699
|
+
address: _aave_types.EvmAddress;
|
|
12700
|
+
entries: {
|
|
12701
|
+
__typename: "VaultFeesRecipientSplit";
|
|
12702
|
+
address: _aave_types.EvmAddress;
|
|
12703
|
+
split: {
|
|
12704
|
+
__typename: "PercentValue";
|
|
12705
|
+
raw: _aave_types.BigIntString;
|
|
12706
|
+
decimals: number;
|
|
12707
|
+
value: _aave_types.BigDecimal;
|
|
12708
|
+
formatted: _aave_types.BigDecimal;
|
|
12709
|
+
};
|
|
12710
|
+
isAaveLabs: boolean;
|
|
12711
|
+
}[];
|
|
12712
|
+
} | null;
|
|
12713
|
+
}, {
|
|
12714
|
+
request: {
|
|
12715
|
+
chainId: _aave_types.ChainId;
|
|
12716
|
+
by: {
|
|
12717
|
+
address: _aave_types.EvmAddress;
|
|
12718
|
+
} | {
|
|
12719
|
+
txHash: _aave_types.TxHash;
|
|
12720
|
+
};
|
|
12721
|
+
};
|
|
12722
|
+
}, void>;
|
|
12723
|
+
type VaultRecipientConfigurationRequest = RequestOf<typeof vaultRecipientConfigurationQuery>;
|
|
12520
12724
|
|
|
12521
|
-
export { type APYSample, APYSampleFragment, type AaveBorrowIncentive, AaveBorrowIncentiveFragment, type AaveSupplyIncentive, AaveSupplyIncentiveFragment, type AmountInput, type
|
|
12725
|
+
export { type APYSample, APYSampleFragment, type AaveBorrowIncentive, AaveBorrowIncentiveFragment, type AaveSupplyIncentive, AaveSupplyIncentiveFragment, type AmountInput, type ApprovalRequired, ApprovalRequiredFragment, ApproveBorrowCreditDelegationQuery, type ApproveBorrowCreditDelegatorRequest, BorrowAPYHistoryQuery, type BorrowAPYHistoryRequest, BorrowQuery, type BorrowRequest, type Chain, ChainFragment, ChainsFilter, ChainsQuery, type ClaimableMeritReward, ClaimableMeritRewardFragment, CollateralToggleQuery, type CollateralToggleRequest, CreditDelegateeAllowanceQuery, type CreditDelegateeAmountRequest, type Currency, CurrencyFragment, type DecimalValue, DecimalValueFragment, type DomainData, DomainDataFragment, type ERC712Signature, type EmodeMarketCategory, EmodeMarketCategoryFragment, type EmodeMarketReserveInfo, EmodeMarketReserveInfoFragment, type EmodeReserveInfo, EmodeReserveInfoFragment, type ExecutionPlan, ExecutionPlanFragment, type FragmentDocumentFor, HasProcessedKnownTransactionQuery, type HasProcessedKnownTransactionRequest, HealthFactorPreviewQuery, type HealthFactorPreviewRequest, type HealthFactorPreviewResponse, HealthFactorPreviewResponseFragment, HealthQuery, type InsufficientBalanceError, InsufficientBalanceErrorFragment, LiquidateQuery, type LiquidateRequest, type LiquidationCollateral, LiquidationCollateralFragment, type LiquidationRepaidDebt, LiquidationRepaidDebtFragment, type Market, MarketFragment, type MarketInfo, MarketInfoFragment, MarketQuery, type MarketRequest, type MarketReservesRequestOrderBy, type MarketUserReserveBorrowPosition, MarketUserReserveBorrowPositionFragment, type MarketUserReserveSupplyPosition, MarketUserReserveSupplyPositionFragment, type MarketUserState, MarketUserStateFragment, MarketsQuery, type MarketsRequest, type MeritBorrowAndSupplyIncentiveCondition, MeritBorrowAndSupplyIncentiveConditionFragment, type MeritBorrowIncentive, MeritBorrowIncentiveFragment, type MeritSupplyIncentive, MeritSupplyIncentiveFragment, type MessageData, MessageDataFragment, type NativeCurrency, NativeCurrencyFragment, OperationType, type OrderByUserCriteria, OrderDirection, PageSize, type PaginatedResultInfo, PaginatedResultInfoFragment, type PaginatedUserTransactionHistoryResult, PaginatedUserTransactionHistoryResultFragment, type PaginatedVaultUserTransactionHistoryResult, PaginatedVaultUserTransactionHistoryResultFragment, type PaginatedVaultsResult, PaginatedVaultsResultFragment, type PercentValue, PercentValueFragment, PermitTypedDataQuery, type PermitTypedDataRequest, type PermitTypedDataResponse, PermitTypedDataResponseFragment, RepayQuery, type RepayRequest, type RequestOf, type Reserve, type ReserveBorrowInfo, ReserveBorrowInfoFragment, ReserveFragment, type ReserveIncentive, ReserveIncentiveFragment, type ReserveInfo, ReserveInfoFragment, type ReserveIsolationModeConfig, ReserveIsolationModeConfigFragment, ReserveQuery, type ReserveRequest, type ReserveSupplyInfo, ReserveSupplyInfoFragment, type ReserveUserState, ReserveUserStateFragment, SavingsGhoBalanceQuery, type SavingsGhoBalanceRequest, SavingsGhoDepositQuery, type SavingsGhoDepositRequest, SavingsGhoWithdrawQuery, type SavingsGhoWithdrawRequest, SupplyAPYHistoryQuery, type SupplyAPYHistoryRequest, SupplyQuery, type SupplyRequest, TimeWindow, type TokenAmount, TokenAmountFragment, type TransactionRequest, TransactionRequestFragment, type TypeDefinition, TypeDefinitionFragment, type TypeField, TypeFieldFragment, type UsdExchangeRate, UsdExchangeRateFragment, UsdExchangeRatesQuery, type UsdExchangeRatesRequest, type UserBorrowTransaction, UserBorrowTransactionFragment, UserBorrowsQuery, type UserBorrowsRequest, type UserLiquidationCallTransaction, UserLiquidationCallTransactionFragment, UserMarketStateQuery, type UserMarketStateRequest, type UserMeritRewards, UserMeritRewardsFragment, UserMeritRewardsQuery, type UserMeritRewardsRequest, type UserRepayTransaction, UserRepayTransactionFragment, UserSetEmodeQuery, type UserSetEmodeRequest, UserSuppliesQuery, type UserSuppliesRequest, type UserSupplyTransaction, UserSupplyTransactionFragment, UserTransactionHistoryQuery, type UserTransactionHistoryRequest, type UserTransactionItem, UserTransactionItemFragment, type UserUsageAsCollateralTransaction, UserUsageAsCollateralTransactionFragment, type UserVaultShares, UserVaultSharesFragment, UserVaultsQuery, type UserVaultsRequest, type UserWithdrawTransaction, UserWithdrawTransactionFragment, type Vault, type VaultCreateRecipientsConfigurationRequest, VaultDeployQuery, type VaultDeployRequest, VaultDepositQuery, type VaultDepositRequest, type VaultFeesRecipientSplit, VaultFeesRecipientSplitFragment, type VaultFeesRecipientsConfiguration, VaultFeesRecipientsConfigurationFragment, VaultFragment, VaultMintSharesQuery, type VaultMintSharesRequest, VaultPreviewDepositQuery, type VaultPreviewDepositRequest, VaultPreviewMintQuery, type VaultPreviewMintRequest, VaultPreviewRedeemQuery, type VaultPreviewRedeemRequest, VaultPreviewWithdrawQuery, type VaultPreviewWithdrawRequest, VaultQuery, type VaultRecipientConfigurationRequest, VaultRedeemSharesQuery, type VaultRedeemSharesRequest, type VaultRequest, VaultSetFeeQuery, type VaultSetFeeRequest, type VaultSetRecipientsConfigurationRequest, type VaultTransferOwnershipRequest, type VaultUserActivityItem, VaultUserActivityItemFragment, VaultUserActivityQuery, type VaultUserActivityRequest, type VaultUserActivityResult, VaultUserActivityResultFragment, VaultUserActivityTimeWindow, type VaultUserDepositItem, VaultUserDepositItemFragment, VaultUserHistoryAction, VaultUserTransactionHistoryQuery, type VaultUserTransactionHistoryRequest, type VaultUserTransactionHistoryResult, type VaultUserTransactionItem, VaultUserTransactionItemFragment, type VaultUserWithdrawItem, VaultUserWithdrawItemFragment, VaultWithdrawFeesQuery, type VaultWithdrawFeesRequest, VaultWithdrawQuery, type VaultWithdrawRequest, VaultsQuery, type VaultsRequest, WithdrawQuery, type WithdrawRequest, graphql, vaultCreateRecipientsConfigurationQuery, vaultRecipientConfigurationQuery, vaultSetRecipientsConfigurationQuery, vaultTransferOwnershipQuery };
|