https://github.com/code-423n4/2024-07-loopfi/blob/57871f64bdea450c1f04c9a53dc1a78223719164/src/reward/MultiFeeDistribution.sol#L347-L360
Evidently, tokens can be added to the reward emission list via the addReward function in either the MultiFeeDistribution contract by addresses with the minter role. Although these tokens are expected to be AToken instances or the RDNT token, theres no validation beyond checking against the zero address, allowing for the potential addition of incorrect tokens.
QA, protected by the admin. However, adding an unsupported token could cause various protocol components to fail due to non-compliance with the IAToken interface and issues with price retrieval via the AaveOracle. Moreover, the inability to remove mistakenly added reward tokens necessitates an emergency upgrade to rectify the situation.
Implement comprehensive validation logic to prevent the addition of unsupported tokens, ensuring they conform to the required interfaces and standards.
