This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.24; | |
/// @title ERC-20 | |
/// @dev Simplle version of ERC-20 interface | |
/// @author supxinfy | |
contract Ownerable | |
{ | |
address public owner; | |