PermissionGroups

contract PermissionGroups

Source: PermissionGroups.sol

The PermissionGroups contract's maintains function modifiers that makes sure permission conditions are met before executing any proceeding body of code.


INDEX

<AUTOGENERATED_TABLE_OF_CONTENTS>

REFERENCE

Events

AdminClaimed

Event for logging of the change of admin address.


event AdminClaimed(address newAdmin, address previousAdmin) | Parameter | Type | Description | | --------------- |:-------:|:------------------------------:| | newAdmin | address | address of the new admin | | previousAdmin | address | address of the previous admin |

AlerterAdded

Event for logging the addition of an address with alerter role.


event AlerterAdded(address newAlerter, bool isAdd) | Parameter | Type | Description | | ------------ |:-------:|:--------------------------------------------------------------------------:| | newAlerter | address | address of the new alerter | | isAdd | bool | if true, new alerter was added, otherwise false if alerter was removed |

OperatorAdded

Event for logging the addition of an address with operator role.


event OperatorAdded(address newOperator, bool isAdd) | Parameter | Type | Description | | ------------- |:-------:|:----------------------------------------------------------------------------:| | newOperator | address | address of the new operator | | isAdd | bool | if true, new operator was added, otherwise false if operator was removed |

Last updated

Was this helpful?