Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 854 Bytes

OZ Ownable.md

File metadata and controls

25 lines (21 loc) · 854 Bytes

OpenZeppelin Ownable: provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions.

By default, the owner account will be the one that deploys the contract. This can later be changed with transferOwnership.

This module is used through inheritance.

It will make available the modifier onlyOwner, which can be applied to your functions to restrict their use to the owner.


Slide Screenshot

154.jpg


Slide Text

  • Basic Access Control
    • Contract -> Owner
  • Default Owner -> Contract Deployer
  • Exclusive Owner Access -> Special Functions
  • Modifier onlyOwner
  • transferOwnership()

References


Tags