Created
January 2, 2020 02:36
-
-
Save rezarahimian/74a500ebe345f89e733f7c9669304673 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.15; | |
contract IERC20 { | |
function totalSupply() external view returns (uint256); | |
function balanceOf(address _account) external view returns (uint256); | |
function transfer(address _to, uint256 _tokens) external returns (bool); | |
function approve(address _spender, uint256 _tokens) external returns (bool); | |
function transferFrom(address _from, address _to, uint256 _tokens) external returns (bool); | |
function allowance(address _account, address _spender) external 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