LiquityClaim

Description

Action for claiming collateral from Liquity

Notes

Claims remaining collateral from the user's closed Trove

Action ID

0x9e9da920

SDK Action

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

Action Type

STANDARD_ACTION

Input Parameters

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

Return Value

return bytes32(claimedColl);

Events and Logs

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

Last updated

Was this helpful?