Skip to content

Instantly share code, notes, and snippets.

@bonedaddy
Created October 30, 2017 02:42
Show Gist options
  • Save bonedaddy/cce0ccdfdc6475d8830683f366c3150f to your computer and use it in GitHub Desktop.
Save bonedaddy/cce0ccdfdc6475d8830683f366c3150f to your computer and use it in GitHub Desktop.
interface SomeToken {
function transfer(address _recipient, uint256 _amount);
}
contract ICO {
SomeToken public tokenContract;
function ICO(address _tokenContract) {
tokenContract = SomeToken(_tokenContract);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment