LiquityV2AdjustRateDebtInFrontTrigger
Last updated
/// @notice Parameters for the LiquityV2 interest rate adjustment trigger
/// @param market Address of the LiquityV2 market (branch) to monitor
/// @param troveId ID of the trove to monitor for debt in front
/// @param criticalDebtInFrontLimit Critical threshold - strategy executes when debt in front is below this limit
/// @param nonCriticalDebtInFrontLimit Non-critical threshold - strategy executes when debt in front is below this limit AND adjustment fee is zero
struct SubParams {
address market;
uint256 troveId;
uint256 criticalDebtInFrontLimit;
uint256 nonCriticalDebtInFrontLimit;
}None