mirror of openzeppelin-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
openzeppelin-contracts/contracts/access
Brandon Valosek 7adf0d88a0
Fix AccessControlEnumerable not tracking renounceRole (#2572)
4 years ago
..
AccessControl.sol Add ERC165 interface detection to AccessControl (#2562) 4 years ago
AccessControlEnumerable.sol Fix AccessControlEnumerable not tracking renounceRole (#2572) 4 years ago
Ownable.sol Merge branch 'solc-0.7' into solc-0.8 4 years ago
README.adoc Reorganize the repo structure (#2503) 4 years ago

README.adoc

= Access

[.readme-notice]
NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/access

This directory provides ways to restrict who can access the functions of a contract or when they can do it.

- {AccessControl} provides a general role based access control mechanism. Multiple hierarchical roles can be created and assigned each to multiple accounts.
- {Ownable} is a simpler mechanism with a single owner "role" that can be assigned to a single account. This simpler mechanism can be useful for quick tests but projects with production concerns are likely to outgrow it.

== Authorization

{{Ownable}}

{{AccessControl}}

{{AccessControlEnumerable}}