Francisco Giordano 7c5f6bc2c8 Merge branch 'release-v4.8' 2 سال پیش
..
Pausable.sol 3dac7bbed7 Merge v4.7 back into master (#3516) 3 سال پیش
PullPayment.sol 49c0e4370d 4.8.0 2 سال پیش
README.adoc 24a0bc23cf Reorganize the repo structure (#2503) 4 سال پیش
ReentrancyGuard.sol 7c5f6bc2c8 Merge branch 'release-v4.8' 2 سال پیش

README.adoc

= Security

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

These contracts aim to cover common security practices.

* {PullPayment}: A pattern that can be used to avoid reentrancy attacks.
* {ReentrancyGuard}: A modifier that can prevent reentrancy during certain functions.
* {Pausable}: A common emergency response mechanism that can pause functionality while a remediation is pending.

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].

== Contracts

{{PullPayment}}

{{ReentrancyGuard}}

{{Pausable}}