Skip to content

Instantly share code, notes, and snippets.

@noot
Created July 20, 2018 15:59
Show Gist options
  • Save noot/84d468d70f769b26e1eacd58675ad955 to your computer and use it in GitHub Desktop.
Save noot/84d468d70f769b26e1eacd58675ad955 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.8;
import "./ERC20.sol";
contract ERC223 is ERC20 {
function transfer(address to, uint value, bytes data) returns (bool ok);
function transferFrom(address from, address to, uint value, bytes data) returns (bool ok);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment