|
| 1 | +// SPDX-License-Identifier: MIT OR Apache-2.0 |
| 2 | +pragma solidity ^0.8.26; |
| 3 | + |
| 4 | +import {InvalidSubnet, NotAuthorized, ValidatorPowerChangeDenied} from "./errors/IPCErrors.sol"; |
| 5 | +import {IValidatorGater} from "./interfaces/IValidatorGater.sol"; |
| 6 | + |
| 7 | +import {SubnetIDHelper} from "./lib/SubnetIDHelper.sol"; |
| 8 | +import {SubnetID} from "./structs/Subnet.sol"; |
| 9 | +import {OwnableUpgradeable} from "@openzeppelin/contracts-upgradeable/contracts/access/OwnableUpgradeable.sol"; |
| 10 | +import {UUPSUpgradeable} from "@openzeppelin/contracts-upgradeable/contracts/proxy/utils/UUPSUpgradeable.sol"; |
| 11 | + |
| 12 | +/// The power range that an approved validator can have. |
| 13 | +struct PowerRange { |
| 14 | + uint256 min; |
| 15 | + uint256 max; |
| 16 | +} |
| 17 | + |
| 18 | +/// This is a simple implementation of `IValidatorGater`. It makes sure the exact power change |
| 19 | +/// request is approved. This is a very strict requirement. |
| 20 | +contract ValidatorGater is IValidatorGater, UUPSUpgradeable, OwnableUpgradeable { |
| 21 | + using SubnetIDHelper for SubnetID; |
| 22 | + |
| 23 | + bool private _active; |
| 24 | + |
| 25 | + SubnetID public subnet; |
| 26 | + mapping(address => PowerRange) public allowed; |
| 27 | + // New active status and who was the owner at change time |
| 28 | + |
| 29 | + event ActiveStateChange(bool active, address account); |
| 30 | + |
| 31 | + function initialize() public initializer { |
| 32 | + __Ownable_init(msg.sender); |
| 33 | + _active = true; |
| 34 | + } |
| 35 | + |
| 36 | + /// @notice Indicates whether the gate is active or not |
| 37 | + function isActive() external view returns (bool) { |
| 38 | + return _active; |
| 39 | + } |
| 40 | + |
| 41 | + /// @notice Sets the contract as active or inactive. |
| 42 | + /// @dev Only the owner can change the active state. |
| 43 | + function setActive(bool active) external onlyOwner { |
| 44 | + _active = active; |
| 45 | + emit ActiveStateChange(active, msg.sender); |
| 46 | + } |
| 47 | + |
| 48 | + modifier whenActive() { |
| 49 | + if (!_active) { |
| 50 | + return; // Skip execution if not active |
| 51 | + } |
| 52 | + _; // Continue with function execution if active |
| 53 | + } |
| 54 | + |
| 55 | + function setSubnet(SubnetID calldata id) external onlyOwner whenActive { |
| 56 | + subnet = id; |
| 57 | + } |
| 58 | + |
| 59 | + function isAllow(address validator, uint256 power) public view whenActive returns (bool) { |
| 60 | + PowerRange memory range = allowed[validator]; |
| 61 | + return range.min <= power && power <= range.max; |
| 62 | + } |
| 63 | + |
| 64 | + /// Only owner can approve the validator join request |
| 65 | + function approve(address validator, uint256 minPower, uint256 maxPower) external onlyOwner whenActive { |
| 66 | + allowed[validator] = PowerRange({min: minPower, max: maxPower}); |
| 67 | + } |
| 68 | + |
| 69 | + /// Revoke approved power range |
| 70 | + function revoke(address validator) external onlyOwner whenActive { |
| 71 | + delete allowed[validator]; |
| 72 | + } |
| 73 | + |
| 74 | + function interceptPowerDelta(SubnetID memory id, address validator, uint256, /*prevPower*/ uint256 newPower) |
| 75 | + external |
| 76 | + view |
| 77 | + override |
| 78 | + whenActive |
| 79 | + { |
| 80 | + // unstake has checks to avoid newPower being zero, therefore zero means its leaving the network |
| 81 | + if (newPower == 0) return; |
| 82 | + |
| 83 | + SubnetID memory targetSubnet = subnet; |
| 84 | + |
| 85 | + if (!id.equals(targetSubnet)) { |
| 86 | + revert InvalidSubnet(); |
| 87 | + } |
| 88 | + |
| 89 | + if (msg.sender != targetSubnet.getAddress()) { |
| 90 | + revert NotAuthorized(msg.sender); |
| 91 | + } |
| 92 | + |
| 93 | + if (!isAllow(validator, newPower)) { |
| 94 | + revert ValidatorPowerChangeDenied(); |
| 95 | + } |
| 96 | + } |
| 97 | + |
| 98 | + /// @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract |
| 99 | + /// @param newImplementation Address of the new implementation contract |
| 100 | + function _authorizeUpgrade(address newImplementation) internal view override onlyOwner {} // solhint-disable |
| 101 | + // no-empty-blocks |
| 102 | +} |
0 commit comments