Checks if total amount of debt in front of a specified trove is over a limit
Notes
Max number of troves to check is 250.
Trigger ID
0x72a21f97
SDK Action
Subscription Parameters
Calldata Parameters
IsChangeable
false
const liquityDebtInFrontWithLimitTrigger = new dfs.triggers.LiquityDebtInFrontWithLimitTrigger(
troveOwner,
debtInFront
);
/// @param troveOwner Trove is based on user address so we use trove owner addr
/// @param debtInFrontMin Minimal amount of debtInFront that is required
struct SubParams {
address troveOwner;
uint256 debtInFrontMin;
}