From 07b972b578d7916228de5b93e8e5e62a58483388 Mon Sep 17 00:00:00 2001 From: Chris Cashwell Date: Thu, 21 Mar 2024 15:58:14 -0400 Subject: [PATCH] chore: clarify natspec comment about strategies --- src/incentives/ERC20Incentive.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/incentives/ERC20Incentive.sol b/src/incentives/ERC20Incentive.sol index 054e12bd..2c8e7141 100644 --- a/src/incentives/ERC20Incentive.sol +++ b/src/incentives/ERC20Incentive.sol @@ -21,9 +21,9 @@ contract ERC20Incentive is Incentive { /// @notice The strategy for the incentive /// @dev The strategy determines how the incentive is disbursed: - /// - POOL: Transfer tokens from the budget to the recipient - /// - MINT: Mint tokens to the recipient directly (not yet implemented) - /// - RAFFLE: Add the recipient to a raffle for a chance to win the entire reward amount + /// - POOL: Users claim from a pool of rewards until the limit is reached, with each claim receiving an equal share of the total; + /// - MINT: New tokens are minted and distributed to the recipient, with each claim receiving an equal amount of newly issued tokens; + /// - RAFFLE: Users claim a slot in a raffle, and a single winner is randomly drawn to receive the entire reward amount; enum Strategy { POOL, MINT,