Skip to content

Instantly share code, notes, and snippets.

@kyriediculous
Last active January 12, 2018 01:52
Show Gist options
  • Save kyriediculous/764c95dd7fd9697a49692da59e721fd9 to your computer and use it in GitHub Desktop.
Save kyriediculous/764c95dd7fd9697a49692da59e721fd9 to your computer and use it in GitHub Desktop.
pragma solidity ^0.4.10;
interface ERC20 {
function balanceOf(address who) public view returns (uint256);
function transfer(address to, uint256 value) public returns (bool);
function allowance(address owner, address spender) public view returns (uint256);
function transferFrom(address from, address to, uint256 value) public returns (bool);
function approve(address spender, uint256 value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment