Core Contracts

Regnum Aurum Acquisition Corp
HardhatReal World AssetsNFT
77,280 USDC
Submission Details
Severity: medium
Invalid

Missing Events for Critical Parameter Changes

Author Revealed upon completion

Summary

Missing Events for Critical Parameter Changes , fail to track governance actions

Vulnerability Details

Functions like GaugeController.set_weights() do not emit events, reducing transparency

Impact

Off-chain monitors fail to track governance actions.

Tools Used

Manual

Recommendations

  • Before

function set_weights(address gauge) external onlyOwner { ... }
  • After

event GaugeWeightUpdated(address indexed gauge, uint newWeight);
function set_weights(address gauge) external onlyOwner {
emit GaugeWeightUpdated(gauge, newWeight);
}
Updates

Lead Judging Commences

inallhonesty Lead Judge 8 days ago
Submission Judgement Published
Invalidated
Reason: Non-acceptable severity

Support

FAQs

Can't find an answer? Chat with us on Discord, Twitter or Linkedin.