GovernorBravoDelegateStorageV2
Inherits: GovernorBravoDelegateStorageV1
State Variables
isKeycodeHighRisk
Modules in the Default system that are considered high risk
In Default Framework, Keycodes are used to uniquely identify modules. They are a wrapper over the bytes5 data type, and allow us to easily check if a proposal is touching any specific modules
mapping(Keycode => bool) public isKeycodeHighRisk;
vetoGuardian
Address which has veto power over all proposals
address public vetoGuardian;
kernel
The central hub of the Default Framework system that manages modules and policies
Used in this adaptation of Governor Bravo to identify high risk proposals
address public kernel;