@defisaver/automation-sdk 3.3.1 → 3.3.2-dev

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.
@@ -190,6 +190,14 @@ export declare namespace Position {
190
190
  triggerRatio: number;
191
191
  }
192
192
 
193
+ interface InterestRateAdjustmentLiquityV2 extends Base {
194
+ market: EthereumAddress,
195
+ troveId: string,
196
+ criticalDebtInFrontLimit: string,
197
+ nonCriticalDebtInFrontLimit: string,
198
+ interestRateChange: string,
199
+ }
200
+
193
201
  interface TrailingStop extends Base {
194
202
  roundId: number,
195
203
  triggerPercentage: number,
@@ -239,6 +247,7 @@ export declare namespace Position {
239
247
  | Specific.BoostOnPriceMorpho
240
248
  | Specific.BoostOnPriceLiquityV2
241
249
  | Specific.PaybackLiquityV2
250
+ | Specific.InterestRateAdjustmentLiquityV2
242
251
  | Specific.CompoundV3LeverageManagementOnPrice
243
252
  | Specific.CompoundV3CloseOnPrice;
244
253