Files
openzeppelin-contracts/certora/specs/methods/IAccessControl.spec
2023-08-13 10:33:26 -06: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;
}