Christmas Dinner

First Flight #31
Beginner FriendlyFoundrySolidity
100 EXP
View results
Submission Details
Severity: low
Invalid

[L-2] Events missing indexed parameters

Summary

Several events in the contract don't use indexed parameters optimally for better event filtering.

Vulnerability Details

event NewSignup(address indexed, uint256 indexed, bool indexed);
event GenerousAdditionalContribution(address indexed, uint256 indexed);
event ChangedParticipation(address indexed, bool indexed);

Impact

  • Low: Suboptimal event filtering capabilities

  • Harder to track specific amounts or status changes

Tools Used

  • Manual code review

Recommendations

Optimize event parameter indexing:

event NewSignup(address indexed user, uint256 amount, bool indexed status);
event GenerousAdditionalContribution(address indexed user, uint256 amount);
event ChangedParticipation(address indexed user, bool status);
Updates

Lead Judging Commences

0xtimefliez Lead Judge 7 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity
0xtimefliez Lead Judge 7 months ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.