@xoxno/types 1.0.140 → 1.0.142
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", "borrowAmountScaled", "supplyAmountScaled", "optimalUsageRate", "slopeRate1", "slopeRate2", "slopeRate3", "midUsageRate", "baseRate", "maxBorrowRate", "reserveFactor"];
|
|
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", "borrowAmountScaled", "supplyAmountScaled", "optimalUsageRate", "slopeRate1", "slopeRate2", "slopeRate3", "midUsageRate", "baseRate", "maxBorrowRate", "reserveFactor", "oraclePrice", "ltv", "liquidationBonus", "liquidationFee", "liquidationThreshold"];
|
|
32
32
|
export declare class LendingAccountProfile extends LendingAccountProfileDoc {
|
|
33
33
|
supplyAmount: string;
|
|
34
34
|
borrowAmount: string;
|
|
@@ -224,6 +224,11 @@ const selectFields = [
|
|
|
224
224
|
'baseRate',
|
|
225
225
|
'maxBorrowRate',
|
|
226
226
|
'reserveFactor',
|
|
227
|
+
'oraclePrice',
|
|
228
|
+
'ltv',
|
|
229
|
+
'liquidationBonus',
|
|
230
|
+
'liquidationFee',
|
|
231
|
+
'liquidationThreshold',
|
|
227
232
|
];
|
|
228
233
|
class LendingAccountProfile extends LendingAccountProfileDoc {
|
|
229
234
|
}
|