IAccessControl.spec 310 B

1234567
  1. methods {
  2. function hasRole(bytes32, address) external returns(bool) envfree;
  3. function getRoleAdmin(bytes32) external returns(bytes32) envfree;
  4. function grantRole(bytes32, address) external;
  5. function revokeRole(bytes32, address) external;
  6. function renounceRole(bytes32, address) external;
  7. }