This file contains hidden or 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
7522b1c349405abcf659d8dbff68354d3282d08c7a519fbb8059b603e21df993090ef24ca4712ea42882df6f8b3c4fe9bf9d15ed85b050da1a13aefb7cf4d683 |
This file contains hidden or 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
09c3119106fa5397beda49f5141f1cf8b050cbdc06662629e1862e9ab812fa9285984eb77383c76e204e11770a8cf286b3e263abc15db43e814629d99170065e |
This file contains hidden or 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 Token | |
* @dev Simpler version of ERC20 interface | |
*/ | |
contract Token { | |
function transfer(address to, uint256 value) public returns (bool); | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
} |