README.adoc 711 B

1234567891011121314151617
  1. = Meta Transactions
  2. [.readme-notice]
  3. NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/metatx
  4. This directory includes contracts for adding meta-transaction capabilities (i.e. abstracting the execution context from the transaction origin) following the https://eips.ethereum.org/EIPS/eip-2771[ERC-2771 specification].
  5. - {ERC2771Context}: Provides a mechanism to override the sender and calldata of the execution context (`msg.sender` and `msg.data`) with a custom value specified by a trusted forwarder.
  6. - {ERC2771Forwarder}: A production-ready forwarder that relays operation requests signed off-chain by an EOA.
  7. == Core
  8. {{ERC2771Context}}
  9. == Utils
  10. {{ERC2771Forwarder}}