Spare Wintergreen Coyote
Medium
There is no restriction on buying 0 votes in the buyVotes function. https://github.com/sherlock-audit/2024-12-ethos-update/blob/main/ethos/packages/contracts/contracts/ReputationMarket.sol#L440
If a malicious user sets both min and max to 0, they can still buy 0 votes and become a participant. https://github.com/sherlock-audit/2024-12-ethos-update/blob/main/ethos/packages/contracts/contracts/ReputationMarket.sol#L475
No response
No response
No response
Malicious users can artificially inflate the participant list, leading to increased gas costs during participant-based operations and misleading statistics about actual market engagement.
No response
Require a non-zero purchase before registering a new participant (e.g., checking currentVotesToBuy > 0) and optionally enforce minVotesToBuy <= maxVotesToBuy to prevent zero-vote scenarios.