Created
January 3, 2020 01:36
-
-
Save rezarahimian/d61c27ce13891667919ec4aa18beb86d 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_v1 { | |
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); | |
} | |
//Variation of ConsenSys ERC20 implementation | |
//https://github.com/ConsenSys/Tokens/blob/master/contracts/eip20/EIP20.sol | |
contract ERC20_v1 is IERC20_v1 | |
{ | |
uint256 constant private MAX_UINT256 = 2**256 - 1; | |
mapping (address => uint256) public balances; | |
mapping (address => mapping (address => uint256)) public allowed; | |
string public name; //fancy name: eg Simon Bucks | |
uint8 public decimals; //How many decimals to show. | |
string public symbol; //An identifier: eg SBX | |
uint256 private total; //Total supply | |
constructor(uint256 _initialAmount, string memory _tokenName, uint8 _decimalUnits, string memory _tokenSymbol) public { | |
balances[msg.sender] = _initialAmount; // Give the creator all initial tokens | |
total = _initialAmount; // Update total supply | |
name = _tokenName; // Set the name for display purposes | |
decimals = _decimalUnits; // Amount of decimals for display purposes | |
symbol = _tokenSymbol; // Set the symbol for display purposes | |
} | |
function totalSupply() public view returns (uint256) { | |
return total; | |
} | |
function transfer(address _to, uint256 _value) public returns (bool success) { | |
require(balances[msg.sender] >= _value); | |
balances[msg.sender] -= _value; | |
balances[_to] += _value; | |
emit Transfer(msg.sender, _to, _value); //solhint-disable-line indent, no-unused-vars | |
return true; | |
} | |
function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) { | |
uint256 allowance = allowed[_from][msg.sender]; | |
require(balances[_from] >= _value && allowance >= _value); | |
balances[_to] += _value; | |
balances[_from] -= _value; | |
if (allowance < MAX_UINT256) { | |
allowed[_from][msg.sender] -= _value; | |
} | |
emit Transfer(_from, _to, _value); //solhint-disable-line indent, no-unused-vars | |
return true; | |
} | |
function balanceOf(address _owner) public view returns (uint256 balance) { | |
return balances[_owner]; | |
} | |
function approve(address _spender, uint256 _value) public returns (bool success) { | |
allowed[msg.sender][_spender] = _value; | |
emit Approval(msg.sender, _spender, _value); //solhint-disable-line indent, no-unused-vars | |
return true; | |
} | |
function allowance(address _owner, address _spender) public view returns (uint256 remaining) { | |
return allowed[_owner][_spender]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment