Francisco Giordano df8a0fe8dc Complete documentation of UUPSUpgradeable %!s(int64=4) %!d(string=hai) anos
..
AccessControl.sol 9a698e6b7b add Available since 4.1 comments %!s(int64=4) %!d(string=hai) anos
AccessControlEnumerable.sol 7adf0d88a0 Fix AccessControlEnumerable not tracking renounceRole (#2572) %!s(int64=4) %!d(string=hai) anos
Ownable.sol 0db76e98f9 Merge branch 'solc-0.7' into solc-0.8 %!s(int64=4) %!d(string=hai) anos
README.adoc df8a0fe8dc Complete documentation of UUPSUpgradeable %!s(int64=4) %!d(string=hai) anos

README.adoc

= Access Control

[.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}}