AccessManager.sol
function isMember(address member) public view returns (bool)
Fetch the given member's member role access status
Call Params
Name | Type | Description |
---|---|---|
member | address | address of member |
Return Values
Type | Description |
---|---|
bool | given member's role access status |
function isOperator(address operator) public view returns (bool)
Fetch the given operator operator role access status
Call Params
Name | Type | Description |
---|---|---|
operator | address | given operator's role access status |
Return Values
Type | Description |
---|---|
bool | given operator's role access status |
function grantOperator(address operator) external
Enable operators to grant operator role access
Call Params
Name | Type | Description |
---|---|---|
operator | address | address of operator to grant operator role access. |
function grantMember(address member) external
Enable operators to grant member role access
Call Params
Name | Type | Description |
---|---|---|
member | address | address of member to grant member role access. |
function revokeOperator(address operator) external
Enable operators to revoke operator role access.
Call Params
Name | Type | Description |
---|---|---|
operator | address | address of operator to revoke operator role access. |
function revokeMember(address member) external
Enable operators to revoke member role access.
Call Params
Name | Type | Description |
---|---|---|
member | address | address of member to revoke operator role access. |
Last modified 1mo ago