In Solidity, the indexed
keyword allows up to three parameters in an event to be included in the topics section of the log, making them searchable and filterable via off-chain tools like Etherscan, The Graph, and web3 libraries.
In your Egghuntgame.sol
The following events do not make use of indexed
parameters
Aderyn
Add indexed
to parameters that are likely to be filtered or searched for, such as startTime
, endTime
, or both:
Improves event queryability and off-chain indexing.
Better integration with analytics tools and explorers.
Enhanced developer and user experience when tracking game events.
Standard practice for clarifying important contract behaviors
The contest is live. Earn rewards by submitting a finding.
This is your time to appeal against judgements on your submissions.
Appeals are being carefully reviewed by our judges.