AccessManager.sol

View Functions

isAdmin

function isAdmin(address admin) public view returns (bool)

Fetch the given address's admin role access status

Call Params

NameTypeDescription

admin

address

address of role access status

Return Values

TypeDescription

bool

given address's admin role access status

isOperator

function isOperator(address operator) public view returns (bool)

Fetch the given address's operator role access status

Call Params

NameTypeDescription

operator

address

address of role access status

Return Values

TypeDescription

bool

given operator's role access status

isIssuer

function isIssuer(address issuer) public view returns (bool)

Fetch the given address's issuer role access status

Call Params

NameTypeDescription

issuer

address

address of role access status

Return Values

TypeDescription

bool

given address's issuer role access status

isMember

function isMember(address member) public view returns (bool)

Fetch the given address's member role access status

Call Params

NameTypeDescription

member

address

address of role access status

Return Values

TypeDescription

bool

given member's role access status

Mutative Functions

grantAdmin

function grantAdmin(address admin) external

Enables addresses with admin level access to grant admin level role access

Call Params

NameTypeDescription

admin

address

address to grant role access

grantOperator

function grantOperator(address operator) external

Enable addresses with admin level access to grant operator role access

Call Params

NameTypeDescription

operator

address

address to grant role access

grantIssuer

function grantIssuer(address issuer) external

Enable addresses with admin level access to grant issuer role access

Call Params

NameTypeDescription

issuer

address

address to grant role access

grantMember

function grantMember(address member) external

Enable addresses with operator level access to grant member role access

Call Params

NameTypeDescription

member

address

address to grant role access

revokeAdmin

function revokeAdmin(address admin) external

Enable addresses with admin level access to revoke admin role access.

Call Params

NameTypeDescription

admin

address

address to revoke role access

revokeOperator

function revokeOperator(address operator) external

Enable addresses with admin level access to revoke operator role access.

Call Params

NameTypeDescription

operator

address

address to revoke role access

revokeIssuer

function revokeIssuer(address issuer) external

Enable addresses with admin level access to revoke issuer role access.

Call Params

NameTypeDescription

issuer

address

address to revoke role access

revokeMember

function revokeMember(address member) external

Enable addresses with operator level access to revoke member role access.

Call Params

NameTypeDescription

member

address

address to revoke role access

Last updated