1 2 3 4 5 6 7 8 9 10 11 12 13 14 | pragma solidity 0.4.24; /// @title Interface for token controllers. The controller specifies whether a transfer can be done. contract TokenControllerI { /// @dev Specifies whether a transfer is allowed or not. /// @return True if the transfer is allowed function transferAllowed(address _from, address _to) external view returns (bool); } |