Skip to content

Instantly share code, notes, and snippets.

@kyriediculous
Created January 12, 2018 04:51
Show Gist options
  • Save kyriediculous/ecbdb96d535db8ff956869e2c144443e to your computer and use it in GitHub Desktop.
Save kyriediculous/ecbdb96d535db8ff956869e2c144443e to your computer and use it in GitHub Desktop.
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