-
Notifications
You must be signed in to change notification settings - Fork 5.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
pragma solidity ^0.5.0; | ||
|
||
contract ERC20Basic { | ||
|
||
string public constant name = "ERC20Basic"; | ||
string public constant symbol = "AKC"; | ||
uint8 public constant decimals = 18; | ||
uint256 private constant totalToken = 1000; | ||
|
||
event Approval(address indexed tokenOwner, address indexed spender, uint tokens); | ||
event Transfer(address indexed from, address indexed to, uint tokens); | ||
|
||
|
||
mapping(address => uint256) balances; | ||
|
||
mapping(address => mapping (address => uint256)) allowed; | ||
|
||
uint256 totalSupply_; | ||
|
||
using SafeMath for uint256; | ||
|
||
|
||
constructor(uint256 total) public { | ||
totalSupply_ = totalToken; | ||
balances[msg.sender] = totalSupply_; | ||
} | ||
|
||
function totalSupply() public view returns (uint256) { | ||
return totalSupply_; | ||
} | ||
|
||
function balanceOf(address tokenOwner) public view returns (uint) { | ||
return balances[tokenOwner]; | ||
} | ||
|
||
function transfer(address receiver, uint numTokens) public returns (bool) { | ||
require(numTokens <= balances[msg.sender]); | ||
balances[msg.sender] = balances[msg.sender].sub(numTokens); | ||
balances[receiver] = balances[receiver].add(numTokens); | ||
emit Transfer(msg.sender, receiver, numTokens); | ||
return true; | ||
} | ||
|
||
function approve(address delegate, uint numTokens) public returns (bool) { | ||
allowed[msg.sender][delegate] = numTokens; | ||
emit Approval(msg.sender, delegate, numTokens); | ||
return true; | ||
} | ||
|
||
function allowance(address owner, address delegate) public view returns (uint) { | ||
return allowed[owner][delegate]; | ||
} | ||
|
||
function transferFrom(address owner, address buyer, uint numTokens) public returns (bool) { | ||
require(numTokens <= balances[owner]); | ||
require(numTokens <= allowed[owner][msg.sender]); | ||
|
||
balances[owner] = balances[owner].sub(numTokens); | ||
allowed[owner][msg.sender] = allowed[owner][msg.sender].sub(numTokens); | ||
balances[buyer] = balances[buyer].add(numTokens); | ||
emit Transfer(owner, buyer, numTokens); | ||
return true; | ||
} | ||
} | ||
|
||
library SafeMath { | ||
function sub(uint256 a, uint256 b) internal pure returns (uint256) { | ||
assert(b <= a); | ||
return a - b; | ||
} | ||
|
||
function add(uint256 a, uint256 b) internal pure returns (uint256) { | ||
uint256 c = a + b; | ||
assert(c >= a); | ||
return c; | ||
} | ||
} |