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.
17 lines
361 B
17 lines
361 B
6 years ago
|
pragma solidity ^0.5.0;
|
||
6 years ago
|
|
||
|
/**
|
||
|
* @title ERC777 token recipient interface
|
||
|
* @dev See https://eips.ethereum.org/EIPS/eip-777
|
||
|
*/
|
||
|
interface IERC777Recipient {
|
||
|
function tokensReceived(
|
||
|
address operator,
|
||
|
address from,
|
||
|
address to,
|
||
|
uint amount,
|
||
|
bytes calldata userData,
|
||
|
bytes calldata operatorData
|
||
|
) external;
|
||
|
}
|