Created
February 26, 2022 02:29
-
-
Save calvinchengx/ac181313aa92e7430942e7eb04f23aa2 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.21; | |
contract SimpleERC20Token { | |
// Track how many tokens are owned by each address. | |
mapping (address => uint256) public balanceOf; | |
string public name = "Simple ERC20 Token"; | |
string public symbol = "SET"; | |
uint8 public decimals = 18; | |
uint256 public totalSupply = 1000000 * (uint256(10) ** decimals); | |
event Transfer(address indexed from, address indexed to, uint256 value); | |
function SimpleERC20Token() public { | |
// Initially assign all tokens to the contract's creator. | |
balanceOf[msg.sender] = totalSupply; | |
emit Transfer(address(0), msg.sender, totalSupply); | |
} | |
function transfer(address to, uint256 value) public returns (bool success) { | |
require(balanceOf[msg.sender] >= value); | |
balanceOf[msg.sender] -= value; // deduct from sender's balance | |
balanceOf[to] += value; // add to recipient's balance | |
emit Transfer(msg.sender, to, value); | |
return true; | |
} | |
event Approval(address indexed owner, address indexed spender, uint256 value); | |
mapping(address => mapping(address => uint256)) public allowance; | |
function approve(address spender, uint256 value) | |
public | |
returns (bool success) | |
{ | |
allowance[msg.sender][spender] = value; | |
emit Approval(msg.sender, spender, value); | |
return true; | |
} | |
function transferFrom(address from, address to, uint256 value) | |
public | |
returns (bool success) | |
{ | |
require(value <= balanceOf[from]); | |
require(value <= allowance[from][msg.sender]); | |
balanceOf[from] -= value; | |
balanceOf[to] += value; | |
allowance[from][msg.sender] -= value; | |
emit Transfer(from, to, value); | |
return true; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment