-
Notifications
You must be signed in to change notification settings - Fork 61
contract.OperatorRole
Aleksey Bykhun edited this page Jan 18, 2023
·
1 revision
Inherits: Context
Roles.Role private _operators;constructor();modifier onlyOperator();function isOperator(address account) public view returns (bool);function _addOperator(address account) internal;function _removeOperator(address account) internal;event OperatorAdded(address indexed account);event OperatorRemoved(address indexed account);