diff --git a/src/extensions/operators/ApprovalRegisterOperators.sol b/src/extensions/operators/ApprovalRegisterOperators.sol index d3444b2..9bdd00f 100644 --- a/src/extensions/operators/ApprovalRegisterOperators.sol +++ b/src/extensions/operators/ApprovalRegisterOperators.sol @@ -7,6 +7,7 @@ import {IApprovalRegisterOperators} from "../../interfaces/extensions/operators/ * @title ApprovalRegisterOperators * @notice Extends SelfRegisterOperators to add approval-based registration */ + abstract contract ApprovalRegisterOperators is SelfRegisterOperators, IApprovalRegisterOperators { uint64 public constant ApprovalRegisterOperators_VERSION = 1; diff --git a/src/interfaces/extensions/operators/IApprovalRegisterOperators.sol b/src/interfaces/extensions/operators/IApprovalRegisterOperators.sol index 12c1a40..5aa416d 100644 --- a/src/interfaces/extensions/operators/IApprovalRegisterOperators.sol +++ b/src/interfaces/extensions/operators/IApprovalRegisterOperators.sol @@ -25,13 +25,17 @@ interface IApprovalRegisterOperators { * @param index The index of the request to retrieve * @return The registration request details */ - function getRegistrationRequest(uint256 index) external view returns (RegistrationRequest memory); + function getRegistrationRequest( + uint256 index + ) external view returns (RegistrationRequest memory); /** * @notice Register an operator based on a pending request * @param requestIndex The index of the request to register */ - function registerOperator(uint256 requestIndex) external; + function registerOperator( + uint256 requestIndex + ) external; /** * @notice Request registration as an operator