all files / contracts/modules/interest-rate-models/ IRMClassStable.sol

100% Statements 0/0
100% Branches 0/0
0% Functions 0/1
100% Lines 0/0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15                             
// SPDX-License-Identifier: GPL-2.0-or-later
 
pragma solidity ^0.8.0;
 
import "../../BaseIRMLinearKink.sol";
 
 
contract IRMClassStable is BaseIRMLinearKink {
    constructor(bytes32 moduleGitCommit_)
        BaseIRMLinearKink(MODULEID__IRM_CLASS__STABLE, moduleGitCommit_,
            // Base=0% APY,  Kink(80%)=4% APY  Max=100% APY
            0, 361718388, 24123704987, 3435973836
        ) {}
}