mirror of openzeppelin-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
openzeppelin-contracts/contracts/token/ERC777
Hadrien Croubois a44303c373
Remove double sload when doing math checks in tokens (#2506)
4 years ago
..
ERC777.sol Remove double sload when doing math checks in tokens (#2506) 4 years ago
IERC777.sol Update contracts to support Solidity 0.8.x (#2442) 4 years ago
IERC777Recipient.sol Update contracts to support Solidity 0.8.x (#2442) 4 years ago
IERC777Sender.sol Update contracts to support Solidity 0.8.x (#2442) 4 years ago
README.adoc Fix minor typos and grammar in docs (#2338) 4 years ago

README.adoc

= ERC 777

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

This set of interfaces and contracts are all related to the [ERC777 token standard](https://eips.ethereum.org/EIPS/eip-777).

TIP: For an overview of ERC777 tokens and a walk through on how to create a token contract read our xref:ROOT:erc777.adoc[ERC777 guide].

The token behavior itself is implemented in the core contracts: {IERC777}, {ERC777}.

Additionally there are interfaces used to develop contracts that react to token movements: {IERC777Sender}, {IERC777Recipient}.

== Core

{{IERC777}}

{{ERC777}}

== Hooks

{{IERC777Sender}}

{{IERC777Recipient}}