Omniscia Tren Finance Audit
ConfigurableAddresses Static Analysis Findings
ConfigurableAddresses Static Analysis Findings
CAS-01S: Inexistent Event Emissions
Type | Severity | Location |
---|---|---|
Language Specific | ![]() | ConfigurableAddresses.sol:L77-L82, L84-L89 |
Description:
The linked functions adjust sensitive contract variables yet do not emit an event for it.
Example:
contracts/Dependencies/ConfigurableAddresses.sol
77function setCommunityIssuance(address _communityIssuance) public onlyOwner {78 if (_communityIssuance == address(0)) {79 revert ConfigurableAddresses__CommunityIssuanceZeroAddress();80 }81 communityIssuance = _communityIssuance;82}
Recommendation:
We advise an event
to be declared and correspondingly emitted for each function to ensure off-chain processes can properly react to this system adjustment.
Alleviation (f6f1ad0b8f24a96ade345db1dd05a1878eb0f761):
The CommunityIssuanceAddressSet
, and TRENStakingAddressSet
events were introduced to the codebase and are correspondingly emitted in the ConfigurableAddresses::setCommunityIssuance
, and ConfigurableAddresses::setTRENStaking
functions respectively, addressing this exhibit in full.