Maker Reporter

Reports the utilization ratio of each maker. This is required for borrowing fee calculation to ensure makers do not over-report their utilization ratio and receive more fees than they should.

Contract

function getUtilRatioFactor(
    uint256 marketId, 
    address receiver
)
/// @notice Return if long
returns (
    uint256 0,     
    uint256 defaultUtilRatioFactor
)
/// @ notice Return if short
returns (
    uint256 defaultUtilRatioFactor,     
    uint256 0
)

Last updated