-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reward scaling by notional #2318
Comments
|
Can the scaling increase the rewards paid out in the case the actual notional is greater than the target notional also or is only supposed to reduce rewards? i.e. Should the actual amount transferred be capped at the
@barnabee answer: it's a cap as you say above. |
Do we want to allow scaling by open interest additionally? Enum what the metric is:
Using reward / payout window length we should sum (or average) the notional across the reward payout frequency. |
Two related problems experienced by reward creators are:
These can both be solved by the addition of reward scaling. Under reward scaling, in addition to specifying the amount of the recurring reward payment, the user can also specify the amount of volume in notional (
target_notional_volume
) at or above which the full amount is available.The amount transferred would be
(actual_notional_volume / target_notional_volume) * transfer_amount
, meaning that assumingt the target notional is larger than the actual notional, additional acitivty qualifying to be rewarded would not reduce the amount of the reward per unit of activity.This feature should be optional, and care should be taken in the design regarding how it interacts with #2317.
The text was updated successfully, but these errors were encountered: