README.adoc 699 B

1234567891011121314151617181920
  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. * {PullPayment}: A pattern that can be used to avoid reentrancy attacks.
  6. * {ReentrancyGuard}: A modifier that can prevent reentrancy during certain functions.
  7. * {Pausable}: A common emergency response mechanism that can pause functionality while a remediation is pending.
  8. 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].
  9. == Contracts
  10. {{PullPayment}}
  11. {{ReentrancyGuard}}
  12. {{Pausable}}