Created
January 12, 2018 04:51
-
-
Save kyriediculous/ecbdb96d535db8ff956869e2c144443e to your computer and use it in GitHub Desktop.
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.10; | |
interface ERC223 { | |
function transfer(address to, uint value, bytes data) public; | |
event Transfer(address indexed from, address indexed to, uint value, bytes indexed data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment