README.adoc 609 B

1234567891011121314151617
  1. = Security
  2. [.readme-notice]
  3. NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/security
  4. These contracts aim to cover common security practices.
  5. * {ReentrancyGuard}: A modifier that can prevent reentrancy during certain functions.
  6. * {Pausable}: A common emergency response mechanism that can pause functionality while a remediation is pending.
  7. TIP: For an overview on reentrancy and the possible mechanisms to prevent it, read our article https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
  8. == Contracts
  9. {{ReentrancyGuard}}
  10. {{Pausable}}