Skip to content

contract.OperatorRole

Aleksey Bykhun edited this page Jan 18, 2023 · 1 revision

OperatorRole

Git Source

Inherits: Context

State Variables

_operators

Roles.Role private _operators;

Functions

constructor

constructor();

onlyOperator

modifier onlyOperator();

isOperator

function isOperator(address account) public view returns (bool);

_addOperator

function _addOperator(address account) internal;

_removeOperator

function _removeOperator(address account) internal;

Events

OperatorAdded

event OperatorAdded(address indexed account);

OperatorRemoved

event OperatorRemoved(address indexed account);
Clone this wiki locally