-
Notifications
You must be signed in to change notification settings - Fork 73
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
EasyRF strategy draft #669
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
left a few questions but otherwise lgtm
/// @notice Stores the details of the recipients. | ||
struct Recipient { | ||
// If false, the recipientAddress is the anchor of the profile | ||
bool useRegistryAnchor; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want to retain this? or are we doing it cause we already have this in DirectGrantsLite ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i would suggest to keep it, to have it consistent between the strategies and other implementations
|
||
/// @notice Stores the initialize data for the strategy | ||
struct InitializeData { | ||
bool useRegistryAnchor; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
worth removing ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see #669 (comment)
Metadata public distributionMetadata; | ||
|
||
/// @notice Flag to indicate whether to use the registry anchor or not. | ||
bool public useRegistryAnchor; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep / remove ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see #669 (comment)
uint64 public poolEndTime; | ||
|
||
/// @notice The total amount of tokens allocated to the payout. | ||
uint256 public totalPayoutAmount; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is being used instead of fundPool right ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not used anywhere, got removed
fixes PAR-716