[L-2] - Missing indexed event.
Indexed event fields make the data more quickly accessible to off-chain tools that parse events, and adds them to a special data structure known as “topics” instead of the data part of the log. A topic can only hold a single word (32 bytes) so if you use a reference type for an indexed argument, the Keccak-256 hash of the value is stored as a topic instead.
Each event can use up to three indexed fields. If there are fewer than three fields, all of the fields can be indexed. It is important to note that each index field costs extra gas during emission, so it's not necessarily best to index the maximum allowed fields per event (three indexed fields).
This is specially recommended when gas usage is not particularly of concern for the emission of the events in question, and the benefits of querying those fields in an easier and straight-forward manner surpasses the downsides of gas usage increase.
Likelihood: Low.
Impact: Low.
The following events on the BidBeastsNFTMarket contract are missing an indexed field:
NFtListed:
BidPlaced:
AuctionSettled:
Modify the declared events, attributing the indexed keyword for the important fields. This action will allow easier fetching of on-chain data through events.
Here is a simple example on how to modify these events:
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.