Open code423n4 opened 3 years ago
pants
The events defined in IAuction don't use the indexed keyword for any of their values.
IAuction
indexed
Users can't easily keep track of logged events, resulting with a poor user experience.
Manual code review.
Use the indexed keyword whenever necessary for these events.
Personal opinion here as I believe you can still filter unindexed parameters, and using theGraph makes this a non-issue, that said, the sponsor acknowledges so let's mark as valid
Handle
pants
Vulnerability details
The events defined in
IAuction
don't use theindexed
keyword for any of their values.Impact
Users can't easily keep track of logged events, resulting with a poor user experience.
Tool Used
Manual code review.
Recommended Mitigation Steps
Use the
indexed
keyword whenever necessary for these events.