{
    "Function": "setCallIncentive",
    "File": "contracts/AuraStakingProxy.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setCallIncentive(uint256 _incentive) external {\n        require(msg.sender == owner, \"!auth\");\n        require(_incentive <= 100, \"too high\");\n        callIncentive = _incentive;\n        emit CallIncentiveChanged(_incentive);\n    }"
}