@aave/graphql 0.1.0 → 0.2.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 +137 -84
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +400 -12
- package/dist/index.d.ts +400 -12
- package/dist/index.js +137 -84
- package/dist/index.js.map +1 -1
- package/dist/test-utils.cjs +66 -13
- package/dist/test-utils.cjs.map +1 -1
- package/dist/test-utils.js +66 -13
- package/dist/test-utils.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -33,7 +33,6 @@ declare enum TimeWindow$1 {
|
|
|
33
33
|
declare enum OperationType$1 {
|
|
34
34
|
Borrow = "BORROW",
|
|
35
35
|
Repay = "REPAY",
|
|
36
|
-
ReserveDataUpdated = "RESERVE_DATA_UPDATED",
|
|
37
36
|
ReserveUsedAsCollateralEnabled = "RESERVE_USED_AS_COLLATERAL_ENABLED",
|
|
38
37
|
ReserveUsedAsCollateralDisabled = "RESERVE_USED_AS_COLLATERAL_DISABLED",
|
|
39
38
|
Supply = "SUPPLY",
|
|
@@ -41,14 +40,9 @@ declare enum OperationType$1 {
|
|
|
41
40
|
Withdraw = "WITHDRAW",
|
|
42
41
|
VaultDeployed = "VAULT_DEPLOYED",
|
|
43
42
|
VaultDeposit = "VAULT_DEPOSIT",
|
|
44
|
-
VaultEmergencyRescue = "VAULT_EMERGENCY_RESCUE",
|
|
45
|
-
VaultOwnershipTransferred = "VAULT_OWNERSHIP_TRANSFERRED",
|
|
46
43
|
VaultFeeUpdated = "VAULT_FEE_UPDATED",
|
|
47
44
|
VaultFeeWithdrawn = "VAULT_FEE_WITHDRAWN",
|
|
48
|
-
VaultRewardClaimed = "VAULT_REWARD_CLAIMED",
|
|
49
|
-
VaultTransfer = "VAULT_TRANSFER",
|
|
50
45
|
VaultWithdraw = "VAULT_WITHDRAW",
|
|
51
|
-
VaultYieldAccrued = "VAULT_YIELD_ACCRUED",
|
|
52
46
|
Liquidation = "LIQUIDATION"
|
|
53
47
|
}
|
|
54
48
|
/**
|
|
@@ -59,6 +53,13 @@ declare enum ChainsFilter$1 {
|
|
|
59
53
|
MAINNET_ONLY = "MAINNET_ONLY",
|
|
60
54
|
ALL = "ALL"
|
|
61
55
|
}
|
|
56
|
+
/**
|
|
57
|
+
* The action type for vault user history.
|
|
58
|
+
*/
|
|
59
|
+
declare enum VaultUserHistoryAction$1 {
|
|
60
|
+
Deposit = "DEPOSIT",
|
|
61
|
+
Withdraw = "WITHDRAW"
|
|
62
|
+
}
|
|
62
63
|
|
|
63
64
|
/* eslint-disable */
|
|
64
65
|
/* prettier-ignore */
|
|
@@ -79,7 +80,7 @@ type introspection_types = {
|
|
|
79
80
|
'BorrowAmountInput': { kind: 'INPUT_OBJECT'; name: 'BorrowAmountInput'; isOneOf: true; inputFields: [{ name: 'native'; type: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; defaultValue: null }, { name: 'erc20'; type: { kind: 'INPUT_OBJECT'; name: 'BorrowErc20AmountInput'; ofType: null; }; defaultValue: null }]; };
|
|
80
81
|
'BorrowErc20AmountInput': { kind: 'INPUT_OBJECT'; name: 'BorrowErc20AmountInput'; 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: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; }; defaultValue: null }]; };
|
|
81
82
|
'BorrowRequest': { kind: 'INPUT_OBJECT'; name: 'BorrowRequest'; 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: 'BorrowAmountInput'; 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 }]; };
|
|
82
|
-
'Chain': { kind: 'OBJECT'; name: 'Chain'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'explorerUrl': { name: 'explorerUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'icon': { name: 'icon'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isTestnet': { name: 'isTestnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; }; };
|
|
83
|
+
'Chain': { kind: 'OBJECT'; name: 'Chain'; fields: { 'chainId': { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; } }; 'explorerUrl': { name: 'explorerUrl'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'icon': { name: 'icon'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'isTestnet': { name: 'isTestnet'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Boolean'; ofType: null; }; } }; 'name': { name: 'name'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'String'; ofType: null; }; } }; 'nativeWrappedToken': { name: 'nativeWrappedToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; } }; }; };
|
|
83
84
|
'ChainId': unknown;
|
|
84
85
|
'ChainsFilter': { name: 'ChainsFilter'; enumValues: 'TESTNET_ONLY' | 'MAINNET_ONLY' | 'ALL'; };
|
|
85
86
|
'CollateralToggleRequest': { kind: 'INPUT_OBJECT'; name: 'CollateralToggleRequest'; isOneOf: false; inputFields: [{ name: 'market'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'underlyingToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'user'; 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 }]; };
|
|
@@ -118,17 +119,18 @@ type introspection_types = {
|
|
|
118
119
|
'MeritBorrowIncentive': { kind: 'OBJECT'; name: 'MeritBorrowIncentive'; fields: { 'borrowAprDiscount': { name: 'borrowAprDiscount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PercentValue'; ofType: null; }; } }; 'claimLink': { name: 'claimLink'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'URL'; ofType: null; }; } }; }; };
|
|
119
120
|
'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; }; } }; }; };
|
|
120
121
|
'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; }; } }; }; };
|
|
121
|
-
'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; }; } }; }; };
|
|
122
|
-
'OperationType': { name: 'OperationType'; enumValues: 'BORROW' | 'REPAY' | '
|
|
122
|
+
'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; }; } }; }; };
|
|
123
|
+
'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'; };
|
|
123
124
|
'OrderDirection': { name: 'OrderDirection'; enumValues: 'ASC' | 'DESC'; };
|
|
124
125
|
'PageSize': { name: 'PageSize'; enumValues: 'TEN' | 'FIFTY'; };
|
|
125
126
|
'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; } }; }; };
|
|
126
127
|
'PaginatedUserTransactionHistoryResult': { kind: 'OBJECT'; name: 'PaginatedUserTransactionHistoryResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'UserTransactionItem'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
128
|
+
'PaginatedVaultUserTransactionHistoryResult': { kind: 'OBJECT'; name: 'PaginatedVaultUserTransactionHistoryResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'UNION'; name: 'VaultUserTransactionItem'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
127
129
|
'PaginatedVaultsResult': { kind: 'OBJECT'; name: 'PaginatedVaultsResult'; fields: { 'items': { name: 'items'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'Vault'; ofType: null; }; }; }; } }; 'pageInfo': { name: 'pageInfo'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'PaginatedResultInfo'; ofType: null; }; } }; }; };
|
|
128
130
|
'PercentValue': { kind: 'OBJECT'; name: 'PercentValue'; fields: { 'decimals': { name: 'decimals'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'Int'; ofType: null; }; } }; 'formatted': { name: 'formatted'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; 'raw': { name: 'raw'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigInt'; ofType: null; }; } }; 'value': { name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'BigDecimal'; ofType: null; }; } }; }; };
|
|
129
131
|
'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 }]; };
|
|
130
132
|
'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; }; } }; }; };
|
|
131
|
-
'Query': { kind: 'OBJECT'; name: 'Query'; fields: { '
|
|
133
|
+
'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; }; } }; '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; }; } }; '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; } }; '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; }; } }; '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; }; } }; '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; }; } }; }; };
|
|
132
134
|
'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: 'AmountInput'; 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 }]; };
|
|
133
135
|
'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; }; } }; }; };
|
|
134
136
|
'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; }; } }; }; };
|
|
@@ -184,6 +186,12 @@ type introspection_types = {
|
|
|
184
186
|
'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 }]; };
|
|
185
187
|
'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 }]; };
|
|
186
188
|
'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 }]; };
|
|
189
|
+
'VaultUserDepositItem': { kind: 'OBJECT'; name: 'VaultUserDepositItem'; fields: { 'asset': { name: 'asset'; 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; }; } }; 'shares': { name: 'shares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; 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; }; } }; }; };
|
|
190
|
+
'VaultUserHistoryAction': { name: 'VaultUserHistoryAction'; enumValues: 'DEPOSIT' | 'WITHDRAW'; };
|
|
191
|
+
'VaultUserTransactionHistoryOrderBy': { kind: 'INPUT_OBJECT'; name: 'VaultUserTransactionHistoryOrderBy'; isOneOf: true; inputFields: [{ name: 'date'; type: { kind: 'ENUM'; name: 'OrderDirection'; ofType: null; }; defaultValue: null }]; };
|
|
192
|
+
'VaultUserTransactionHistoryRequest': { kind: 'INPUT_OBJECT'; name: 'VaultUserTransactionHistoryRequest'; 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: 'filter'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'LIST'; name: never; ofType: { kind: 'NON_NULL'; name: never; ofType: { kind: 'ENUM'; name: 'VaultUserHistoryAction'; ofType: null; }; }; }; }; defaultValue: "[DEPOSIT, WITHDRAW]" }, { name: 'orderBy'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultUserTransactionHistoryOrderBy'; ofType: null; }; }; defaultValue: "{date: 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 }]; };
|
|
193
|
+
'VaultUserTransactionItem': { kind: 'UNION'; name: 'VaultUserTransactionItem'; fields: {}; possibleTypes: 'VaultUserDepositItem' | 'VaultUserWithdrawItem'; };
|
|
194
|
+
'VaultUserWithdrawItem': { kind: 'OBJECT'; name: 'VaultUserWithdrawItem'; fields: { 'asset': { name: 'asset'; 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; }; } }; 'shares': { name: 'shares'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'OBJECT'; name: 'TokenAmount'; 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; }; } }; }; };
|
|
187
195
|
'VaultWithdrawFeesRequest': { kind: 'INPUT_OBJECT'; name: 'VaultWithdrawFeesRequest'; isOneOf: false; inputFields: [{ name: 'vault'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'sendTo'; type: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; defaultValue: null }, { name: 'amount'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WithdrawAmount'; ofType: null; }; }; defaultValue: null }, { name: 'chainId'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'ChainId'; ofType: null; }; }; defaultValue: null }]; };
|
|
188
196
|
'VaultWithdrawInput': { kind: 'INPUT_OBJECT'; name: 'VaultWithdrawInput'; 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 }]; };
|
|
189
197
|
'VaultWithdrawRequest': { kind: 'INPUT_OBJECT'; name: 'VaultWithdrawRequest'; isOneOf: false; inputFields: [{ name: 'vault'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'SCALAR'; name: 'EvmAddress'; ofType: null; }; }; defaultValue: null }, { name: 'underlyingToken'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'VaultWithdrawInput'; 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 }]; };
|
|
@@ -194,7 +202,6 @@ type introspection_types = {
|
|
|
194
202
|
'WithdrawErc20AmountInput': { kind: 'INPUT_OBJECT'; name: 'WithdrawErc20AmountInput'; 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: 'WithdrawAmount'; ofType: null; }; }; defaultValue: null }]; };
|
|
195
203
|
'WithdrawNativeAmountInput': { kind: 'INPUT_OBJECT'; name: 'WithdrawNativeAmountInput'; isOneOf: false; inputFields: [{ name: 'value'; type: { kind: 'NON_NULL'; name: never; ofType: { kind: 'INPUT_OBJECT'; name: 'WithdrawAmount'; ofType: null; }; }; defaultValue: null }, { name: 'permitSig'; type: { kind: 'INPUT_OBJECT'; name: 'ERC712Signature'; ofType: null; }; defaultValue: null }]; };
|
|
196
204
|
'WithdrawRequest': { kind: 'INPUT_OBJECT'; name: 'WithdrawRequest'; 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: 'WithdrawAmountInput'; ofType: null; }; }; defaultValue: null }, { name: 'sender'; type: { kind: 'NON_NULL'; name: never; ofType: { 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 }]; };
|
|
197
|
-
'_Service': { kind: 'OBJECT'; name: '_Service'; fields: { 'sdl': { name: 'sdl'; type: { kind: 'SCALAR'; name: 'String'; ofType: null; } }; }; };
|
|
198
205
|
};
|
|
199
206
|
|
|
200
207
|
/** An IntrospectionQuery representation of your schema.
|
|
@@ -246,6 +253,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
246
253
|
TxHash: TxHash$1;
|
|
247
254
|
Void: Void;
|
|
248
255
|
TimeWindow: TimeWindow$1;
|
|
256
|
+
VaultUserHistoryAction: VaultUserHistoryAction$1;
|
|
249
257
|
};
|
|
250
258
|
}>;
|
|
251
259
|
/**
|
|
@@ -319,6 +327,8 @@ declare const ChainFragment: gql_tada.TadaDocumentNode<{
|
|
|
319
327
|
icon: string;
|
|
320
328
|
chainId: ChainId;
|
|
321
329
|
explorerUrl: string;
|
|
330
|
+
isTestnet: boolean;
|
|
331
|
+
nativeWrappedToken: EvmAddress;
|
|
322
332
|
}, {}, {
|
|
323
333
|
fragment: "Chain";
|
|
324
334
|
on: "Chain";
|
|
@@ -370,6 +380,7 @@ declare const NativeCurrencyFragment: gql_tada.TadaDocumentNode<{
|
|
|
370
380
|
symbol: string;
|
|
371
381
|
decimals: number;
|
|
372
382
|
chainId: ChainId;
|
|
383
|
+
wrappedToken: EvmAddress;
|
|
373
384
|
}, {}, {
|
|
374
385
|
fragment: "NativeCurrency";
|
|
375
386
|
on: "NativeCurrency";
|
|
@@ -512,6 +523,8 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
512
523
|
icon: string;
|
|
513
524
|
chainId: ChainId;
|
|
514
525
|
explorerUrl: string;
|
|
526
|
+
isTestnet: boolean;
|
|
527
|
+
nativeWrappedToken: EvmAddress;
|
|
515
528
|
};
|
|
516
529
|
address: EvmAddress;
|
|
517
530
|
icon: string;
|
|
@@ -599,6 +612,8 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
599
612
|
icon: string;
|
|
600
613
|
chainId: ChainId;
|
|
601
614
|
explorerUrl: string;
|
|
615
|
+
isTestnet: boolean;
|
|
616
|
+
nativeWrappedToken: EvmAddress;
|
|
602
617
|
};
|
|
603
618
|
address: EvmAddress;
|
|
604
619
|
icon: string;
|
|
@@ -637,6 +652,7 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
637
652
|
symbol: string;
|
|
638
653
|
decimals: number;
|
|
639
654
|
chainId: ChainId;
|
|
655
|
+
wrappedToken: EvmAddress;
|
|
640
656
|
} | null;
|
|
641
657
|
size: {
|
|
642
658
|
__typename: "TokenAmount";
|
|
@@ -991,6 +1007,8 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
991
1007
|
icon: string;
|
|
992
1008
|
chainId: ChainId;
|
|
993
1009
|
explorerUrl: string;
|
|
1010
|
+
isTestnet: boolean;
|
|
1011
|
+
nativeWrappedToken: EvmAddress;
|
|
994
1012
|
};
|
|
995
1013
|
address: EvmAddress;
|
|
996
1014
|
icon: string;
|
|
@@ -1029,6 +1047,7 @@ declare const MarketFragment: gql_tada.TadaDocumentNode<{
|
|
|
1029
1047
|
symbol: string;
|
|
1030
1048
|
decimals: number;
|
|
1031
1049
|
chainId: ChainId;
|
|
1050
|
+
wrappedToken: EvmAddress;
|
|
1032
1051
|
} | null;
|
|
1033
1052
|
size: {
|
|
1034
1053
|
__typename: "TokenAmount";
|
|
@@ -1390,6 +1409,8 @@ declare const MarketUserReserveBorrowPositionFragment: gql_tada.TadaDocumentNode
|
|
|
1390
1409
|
icon: string;
|
|
1391
1410
|
chainId: ChainId;
|
|
1392
1411
|
explorerUrl: string;
|
|
1412
|
+
isTestnet: boolean;
|
|
1413
|
+
nativeWrappedToken: EvmAddress;
|
|
1393
1414
|
};
|
|
1394
1415
|
address: EvmAddress;
|
|
1395
1416
|
icon: string;
|
|
@@ -1438,6 +1459,8 @@ declare const MarketUserReserveSupplyPositionFragment: gql_tada.TadaDocumentNode
|
|
|
1438
1459
|
icon: string;
|
|
1439
1460
|
chainId: ChainId;
|
|
1440
1461
|
explorerUrl: string;
|
|
1462
|
+
isTestnet: boolean;
|
|
1463
|
+
nativeWrappedToken: EvmAddress;
|
|
1441
1464
|
};
|
|
1442
1465
|
address: EvmAddress;
|
|
1443
1466
|
icon: string;
|
|
@@ -1504,6 +1527,8 @@ declare const MarketInfoFragment: gql_tada.TadaDocumentNode<{
|
|
|
1504
1527
|
icon: string;
|
|
1505
1528
|
chainId: ChainId;
|
|
1506
1529
|
explorerUrl: string;
|
|
1530
|
+
isTestnet: boolean;
|
|
1531
|
+
nativeWrappedToken: EvmAddress;
|
|
1507
1532
|
};
|
|
1508
1533
|
address: EvmAddress;
|
|
1509
1534
|
icon: string;
|
|
@@ -1626,6 +1651,8 @@ declare const ReserveInfoFragment: gql_tada.TadaDocumentNode<{
|
|
|
1626
1651
|
icon: string;
|
|
1627
1652
|
chainId: ChainId;
|
|
1628
1653
|
explorerUrl: string;
|
|
1654
|
+
isTestnet: boolean;
|
|
1655
|
+
nativeWrappedToken: EvmAddress;
|
|
1629
1656
|
};
|
|
1630
1657
|
address: EvmAddress;
|
|
1631
1658
|
icon: string;
|
|
@@ -2025,6 +2052,8 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
|
|
|
2025
2052
|
icon: string;
|
|
2026
2053
|
chainId: ChainId;
|
|
2027
2054
|
explorerUrl: string;
|
|
2055
|
+
isTestnet: boolean;
|
|
2056
|
+
nativeWrappedToken: EvmAddress;
|
|
2028
2057
|
};
|
|
2029
2058
|
address: EvmAddress;
|
|
2030
2059
|
icon: string;
|
|
@@ -2063,6 +2092,7 @@ declare const ReserveFragment: gql_tada.TadaDocumentNode<{
|
|
|
2063
2092
|
symbol: string;
|
|
2064
2093
|
decimals: number;
|
|
2065
2094
|
chainId: ChainId;
|
|
2095
|
+
wrappedToken: EvmAddress;
|
|
2066
2096
|
} | null;
|
|
2067
2097
|
size: {
|
|
2068
2098
|
__typename: "TokenAmount";
|
|
@@ -2511,6 +2541,8 @@ declare const UserSupplyTransactionFragment: gql_tada.TadaDocumentNode<{
|
|
|
2511
2541
|
icon: string;
|
|
2512
2542
|
chainId: ChainId;
|
|
2513
2543
|
explorerUrl: string;
|
|
2544
|
+
isTestnet: boolean;
|
|
2545
|
+
nativeWrappedToken: EvmAddress;
|
|
2514
2546
|
};
|
|
2515
2547
|
address: EvmAddress;
|
|
2516
2548
|
icon: string;
|
|
@@ -2649,6 +2681,8 @@ declare const UserWithdrawTransactionFragment: gql_tada.TadaDocumentNode<{
|
|
|
2649
2681
|
icon: string;
|
|
2650
2682
|
chainId: ChainId;
|
|
2651
2683
|
explorerUrl: string;
|
|
2684
|
+
isTestnet: boolean;
|
|
2685
|
+
nativeWrappedToken: EvmAddress;
|
|
2652
2686
|
};
|
|
2653
2687
|
address: EvmAddress;
|
|
2654
2688
|
icon: string;
|
|
@@ -2787,6 +2821,8 @@ declare const UserBorrowTransactionFragment: gql_tada.TadaDocumentNode<{
|
|
|
2787
2821
|
icon: string;
|
|
2788
2822
|
chainId: ChainId;
|
|
2789
2823
|
explorerUrl: string;
|
|
2824
|
+
isTestnet: boolean;
|
|
2825
|
+
nativeWrappedToken: EvmAddress;
|
|
2790
2826
|
};
|
|
2791
2827
|
address: EvmAddress;
|
|
2792
2828
|
icon: string;
|
|
@@ -2925,6 +2961,8 @@ declare const UserRepayTransactionFragment: gql_tada.TadaDocumentNode<{
|
|
|
2925
2961
|
icon: string;
|
|
2926
2962
|
chainId: ChainId;
|
|
2927
2963
|
explorerUrl: string;
|
|
2964
|
+
isTestnet: boolean;
|
|
2965
|
+
nativeWrappedToken: EvmAddress;
|
|
2928
2966
|
};
|
|
2929
2967
|
address: EvmAddress;
|
|
2930
2968
|
icon: string;
|
|
@@ -3053,6 +3091,8 @@ declare const UserUsageAsCollateralTransactionFragment: gql_tada.TadaDocumentNod
|
|
|
3053
3091
|
icon: string;
|
|
3054
3092
|
chainId: ChainId;
|
|
3055
3093
|
explorerUrl: string;
|
|
3094
|
+
isTestnet: boolean;
|
|
3095
|
+
nativeWrappedToken: EvmAddress;
|
|
3056
3096
|
};
|
|
3057
3097
|
address: EvmAddress;
|
|
3058
3098
|
icon: string;
|
|
@@ -3180,6 +3220,8 @@ declare const LiquidationCollateralFragment: gql_tada.TadaDocumentNode<{
|
|
|
3180
3220
|
icon: string;
|
|
3181
3221
|
chainId: ChainId;
|
|
3182
3222
|
explorerUrl: string;
|
|
3223
|
+
isTestnet: boolean;
|
|
3224
|
+
nativeWrappedToken: EvmAddress;
|
|
3183
3225
|
};
|
|
3184
3226
|
address: EvmAddress;
|
|
3185
3227
|
icon: string;
|
|
@@ -3315,6 +3357,8 @@ declare const LiquidationRepaidDebtFragment: gql_tada.TadaDocumentNode<{
|
|
|
3315
3357
|
icon: string;
|
|
3316
3358
|
chainId: ChainId;
|
|
3317
3359
|
explorerUrl: string;
|
|
3360
|
+
isTestnet: boolean;
|
|
3361
|
+
nativeWrappedToken: EvmAddress;
|
|
3318
3362
|
};
|
|
3319
3363
|
address: EvmAddress;
|
|
3320
3364
|
icon: string;
|
|
@@ -3452,6 +3496,8 @@ declare const UserLiquidationCallTransactionFragment: gql_tada.TadaDocumentNode<
|
|
|
3452
3496
|
icon: string;
|
|
3453
3497
|
chainId: ChainId;
|
|
3454
3498
|
explorerUrl: string;
|
|
3499
|
+
isTestnet: boolean;
|
|
3500
|
+
nativeWrappedToken: EvmAddress;
|
|
3455
3501
|
};
|
|
3456
3502
|
address: EvmAddress;
|
|
3457
3503
|
icon: string;
|
|
@@ -3582,6 +3628,8 @@ declare const UserLiquidationCallTransactionFragment: gql_tada.TadaDocumentNode<
|
|
|
3582
3628
|
icon: string;
|
|
3583
3629
|
chainId: ChainId;
|
|
3584
3630
|
explorerUrl: string;
|
|
3631
|
+
isTestnet: boolean;
|
|
3632
|
+
nativeWrappedToken: EvmAddress;
|
|
3585
3633
|
};
|
|
3586
3634
|
address: EvmAddress;
|
|
3587
3635
|
icon: string;
|
|
@@ -3736,6 +3784,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
3736
3784
|
icon: string;
|
|
3737
3785
|
chainId: ChainId;
|
|
3738
3786
|
explorerUrl: string;
|
|
3787
|
+
isTestnet: boolean;
|
|
3788
|
+
nativeWrappedToken: EvmAddress;
|
|
3739
3789
|
};
|
|
3740
3790
|
address: EvmAddress;
|
|
3741
3791
|
icon: string;
|
|
@@ -3868,6 +3918,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
3868
3918
|
icon: string;
|
|
3869
3919
|
chainId: ChainId;
|
|
3870
3920
|
explorerUrl: string;
|
|
3921
|
+
isTestnet: boolean;
|
|
3922
|
+
nativeWrappedToken: EvmAddress;
|
|
3871
3923
|
};
|
|
3872
3924
|
address: EvmAddress;
|
|
3873
3925
|
icon: string;
|
|
@@ -4000,6 +4052,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
4000
4052
|
icon: string;
|
|
4001
4053
|
chainId: ChainId;
|
|
4002
4054
|
explorerUrl: string;
|
|
4055
|
+
isTestnet: boolean;
|
|
4056
|
+
nativeWrappedToken: EvmAddress;
|
|
4003
4057
|
};
|
|
4004
4058
|
address: EvmAddress;
|
|
4005
4059
|
icon: string;
|
|
@@ -4132,6 +4186,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
4132
4186
|
icon: string;
|
|
4133
4187
|
chainId: ChainId;
|
|
4134
4188
|
explorerUrl: string;
|
|
4189
|
+
isTestnet: boolean;
|
|
4190
|
+
nativeWrappedToken: EvmAddress;
|
|
4135
4191
|
};
|
|
4136
4192
|
address: EvmAddress;
|
|
4137
4193
|
icon: string;
|
|
@@ -4254,6 +4310,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
4254
4310
|
icon: string;
|
|
4255
4311
|
chainId: ChainId;
|
|
4256
4312
|
explorerUrl: string;
|
|
4313
|
+
isTestnet: boolean;
|
|
4314
|
+
nativeWrappedToken: EvmAddress;
|
|
4257
4315
|
};
|
|
4258
4316
|
address: EvmAddress;
|
|
4259
4317
|
icon: string;
|
|
@@ -4377,6 +4435,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
4377
4435
|
icon: string;
|
|
4378
4436
|
chainId: ChainId;
|
|
4379
4437
|
explorerUrl: string;
|
|
4438
|
+
isTestnet: boolean;
|
|
4439
|
+
nativeWrappedToken: EvmAddress;
|
|
4380
4440
|
};
|
|
4381
4441
|
address: EvmAddress;
|
|
4382
4442
|
icon: string;
|
|
@@ -4507,6 +4567,8 @@ declare const PaginatedUserTransactionHistoryResultFragment: gql_tada.TadaDocume
|
|
|
4507
4567
|
icon: string;
|
|
4508
4568
|
chainId: ChainId;
|
|
4509
4569
|
explorerUrl: string;
|
|
4570
|
+
isTestnet: boolean;
|
|
4571
|
+
nativeWrappedToken: EvmAddress;
|
|
4510
4572
|
};
|
|
4511
4573
|
address: EvmAddress;
|
|
4512
4574
|
icon: string;
|
|
@@ -4687,6 +4749,8 @@ declare const VaultFragment: gql_tada.TadaDocumentNode<{
|
|
|
4687
4749
|
icon: string;
|
|
4688
4750
|
chainId: ChainId;
|
|
4689
4751
|
explorerUrl: string;
|
|
4752
|
+
isTestnet: boolean;
|
|
4753
|
+
nativeWrappedToken: EvmAddress;
|
|
4690
4754
|
};
|
|
4691
4755
|
address: EvmAddress;
|
|
4692
4756
|
icon: string;
|
|
@@ -4725,6 +4789,7 @@ declare const VaultFragment: gql_tada.TadaDocumentNode<{
|
|
|
4725
4789
|
symbol: string;
|
|
4726
4790
|
decimals: number;
|
|
4727
4791
|
chainId: ChainId;
|
|
4792
|
+
wrappedToken: EvmAddress;
|
|
4728
4793
|
} | null;
|
|
4729
4794
|
size: {
|
|
4730
4795
|
__typename: "TokenAmount";
|
|
@@ -5169,6 +5234,8 @@ declare const PaginatedVaultsResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
5169
5234
|
icon: string;
|
|
5170
5235
|
chainId: ChainId;
|
|
5171
5236
|
explorerUrl: string;
|
|
5237
|
+
isTestnet: boolean;
|
|
5238
|
+
nativeWrappedToken: EvmAddress;
|
|
5172
5239
|
};
|
|
5173
5240
|
address: EvmAddress;
|
|
5174
5241
|
icon: string;
|
|
@@ -5207,6 +5274,7 @@ declare const PaginatedVaultsResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
5207
5274
|
symbol: string;
|
|
5208
5275
|
decimals: number;
|
|
5209
5276
|
chainId: ChainId;
|
|
5277
|
+
wrappedToken: EvmAddress;
|
|
5210
5278
|
} | null;
|
|
5211
5279
|
size: {
|
|
5212
5280
|
__typename: "TokenAmount";
|
|
@@ -5635,6 +5703,145 @@ declare const PaginatedVaultsResultFragment: gql_tada.TadaDocumentNode<{
|
|
|
5635
5703
|
masked: false;
|
|
5636
5704
|
}>;
|
|
5637
5705
|
type PaginatedVaultsResult = FragmentOf<typeof PaginatedVaultsResultFragment>;
|
|
5706
|
+
declare const VaultUserDepositItemFragment: gql_tada.TadaDocumentNode<{
|
|
5707
|
+
__typename: "VaultUserDepositItem";
|
|
5708
|
+
asset: {
|
|
5709
|
+
__typename: "TokenAmount";
|
|
5710
|
+
usdPerToken: BigDecimal;
|
|
5711
|
+
amount: {
|
|
5712
|
+
__typename: "DecimalValue";
|
|
5713
|
+
raw: BigIntString;
|
|
5714
|
+
decimals: number;
|
|
5715
|
+
value: BigDecimal;
|
|
5716
|
+
};
|
|
5717
|
+
usd: BigDecimal;
|
|
5718
|
+
};
|
|
5719
|
+
shares: {
|
|
5720
|
+
__typename: "TokenAmount";
|
|
5721
|
+
usdPerToken: BigDecimal;
|
|
5722
|
+
amount: {
|
|
5723
|
+
__typename: "DecimalValue";
|
|
5724
|
+
raw: BigIntString;
|
|
5725
|
+
decimals: number;
|
|
5726
|
+
value: BigDecimal;
|
|
5727
|
+
};
|
|
5728
|
+
usd: BigDecimal;
|
|
5729
|
+
};
|
|
5730
|
+
blockExplorerUrl: string;
|
|
5731
|
+
txHash: TxHash;
|
|
5732
|
+
timestamp: DateTime;
|
|
5733
|
+
}, {}, {
|
|
5734
|
+
fragment: "VaultUserDepositItem";
|
|
5735
|
+
on: "VaultUserDepositItem";
|
|
5736
|
+
masked: false;
|
|
5737
|
+
}>;
|
|
5738
|
+
type VaultUserDepositItem = FragmentOf<typeof VaultUserDepositItemFragment>;
|
|
5739
|
+
declare const VaultUserWithdrawItemFragment: gql_tada.TadaDocumentNode<{
|
|
5740
|
+
__typename: "VaultUserWithdrawItem";
|
|
5741
|
+
asset: {
|
|
5742
|
+
__typename: "TokenAmount";
|
|
5743
|
+
usdPerToken: BigDecimal;
|
|
5744
|
+
amount: {
|
|
5745
|
+
__typename: "DecimalValue";
|
|
5746
|
+
raw: BigIntString;
|
|
5747
|
+
decimals: number;
|
|
5748
|
+
value: BigDecimal;
|
|
5749
|
+
};
|
|
5750
|
+
usd: BigDecimal;
|
|
5751
|
+
};
|
|
5752
|
+
shares: {
|
|
5753
|
+
__typename: "TokenAmount";
|
|
5754
|
+
usdPerToken: BigDecimal;
|
|
5755
|
+
amount: {
|
|
5756
|
+
__typename: "DecimalValue";
|
|
5757
|
+
raw: BigIntString;
|
|
5758
|
+
decimals: number;
|
|
5759
|
+
value: BigDecimal;
|
|
5760
|
+
};
|
|
5761
|
+
usd: BigDecimal;
|
|
5762
|
+
};
|
|
5763
|
+
blockExplorerUrl: string;
|
|
5764
|
+
txHash: TxHash;
|
|
5765
|
+
timestamp: DateTime;
|
|
5766
|
+
}, {}, {
|
|
5767
|
+
fragment: "VaultUserWithdrawItem";
|
|
5768
|
+
on: "VaultUserWithdrawItem";
|
|
5769
|
+
masked: false;
|
|
5770
|
+
}>;
|
|
5771
|
+
type VaultUserWithdrawItem = FragmentOf<typeof VaultUserWithdrawItemFragment>;
|
|
5772
|
+
type VaultUserTransactionItem = VaultUserDepositItem | VaultUserWithdrawItem;
|
|
5773
|
+
declare const VaultUserTransactionItemFragment: FragmentDocumentFor<VaultUserTransactionItem, 'VaultUserTransactionItem'>;
|
|
5774
|
+
/**
|
|
5775
|
+
* @internal
|
|
5776
|
+
*/
|
|
5777
|
+
declare const PaginatedVaultUserTransactionHistoryResultFragment: gql_tada.TadaDocumentNode<{
|
|
5778
|
+
__typename: "PaginatedVaultUserTransactionHistoryResult";
|
|
5779
|
+
items: ({
|
|
5780
|
+
__typename: "VaultUserDepositItem";
|
|
5781
|
+
asset: {
|
|
5782
|
+
__typename: "TokenAmount";
|
|
5783
|
+
usdPerToken: BigDecimal;
|
|
5784
|
+
amount: {
|
|
5785
|
+
__typename: "DecimalValue";
|
|
5786
|
+
raw: BigIntString;
|
|
5787
|
+
decimals: number;
|
|
5788
|
+
value: BigDecimal;
|
|
5789
|
+
};
|
|
5790
|
+
usd: BigDecimal;
|
|
5791
|
+
};
|
|
5792
|
+
shares: {
|
|
5793
|
+
__typename: "TokenAmount";
|
|
5794
|
+
usdPerToken: BigDecimal;
|
|
5795
|
+
amount: {
|
|
5796
|
+
__typename: "DecimalValue";
|
|
5797
|
+
raw: BigIntString;
|
|
5798
|
+
decimals: number;
|
|
5799
|
+
value: BigDecimal;
|
|
5800
|
+
};
|
|
5801
|
+
usd: BigDecimal;
|
|
5802
|
+
};
|
|
5803
|
+
blockExplorerUrl: string;
|
|
5804
|
+
txHash: TxHash;
|
|
5805
|
+
timestamp: DateTime;
|
|
5806
|
+
} | {
|
|
5807
|
+
__typename: "VaultUserWithdrawItem";
|
|
5808
|
+
asset: {
|
|
5809
|
+
__typename: "TokenAmount";
|
|
5810
|
+
usdPerToken: BigDecimal;
|
|
5811
|
+
amount: {
|
|
5812
|
+
__typename: "DecimalValue";
|
|
5813
|
+
raw: BigIntString;
|
|
5814
|
+
decimals: number;
|
|
5815
|
+
value: BigDecimal;
|
|
5816
|
+
};
|
|
5817
|
+
usd: BigDecimal;
|
|
5818
|
+
};
|
|
5819
|
+
shares: {
|
|
5820
|
+
__typename: "TokenAmount";
|
|
5821
|
+
usdPerToken: BigDecimal;
|
|
5822
|
+
amount: {
|
|
5823
|
+
__typename: "DecimalValue";
|
|
5824
|
+
raw: BigIntString;
|
|
5825
|
+
decimals: number;
|
|
5826
|
+
value: BigDecimal;
|
|
5827
|
+
};
|
|
5828
|
+
usd: BigDecimal;
|
|
5829
|
+
};
|
|
5830
|
+
blockExplorerUrl: string;
|
|
5831
|
+
txHash: TxHash;
|
|
5832
|
+
timestamp: DateTime;
|
|
5833
|
+
})[];
|
|
5834
|
+
pageInfo: {
|
|
5835
|
+
__typename: "PaginatedResultInfo";
|
|
5836
|
+
prev: Cursor | null;
|
|
5837
|
+
next: Cursor | null;
|
|
5838
|
+
};
|
|
5839
|
+
}, {}, {
|
|
5840
|
+
fragment: "PaginatedVaultUserTransactionHistoryResult";
|
|
5841
|
+
on: "PaginatedVaultUserTransactionHistoryResult";
|
|
5842
|
+
masked: false;
|
|
5843
|
+
}>;
|
|
5844
|
+
type PaginatedVaultUserTransactionHistoryResult = FragmentOf<typeof PaginatedVaultUserTransactionHistoryResultFragment>;
|
|
5638
5845
|
|
|
5639
5846
|
/**
|
|
5640
5847
|
* @internal
|
|
@@ -5649,6 +5856,8 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
5649
5856
|
icon: string;
|
|
5650
5857
|
chainId: ChainId;
|
|
5651
5858
|
explorerUrl: string;
|
|
5859
|
+
isTestnet: boolean;
|
|
5860
|
+
nativeWrappedToken: EvmAddress;
|
|
5652
5861
|
};
|
|
5653
5862
|
address: EvmAddress;
|
|
5654
5863
|
icon: string;
|
|
@@ -5736,6 +5945,8 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
5736
5945
|
icon: string;
|
|
5737
5946
|
chainId: ChainId;
|
|
5738
5947
|
explorerUrl: string;
|
|
5948
|
+
isTestnet: boolean;
|
|
5949
|
+
nativeWrappedToken: EvmAddress;
|
|
5739
5950
|
};
|
|
5740
5951
|
address: EvmAddress;
|
|
5741
5952
|
icon: string;
|
|
@@ -5774,6 +5985,7 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
5774
5985
|
symbol: string;
|
|
5775
5986
|
decimals: number;
|
|
5776
5987
|
chainId: ChainId;
|
|
5988
|
+
wrappedToken: EvmAddress;
|
|
5777
5989
|
} | null;
|
|
5778
5990
|
size: {
|
|
5779
5991
|
__typename: "TokenAmount";
|
|
@@ -6128,6 +6340,8 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
6128
6340
|
icon: string;
|
|
6129
6341
|
chainId: ChainId;
|
|
6130
6342
|
explorerUrl: string;
|
|
6343
|
+
isTestnet: boolean;
|
|
6344
|
+
nativeWrappedToken: EvmAddress;
|
|
6131
6345
|
};
|
|
6132
6346
|
address: EvmAddress;
|
|
6133
6347
|
icon: string;
|
|
@@ -6166,6 +6380,7 @@ declare const MarketsQuery: gql_tada.TadaDocumentNode<{
|
|
|
6166
6380
|
symbol: string;
|
|
6167
6381
|
decimals: number;
|
|
6168
6382
|
chainId: ChainId;
|
|
6383
|
+
wrappedToken: EvmAddress;
|
|
6169
6384
|
} | null;
|
|
6170
6385
|
size: {
|
|
6171
6386
|
__typename: "TokenAmount";
|
|
@@ -6544,6 +6759,8 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
6544
6759
|
icon: string;
|
|
6545
6760
|
chainId: ChainId;
|
|
6546
6761
|
explorerUrl: string;
|
|
6762
|
+
isTestnet: boolean;
|
|
6763
|
+
nativeWrappedToken: EvmAddress;
|
|
6547
6764
|
};
|
|
6548
6765
|
address: EvmAddress;
|
|
6549
6766
|
icon: string;
|
|
@@ -6631,6 +6848,8 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
6631
6848
|
icon: string;
|
|
6632
6849
|
chainId: ChainId;
|
|
6633
6850
|
explorerUrl: string;
|
|
6851
|
+
isTestnet: boolean;
|
|
6852
|
+
nativeWrappedToken: EvmAddress;
|
|
6634
6853
|
};
|
|
6635
6854
|
address: EvmAddress;
|
|
6636
6855
|
icon: string;
|
|
@@ -6669,6 +6888,7 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
6669
6888
|
symbol: string;
|
|
6670
6889
|
decimals: number;
|
|
6671
6890
|
chainId: ChainId;
|
|
6891
|
+
wrappedToken: EvmAddress;
|
|
6672
6892
|
} | null;
|
|
6673
6893
|
size: {
|
|
6674
6894
|
__typename: "TokenAmount";
|
|
@@ -7023,6 +7243,8 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
7023
7243
|
icon: string;
|
|
7024
7244
|
chainId: ChainId;
|
|
7025
7245
|
explorerUrl: string;
|
|
7246
|
+
isTestnet: boolean;
|
|
7247
|
+
nativeWrappedToken: EvmAddress;
|
|
7026
7248
|
};
|
|
7027
7249
|
address: EvmAddress;
|
|
7028
7250
|
icon: string;
|
|
@@ -7061,6 +7283,7 @@ declare const MarketQuery: gql_tada.TadaDocumentNode<{
|
|
|
7061
7283
|
symbol: string;
|
|
7062
7284
|
decimals: number;
|
|
7063
7285
|
chainId: ChainId;
|
|
7286
|
+
wrappedToken: EvmAddress;
|
|
7064
7287
|
} | null;
|
|
7065
7288
|
size: {
|
|
7066
7289
|
__typename: "TokenAmount";
|
|
@@ -7487,6 +7710,8 @@ declare const ChainsQuery: gql_tada.TadaDocumentNode<{
|
|
|
7487
7710
|
icon: string;
|
|
7488
7711
|
chainId: ChainId;
|
|
7489
7712
|
explorerUrl: string;
|
|
7713
|
+
isTestnet: boolean;
|
|
7714
|
+
nativeWrappedToken: EvmAddress;
|
|
7490
7715
|
}[];
|
|
7491
7716
|
}, {
|
|
7492
7717
|
filter: ChainsFilter;
|
|
@@ -7725,6 +7950,8 @@ declare const ReserveQuery: gql_tada.TadaDocumentNode<{
|
|
|
7725
7950
|
icon: string;
|
|
7726
7951
|
chainId: ChainId;
|
|
7727
7952
|
explorerUrl: string;
|
|
7953
|
+
isTestnet: boolean;
|
|
7954
|
+
nativeWrappedToken: EvmAddress;
|
|
7728
7955
|
};
|
|
7729
7956
|
address: EvmAddress;
|
|
7730
7957
|
icon: string;
|
|
@@ -7763,6 +7990,7 @@ declare const ReserveQuery: gql_tada.TadaDocumentNode<{
|
|
|
7763
7990
|
symbol: string;
|
|
7764
7991
|
decimals: number;
|
|
7765
7992
|
chainId: ChainId;
|
|
7993
|
+
wrappedToken: EvmAddress;
|
|
7766
7994
|
} | null;
|
|
7767
7995
|
size: {
|
|
7768
7996
|
__typename: "TokenAmount";
|
|
@@ -8856,6 +9084,55 @@ declare const LiquidateQuery: gql_tada.TadaDocumentNode<{
|
|
|
8856
9084
|
};
|
|
8857
9085
|
}, void>;
|
|
8858
9086
|
type LiquidateRequest = RequestOf<typeof LiquidateQuery>;
|
|
9087
|
+
/**
|
|
9088
|
+
* @internal
|
|
9089
|
+
*/
|
|
9090
|
+
declare const ApproveBorrowCreditDelegationQuery: gql_tada.TadaDocumentNode<{
|
|
9091
|
+
value: {
|
|
9092
|
+
__typename: "TransactionRequest";
|
|
9093
|
+
to: EvmAddress;
|
|
9094
|
+
from: EvmAddress;
|
|
9095
|
+
data: BlockchainData;
|
|
9096
|
+
value: BigIntString;
|
|
9097
|
+
chainId: ChainId;
|
|
9098
|
+
operation: OperationType | null;
|
|
9099
|
+
};
|
|
9100
|
+
}, {
|
|
9101
|
+
request: {
|
|
9102
|
+
chainId: ChainId;
|
|
9103
|
+
delegatee: EvmAddress;
|
|
9104
|
+
user: EvmAddress;
|
|
9105
|
+
amount: BigDecimal;
|
|
9106
|
+
underlyingToken: EvmAddress;
|
|
9107
|
+
market: EvmAddress;
|
|
9108
|
+
};
|
|
9109
|
+
}, void>;
|
|
9110
|
+
type ApproveBorrowCreditDelegatorRequest = RequestOf<typeof ApproveBorrowCreditDelegationQuery>;
|
|
9111
|
+
/**
|
|
9112
|
+
* @internal
|
|
9113
|
+
*/
|
|
9114
|
+
declare const CreditDelegateeAllowanceQuery: gql_tada.TadaDocumentNode<{
|
|
9115
|
+
value: {
|
|
9116
|
+
__typename: "TokenAmount";
|
|
9117
|
+
usdPerToken: BigDecimal;
|
|
9118
|
+
amount: {
|
|
9119
|
+
__typename: "DecimalValue";
|
|
9120
|
+
raw: BigIntString;
|
|
9121
|
+
decimals: number;
|
|
9122
|
+
value: BigDecimal;
|
|
9123
|
+
};
|
|
9124
|
+
usd: BigDecimal;
|
|
9125
|
+
};
|
|
9126
|
+
}, {
|
|
9127
|
+
request: {
|
|
9128
|
+
chainId: ChainId;
|
|
9129
|
+
delegatee: EvmAddress;
|
|
9130
|
+
user: EvmAddress;
|
|
9131
|
+
underlyingToken: EvmAddress;
|
|
9132
|
+
market: EvmAddress;
|
|
9133
|
+
};
|
|
9134
|
+
}, void>;
|
|
9135
|
+
type CreditDelegateeAmountRequest = RequestOf<typeof CreditDelegateeAllowanceQuery>;
|
|
8859
9136
|
|
|
8860
9137
|
declare const UserSuppliesQuery: gql_tada.TadaDocumentNode<{
|
|
8861
9138
|
value: {
|
|
@@ -8869,6 +9146,8 @@ declare const UserSuppliesQuery: gql_tada.TadaDocumentNode<{
|
|
|
8869
9146
|
icon: string;
|
|
8870
9147
|
chainId: ChainId;
|
|
8871
9148
|
explorerUrl: string;
|
|
9149
|
+
isTestnet: boolean;
|
|
9150
|
+
nativeWrappedToken: EvmAddress;
|
|
8872
9151
|
};
|
|
8873
9152
|
address: EvmAddress;
|
|
8874
9153
|
icon: string;
|
|
@@ -8935,6 +9214,8 @@ declare const UserBorrowsQuery: gql_tada.TadaDocumentNode<{
|
|
|
8935
9214
|
icon: string;
|
|
8936
9215
|
chainId: ChainId;
|
|
8937
9216
|
explorerUrl: string;
|
|
9217
|
+
isTestnet: boolean;
|
|
9218
|
+
nativeWrappedToken: EvmAddress;
|
|
8938
9219
|
};
|
|
8939
9220
|
address: EvmAddress;
|
|
8940
9221
|
icon: string;
|
|
@@ -9011,6 +9292,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9011
9292
|
icon: string;
|
|
9012
9293
|
chainId: ChainId;
|
|
9013
9294
|
explorerUrl: string;
|
|
9295
|
+
isTestnet: boolean;
|
|
9296
|
+
nativeWrappedToken: EvmAddress;
|
|
9014
9297
|
};
|
|
9015
9298
|
address: EvmAddress;
|
|
9016
9299
|
icon: string;
|
|
@@ -9143,6 +9426,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9143
9426
|
icon: string;
|
|
9144
9427
|
chainId: ChainId;
|
|
9145
9428
|
explorerUrl: string;
|
|
9429
|
+
isTestnet: boolean;
|
|
9430
|
+
nativeWrappedToken: EvmAddress;
|
|
9146
9431
|
};
|
|
9147
9432
|
address: EvmAddress;
|
|
9148
9433
|
icon: string;
|
|
@@ -9275,6 +9560,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9275
9560
|
icon: string;
|
|
9276
9561
|
chainId: ChainId;
|
|
9277
9562
|
explorerUrl: string;
|
|
9563
|
+
isTestnet: boolean;
|
|
9564
|
+
nativeWrappedToken: EvmAddress;
|
|
9278
9565
|
};
|
|
9279
9566
|
address: EvmAddress;
|
|
9280
9567
|
icon: string;
|
|
@@ -9407,6 +9694,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9407
9694
|
icon: string;
|
|
9408
9695
|
chainId: ChainId;
|
|
9409
9696
|
explorerUrl: string;
|
|
9697
|
+
isTestnet: boolean;
|
|
9698
|
+
nativeWrappedToken: EvmAddress;
|
|
9410
9699
|
};
|
|
9411
9700
|
address: EvmAddress;
|
|
9412
9701
|
icon: string;
|
|
@@ -9529,6 +9818,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9529
9818
|
icon: string;
|
|
9530
9819
|
chainId: ChainId;
|
|
9531
9820
|
explorerUrl: string;
|
|
9821
|
+
isTestnet: boolean;
|
|
9822
|
+
nativeWrappedToken: EvmAddress;
|
|
9532
9823
|
};
|
|
9533
9824
|
address: EvmAddress;
|
|
9534
9825
|
icon: string;
|
|
@@ -9652,6 +9943,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9652
9943
|
icon: string;
|
|
9653
9944
|
chainId: ChainId;
|
|
9654
9945
|
explorerUrl: string;
|
|
9946
|
+
isTestnet: boolean;
|
|
9947
|
+
nativeWrappedToken: EvmAddress;
|
|
9655
9948
|
};
|
|
9656
9949
|
address: EvmAddress;
|
|
9657
9950
|
icon: string;
|
|
@@ -9782,6 +10075,8 @@ declare const UserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
|
9782
10075
|
icon: string;
|
|
9783
10076
|
chainId: ChainId;
|
|
9784
10077
|
explorerUrl: string;
|
|
10078
|
+
isTestnet: boolean;
|
|
10079
|
+
nativeWrappedToken: EvmAddress;
|
|
9785
10080
|
};
|
|
9786
10081
|
address: EvmAddress;
|
|
9787
10082
|
icon: string;
|
|
@@ -9945,6 +10240,8 @@ declare const VaultQuery: gql_tada.TadaDocumentNode<{
|
|
|
9945
10240
|
icon: string;
|
|
9946
10241
|
chainId: ChainId;
|
|
9947
10242
|
explorerUrl: string;
|
|
10243
|
+
isTestnet: boolean;
|
|
10244
|
+
nativeWrappedToken: EvmAddress;
|
|
9948
10245
|
};
|
|
9949
10246
|
address: EvmAddress;
|
|
9950
10247
|
icon: string;
|
|
@@ -9983,6 +10280,7 @@ declare const VaultQuery: gql_tada.TadaDocumentNode<{
|
|
|
9983
10280
|
symbol: string;
|
|
9984
10281
|
decimals: number;
|
|
9985
10282
|
chainId: ChainId;
|
|
10283
|
+
wrappedToken: EvmAddress;
|
|
9986
10284
|
} | null;
|
|
9987
10285
|
size: {
|
|
9988
10286
|
__typename: "TokenAmount";
|
|
@@ -10435,6 +10733,8 @@ declare const VaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
10435
10733
|
icon: string;
|
|
10436
10734
|
chainId: ChainId;
|
|
10437
10735
|
explorerUrl: string;
|
|
10736
|
+
isTestnet: boolean;
|
|
10737
|
+
nativeWrappedToken: EvmAddress;
|
|
10438
10738
|
};
|
|
10439
10739
|
address: EvmAddress;
|
|
10440
10740
|
icon: string;
|
|
@@ -10473,6 +10773,7 @@ declare const VaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
10473
10773
|
symbol: string;
|
|
10474
10774
|
decimals: number;
|
|
10475
10775
|
chainId: ChainId;
|
|
10776
|
+
wrappedToken: EvmAddress;
|
|
10476
10777
|
} | null;
|
|
10477
10778
|
size: {
|
|
10478
10779
|
__typename: "TokenAmount";
|
|
@@ -10935,6 +11236,8 @@ declare const UserVaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
10935
11236
|
icon: string;
|
|
10936
11237
|
chainId: ChainId;
|
|
10937
11238
|
explorerUrl: string;
|
|
11239
|
+
isTestnet: boolean;
|
|
11240
|
+
nativeWrappedToken: EvmAddress;
|
|
10938
11241
|
};
|
|
10939
11242
|
address: EvmAddress;
|
|
10940
11243
|
icon: string;
|
|
@@ -10973,6 +11276,7 @@ declare const UserVaultsQuery: gql_tada.TadaDocumentNode<{
|
|
|
10973
11276
|
symbol: string;
|
|
10974
11277
|
decimals: number;
|
|
10975
11278
|
chainId: ChainId;
|
|
11279
|
+
wrappedToken: EvmAddress;
|
|
10976
11280
|
} | null;
|
|
10977
11281
|
size: {
|
|
10978
11282
|
__typename: "TokenAmount";
|
|
@@ -11508,5 +11812,89 @@ declare const VaultPreviewRedeemQuery: gql_tada.TadaDocumentNode<{
|
|
|
11508
11812
|
};
|
|
11509
11813
|
}, void>;
|
|
11510
11814
|
type VaultPreviewRedeemRequest = RequestOf<typeof VaultPreviewRedeemQuery>;
|
|
11815
|
+
/**
|
|
11816
|
+
* @internal
|
|
11817
|
+
*/
|
|
11818
|
+
declare const VaultUserTransactionHistoryQuery: gql_tada.TadaDocumentNode<{
|
|
11819
|
+
value: {
|
|
11820
|
+
__typename: "PaginatedVaultUserTransactionHistoryResult";
|
|
11821
|
+
items: ({
|
|
11822
|
+
__typename: "VaultUserDepositItem";
|
|
11823
|
+
asset: {
|
|
11824
|
+
__typename: "TokenAmount";
|
|
11825
|
+
usdPerToken: BigDecimal;
|
|
11826
|
+
amount: {
|
|
11827
|
+
__typename: "DecimalValue";
|
|
11828
|
+
raw: BigIntString;
|
|
11829
|
+
decimals: number;
|
|
11830
|
+
value: BigDecimal;
|
|
11831
|
+
};
|
|
11832
|
+
usd: BigDecimal;
|
|
11833
|
+
};
|
|
11834
|
+
shares: {
|
|
11835
|
+
__typename: "TokenAmount";
|
|
11836
|
+
usdPerToken: BigDecimal;
|
|
11837
|
+
amount: {
|
|
11838
|
+
__typename: "DecimalValue";
|
|
11839
|
+
raw: BigIntString;
|
|
11840
|
+
decimals: number;
|
|
11841
|
+
value: BigDecimal;
|
|
11842
|
+
};
|
|
11843
|
+
usd: BigDecimal;
|
|
11844
|
+
};
|
|
11845
|
+
blockExplorerUrl: string;
|
|
11846
|
+
txHash: TxHash;
|
|
11847
|
+
timestamp: DateTime;
|
|
11848
|
+
} | {
|
|
11849
|
+
__typename: "VaultUserWithdrawItem";
|
|
11850
|
+
asset: {
|
|
11851
|
+
__typename: "TokenAmount";
|
|
11852
|
+
usdPerToken: BigDecimal;
|
|
11853
|
+
amount: {
|
|
11854
|
+
__typename: "DecimalValue";
|
|
11855
|
+
raw: BigIntString;
|
|
11856
|
+
decimals: number;
|
|
11857
|
+
value: BigDecimal;
|
|
11858
|
+
};
|
|
11859
|
+
usd: BigDecimal;
|
|
11860
|
+
};
|
|
11861
|
+
shares: {
|
|
11862
|
+
__typename: "TokenAmount";
|
|
11863
|
+
usdPerToken: BigDecimal;
|
|
11864
|
+
amount: {
|
|
11865
|
+
__typename: "DecimalValue";
|
|
11866
|
+
raw: BigIntString;
|
|
11867
|
+
decimals: number;
|
|
11868
|
+
value: BigDecimal;
|
|
11869
|
+
};
|
|
11870
|
+
usd: BigDecimal;
|
|
11871
|
+
};
|
|
11872
|
+
blockExplorerUrl: string;
|
|
11873
|
+
txHash: TxHash;
|
|
11874
|
+
timestamp: DateTime;
|
|
11875
|
+
})[];
|
|
11876
|
+
pageInfo: {
|
|
11877
|
+
__typename: "PaginatedResultInfo";
|
|
11878
|
+
prev: Cursor | null;
|
|
11879
|
+
next: Cursor | null;
|
|
11880
|
+
};
|
|
11881
|
+
};
|
|
11882
|
+
}, {
|
|
11883
|
+
request: {
|
|
11884
|
+
cursor?: Cursor | null | undefined;
|
|
11885
|
+
pageSize?: PageSize | null | undefined;
|
|
11886
|
+
orderBy?: {
|
|
11887
|
+
date: OrderDirection;
|
|
11888
|
+
} | null | undefined;
|
|
11889
|
+
filter?: VaultUserHistoryAction[] | null | undefined;
|
|
11890
|
+
user: EvmAddress;
|
|
11891
|
+
chainId: ChainId;
|
|
11892
|
+
vault: EvmAddress;
|
|
11893
|
+
};
|
|
11894
|
+
}, void>;
|
|
11895
|
+
type VaultUserTransactionHistoryRequest = RequestOf<typeof VaultUserTransactionHistoryQuery>;
|
|
11896
|
+
type VaultUserTransactionHistoryResult = {
|
|
11897
|
+
value: PaginatedVaultUserTransactionHistoryResult;
|
|
11898
|
+
};
|
|
11511
11899
|
|
|
11512
|
-
export { type APYSample, APYSampleFragment, type AaveBorrowIncentive, AaveBorrowIncentiveFragment, type AaveSupplyIncentive, AaveSupplyIncentiveFragment, type AnySelectionSet, type AnyVariables, type ApprovalRequired, ApprovalRequiredFragment, BorrowAPYHistoryQuery, type BorrowAPYHistoryRequest, BorrowQuery, type BorrowRequest, type Chain, ChainFragment, ChainsFilter$1 as ChainsFilter, ChainsQuery, CollateralToggleQuery, type CollateralToggleRequest, 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, type FragmentShape, HasProcessedKnownTransactionQuery, type HasProcessedKnownTransactionRequest, 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$1 as OperationType, type OrderByUserCriteria, OrderDirection$1 as OrderDirection, PageSize$1 as PageSize, type PaginatedResultInfo, PaginatedResultInfoFragment, type PaginatedUserTransactionHistoryResult, PaginatedUserTransactionHistoryResultFragment, type PaginatedVaultsResult, PaginatedVaultsResultFragment, type PercentValue, PercentValueFragment, PermitTypedDataQuery, type PermitTypedDataRequest, type PermitTypedDataResponse, PermitTypedDataResponseFragment, RepayQuery, type RepayRequest, type RequestFrom, 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, type StandardData, type StandardDocumentNode, SupplyAPYHistoryQuery, type SupplyAPYHistoryRequest, SupplyQuery, type SupplyRequest, TimeWindow$1 as TimeWindow, type TokenAmount, TokenAmountFragment, type TransactionRequest, TransactionRequestFragment, type TypeDefinition, TypeDefinitionFragment, type TypeField, TypeFieldFragment, type TypedSelectionSet, type UsdExchangeRate, UsdExchangeRateFragment, UsdExchangeRatesQuery, type UsdExchangeRatesRequest, type UserBorrowTransaction, UserBorrowTransactionFragment, UserBorrowsQuery, type UserBorrowsRequest, type UserLiquidationCallTransaction, UserLiquidationCallTransactionFragment, UserMarketStateQuery, type UserMarketStateRequest, 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, VaultDeployQuery, type VaultDeployRequest, VaultDepositQuery, type VaultDepositRequest, VaultFragment, VaultMintSharesQuery, type VaultMintSharesRequest, VaultPreviewDepositQuery, type VaultPreviewDepositRequest, VaultPreviewMintQuery, type VaultPreviewMintRequest, VaultPreviewRedeemQuery, type VaultPreviewRedeemRequest, VaultPreviewWithdrawQuery, type VaultPreviewWithdrawRequest, VaultQuery, VaultRedeemSharesQuery, type VaultRedeemSharesRequest, type VaultRequest, VaultSetFeeQuery, type VaultSetFeeRequest, VaultWithdrawFeesQuery, type VaultWithdrawFeesRequest, VaultWithdrawQuery, type VaultWithdrawRequest, VaultsQuery, type VaultsRequest, WithdrawQuery, type WithdrawRequest, type __FutureProofUnion, assertTypename, graphql };
|
|
11900
|
+
export { type APYSample, APYSampleFragment, type AaveBorrowIncentive, AaveBorrowIncentiveFragment, type AaveSupplyIncentive, AaveSupplyIncentiveFragment, type AnySelectionSet, type AnyVariables, type ApprovalRequired, ApprovalRequiredFragment, ApproveBorrowCreditDelegationQuery, type ApproveBorrowCreditDelegatorRequest, BorrowAPYHistoryQuery, type BorrowAPYHistoryRequest, BorrowQuery, type BorrowRequest, type Chain, ChainFragment, ChainsFilter$1 as ChainsFilter, ChainsQuery, 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, type FragmentShape, HasProcessedKnownTransactionQuery, type HasProcessedKnownTransactionRequest, 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$1 as OperationType, type OrderByUserCriteria, OrderDirection$1 as OrderDirection, PageSize$1 as 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 RequestFrom, 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, type StandardData, type StandardDocumentNode, SupplyAPYHistoryQuery, type SupplyAPYHistoryRequest, SupplyQuery, type SupplyRequest, TimeWindow$1 as TimeWindow, type TokenAmount, TokenAmountFragment, type TransactionRequest, TransactionRequestFragment, type TypeDefinition, TypeDefinitionFragment, type TypeField, TypeFieldFragment, type TypedSelectionSet, type UsdExchangeRate, UsdExchangeRateFragment, UsdExchangeRatesQuery, type UsdExchangeRatesRequest, type UserBorrowTransaction, UserBorrowTransactionFragment, UserBorrowsQuery, type UserBorrowsRequest, type UserLiquidationCallTransaction, UserLiquidationCallTransactionFragment, UserMarketStateQuery, type UserMarketStateRequest, 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, VaultDeployQuery, type VaultDeployRequest, VaultDepositQuery, type VaultDepositRequest, VaultFragment, VaultMintSharesQuery, type VaultMintSharesRequest, VaultPreviewDepositQuery, type VaultPreviewDepositRequest, VaultPreviewMintQuery, type VaultPreviewMintRequest, VaultPreviewRedeemQuery, type VaultPreviewRedeemRequest, VaultPreviewWithdrawQuery, type VaultPreviewWithdrawRequest, VaultQuery, VaultRedeemSharesQuery, type VaultRedeemSharesRequest, type VaultRequest, VaultSetFeeQuery, type VaultSetFeeRequest, type VaultUserDepositItem, VaultUserDepositItemFragment, VaultUserHistoryAction$1 as VaultUserHistoryAction, VaultUserTransactionHistoryQuery, type VaultUserTransactionHistoryRequest, type VaultUserTransactionHistoryResult, type VaultUserTransactionItem, VaultUserTransactionItemFragment, type VaultUserWithdrawItem, VaultUserWithdrawItemFragment, VaultWithdrawFeesQuery, type VaultWithdrawFeesRequest, VaultWithdrawQuery, type VaultWithdrawRequest, VaultsQuery, type VaultsRequest, WithdrawQuery, type WithdrawRequest, type __FutureProofUnion, assertTypename, graphql };
|