Skip to content

Instantly share code, notes, and snippets.

@SeptiyanAndika
Created April 2, 2019 18:19
Show Gist options
  • Save SeptiyanAndika/4c845b0a8d6cd77eb11bf93e7d53d5ed to your computer and use it in GitHub Desktop.
Save SeptiyanAndika/4c845b0a8d6cd77eb11bf93e7d53d5ed to your computer and use it in GitHub Desktop.
pragma solidity >=0.4.22 <0.6.0;
interface ERC20Interface {
function transfer(address _to, uint256 _value) external returns (bool success);
function balanceOf(address _owner) external view returns (uint256 balance);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment