mirror of
https://github.com/status-im/gitpivot.git
synced 2026-08-27 16:41:08 +00:00
9 lines
201 B
Solidity
9 lines
201 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
/**
|
|
* @title TokenReceiver
|
|
* @dev ERC223 and ERC677
|
|
*/
|
|
contract TokenReceiver {
|
|
function tokenFallback(address _from, uint _value, bytes _data) public returns (bool);
|
|
} |