Architecture
3
Governance Integration Layer
The USM integrates with the ORBT governance system for secure rate management.
Supported governance actions:
ACT_SET_RATE: Update the per-second interest rateACT_SET_REWARD_CONFIG: Configure external reward token emissionsACT_SET_REWARDS_ONLY_MODE: Toggle between full accrual and rewards-only mode
Governance interface that is implemented for executing each action respectively:
interface IGovernedContract {
function executeGovernanceAction(bytes32 actionType, bytes calldata payload) external returns (bool);
}Last updated

