> For the complete documentation index, see [llms.txt](https://docs.defisaver.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.defisaver.com/triggers/liquity/liquitydebtinfronttrigger.md).

# LiquityDebtInFrontTrigger

### Description

Checks if total amount of debt in front of a specified trove is over a limit

### Trigger ID

`0xff4a5c51`

### SDK Action

```ts
const liquityDebtInFrontTrigger = new dfs.triggers.LiquityDebtInFrontTrigger(
    ...args
);
```

### Subscription Parameters

```solidity
/// @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;
}
```

### Calldata Parameters

```solidity
None
```

### IsChangeable

`false`
