Created
April 2, 2019 18:19
-
-
Save SeptiyanAndika/4c845b0a8d6cd77eb11bf93e7d53d5ed to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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