Created
January 1, 2020 06:50
-
-
Save rezarahimian/22464ecc9320c5716e9241fa40f997ec to your computer and use it in GitHub Desktop.
This file contains hidden or 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.5.0; | |
| contract IERC20 { | |
| function totalSupply() public view returns (uint256); | |
| function balanceOf(address _account) public view returns (uint256); | |
| function transfer(address _to, uint256 _tokens) public returns (bool); | |
| function approve(address _spender, uint256 _tokens) public returns (bool); | |
| function transferFrom(address _from, address _to, uint256 _tokens) public returns (bool); | |
| function allowance(address _account, address _spender) public view returns (uint256); | |
| event Transfer(address indexed _from, address indexed _to, uint256 _tokens); | |
| event Approval(address indexed _tokenOwner, address indexed _spender, uint256 _tokens); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment