IERC777Recipient.sol 361 B

12345678910111213141516
  1. pragma solidity ^0.5.7;
  2. /**
  3. * @title ERC777 token recipient interface
  4. * @dev See https://eips.ethereum.org/EIPS/eip-777
  5. */
  6. interface IERC777Recipient {
  7. function tokensReceived(
  8. address operator,
  9. address from,
  10. address to,
  11. uint amount,
  12. bytes calldata userData,
  13. bytes calldata operatorData
  14. ) external;
  15. }