Setters

In order to change one of these things, through our approved addresses initiating a call, we can change the state of listed params below

function setMinTimeToStake(
    uint256 _minTimeToStake
)

function setIsAllowed(
   bool _isEarlyWithdrawAllowed,
   bool _isFlatFeeAllowed
)

function setFeePercents(
  uint256 _stakeFeePercent,
  uint256 _rewardFeePercent
)

function setFlatFees(
    uint256 _flatFeeAmountDeposit,
    uint256 _flatFeeAmountWithdraw
)

function setWarmupCoolDown(
    uint256 _warmup,
    uint256 _coolDown
)

function setFeeCollector(
    address payable _feeCollector
)

Last updated