Files
contract/lib_openzeppelin_contracts/certora/specs/methods/IAccessControl.spec
dexorder 25def69c66 dexorder
2024-10-17 02:42:28 -04:00

9 lines
380 B
RPMSpec

methods {
function DEFAULT_ADMIN_ROLE() external returns (bytes32) envfree;
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;
}