ILiquidationJob
Inherits: IAuthorizable, IModifiable, IJob
Functions
shouldWork
Whether the liquidation job should be worked
function shouldWork() external view returns (bool _shouldWork);
liquidationEngine
Address of the LiquidationEngine contract
function liquidationEngine() external view returns (ILiquidationEngine _liquidationEngine);
workLiquidation
Rewarded method to liquidate a SAFE
function workLiquidation(bytes32 _cType, address _safe) external;
Parameters
Name | Type | Description |
---|---|---|
_cType | bytes32 | Bytes32 representation of the collateral type |
_safe | address | Address of the SAFE to liquidate |