Files
openzeppelin-contracts/certora/specs/methods/IAccessControl.spec
2023-08-10 22:16:17 -06:00

8 lines
310 B
RPMSpec

methods {
function hasRole(bytes32, address) external returns(bool) envfree;
function getRoleAdmin(bytes32) external returns(bytes32) envfree;
function grantRole(bytes32, address) external;
function revokeRole(bytes32, address) external;
function renounceRole(bytes32, address) external;
}