Reward Pool Drip Models
interface IDripModel {
/// @notice Returns the drip factor, the percentage of undripped rewards which should drip to stakers, as a wad. For
/// example, it there are 100 undripped reward assets and this method returns 1e17, then 100 * 1e17 / 1e18 = 10 assets
/// will drip.
/// @param lastDripTime_ Timestamp of the last drip
function dripFactor(uint256 lastDripTime_) external view returns (uint256 dripFactor_);
}Exponential-rate drip model
Deploying a exponential-rate drip model
Last updated