Skip to content

Instantly share code, notes, and snippets.

@decanus
Created July 22, 2018 10:24
Show Gist options
  • Save decanus/a0e7e1dce178253518b98fdbb51ee946 to your computer and use it in GitHub Desktop.
Save decanus/a0e7e1dce178253518b98fdbb51ee946 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.24;
pragma experimental "v0.5.0";
contract Token {
function transfer(address to, uint256 amount) public returns (bool) {
return;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment