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.
16 lines
361 B
16 lines
361 B
pragma solidity ^0.5.0;
|
|
|
|
/**
|
|
* @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;
|
|
}
|
|
|