@xoxno/types 1.0.143 → 1.0.144
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.
|
@@ -28,7 +28,7 @@ export declare class LendingAccountProfileDoc {
|
|
|
28
28
|
_ts: number;
|
|
29
29
|
constructor(props?: Partial<LendingAccountProfileDoc>);
|
|
30
30
|
}
|
|
31
|
-
declare const selectFields: readonly ["token", "name", "supplyApy", "borrowApy", "decimals", "reserves", "supplyCap", "borrowCap", "supplyAmount", "siloed", "supplyIndex", "borrowIndex", "rewardsReserve", "maxDebtUsd", "debtCeiling", "isolated", "canBeCollateral", "timestamp", "canBeBorrowed", "canBorrowInIsolation", "extraApy", "flashLoanFee", "utilizationRate", "borrowAmount", "
|
|
31
|
+
declare const selectFields: readonly ["token", "name", "supplyApy", "borrowApy", "decimals", "reserves", "supplyCap", "borrowCap", "supplyAmount", "siloed", "supplyIndex", "borrowIndex", "rewardsReserve", "maxDebtUsd", "debtCeiling", "isolated", "canBeCollateral", "timestamp", "canBeBorrowed", "canBorrowInIsolation", "extraApy", "flashLoanFee", "utilizationRate", "borrowAmount", "optimalUsageRate", "slopeRate1", "slopeRate2", "slopeRate3", "midUsageRate", "baseRate", "maxBorrowRate", "reserveFactor", "oraclePrice", "address", "flashLoan"];
|
|
32
32
|
export declare class LendingAccountProfile extends LendingAccountProfileDoc {
|
|
33
33
|
supplyAmount: string;
|
|
34
34
|
borrowAmount: string;
|
|
@@ -214,8 +214,6 @@ const selectFields = [
|
|
|
214
214
|
'flashLoanFee',
|
|
215
215
|
'utilizationRate',
|
|
216
216
|
'borrowAmount',
|
|
217
|
-
'borrowAmountScaled',
|
|
218
|
-
'supplyAmountScaled',
|
|
219
217
|
'optimalUsageRate',
|
|
220
218
|
'slopeRate1',
|
|
221
219
|
'slopeRate2',
|
|
@@ -225,10 +223,8 @@ const selectFields = [
|
|
|
225
223
|
'maxBorrowRate',
|
|
226
224
|
'reserveFactor',
|
|
227
225
|
'oraclePrice',
|
|
228
|
-
'
|
|
229
|
-
'
|
|
230
|
-
'liquidationFee',
|
|
231
|
-
'liquidationThreshold',
|
|
226
|
+
'address',
|
|
227
|
+
'flashLoan',
|
|
232
228
|
];
|
|
233
229
|
class LendingAccountProfile extends LendingAccountProfileDoc {
|
|
234
230
|
}
|