README.adoc 782 B

12345678910111213141516171819202122
  1. = Payment
  2. [.readme-notice]
  3. NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/payment
  4. Utilities related to sending and receiving payments. Examples are {PullPayment}, which implements the best security practices when sending funds to third parties, and {PaymentSplitter} to receive incoming payments among a number of beneficiaries.
  5. TIP: When transferring funds to and from untrusted third parties, there is always a security risk of reentrancy. If you would like to learn more about this and ways to protect against it, check out our blog post https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
  6. == Utilities
  7. {{PaymentSplitter}}
  8. {{PullPayment}}
  9. == Escrow
  10. {{Escrow}}
  11. {{ConditionalEscrow}}
  12. {{RefundEscrow}}