> 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/actions/liquity/liquityclaim.md).

# LiquityClaim

### Description

Action for claiming collateral from Liquity

> **Notes**
>
> Claims remaining collateral from the user's closed Trove

### Action ID

`0x9e9da920`

### SDK Action

```ts
const liquityClaimAction = new dfs.actions.liquity.LiquityClaimAction(
    to
);
```

### Action Type

`STANDARD_ACTION`

### Input Parameters

```solidity
    /// @param to Address that will receive the collateral
    struct Params {
        address to;
    }
```

### Return Value

```solidity
return bytes32(claimedColl);
```

### Events and Logs

```solidity
emit ActionEvent("LiquityClaim", logData);
logger.logActionDirectEvent("LiquityClaim", logData);
bytes memory logData = abi.encode(params);
```
