// Abstract contract for the full ERC 20 Token standard// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.mdpragmasolidity ^0.4.26;contractEIP20Interface{
/* This is a slight change to the ERC20 base standard.
function totalSupply() constant returns (uint256 supply);
is replaced with:
uint256 public totalSupply;
This automatically creates a getter function for the totalSupply.
This is moved to the base contract since public getter functions are not
currently recognised as an implementation of the matching abstract
function by the compiler.
*//// total amount of tokensuint256public totalSupply;
/// @param _owner The address from which the balance will be retrieved/// @return The balancefunctionbalanceOf(address _owner) publicviewreturns (uint256 balance);
/// @notice send `_value` token to `_to` from `msg.sender`/// @param _to The address of the recipient/// @param _value The amount of token to be transferred/// @return Whether the transfer was successful or notfunctiontransfer(address _to, uint256 _value) publicreturns (bool success);
/// @notice send `_value` token to `_to` from `_from` on the condition it is approved by `_from`/// @param _from The address of the sender/// @param _to The address of the recipient/// @param _value The amount of token to be transferred/// @return Whether the transfer was successful or notfunctiontransferFrom(address _from, address _to, uint256 _value) publicreturns (bool success);
/// @notice `msg.sender` approves `_spender` to spend `_value` tokens/// @param _spender The address of the account able to transfer the tokens/// @param _value The amount of tokens to be approved for transfer/// @return Whether the approval was successful or notfunctionapprove(address _spender, uint256 _value) publicreturns (bool success);
/// @param _owner The address of the account owning tokens/// @param _spender The address of the account able to transfer the tokens/// @return Amount of remaining tokens allowed to spentfunctionallowance(address _owner, address _spender) publicviewreturns (uint256 remaining);
// solhint-disable-next-line no-simple-event-func-nameeventTransfer(addressindexed _from, addressindexed _to, uint256 _value);
eventApproval(addressindexed _owner, addressindexed _spender, uint256 _value);
}
Contract Source Code
File 2 of 3: SafeMath.sol
pragmasolidity ^0.4.26;/**
* @title SafeMath
* @dev Unsigned math operations with safety checks that revert on error
*/librarySafeMath{
/**
* @dev Multiplies two unsigned integers, reverts on overflow.
*/functionmul(uint256 a, uint256 b) internalpurereturns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the// benefit is lost if 'b' is also tested.// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522if (a ==0) {
return0;
}
uint256 c = a * b;
require(c / a == b);
return c;
}
/**
* @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
*/functiondiv(uint256 a, uint256 b) internalpurereturns (uint256) {
// Solidity only automatically asserts when dividing by 0require(b >0);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;
}
/**
* @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
*/functionsub(uint256 a, uint256 b) internalpurereturns (uint256) {
require(b <= a);
uint256 c = a - b;
return c;
}
/**
* @dev Adds two unsigned integers, reverts on overflow.
*/functionadd(uint256 a, uint256 b) internalpurereturns (uint256) {
uint256 c = a + b;
require(c >= a);
return c;
}
/**
* @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
* reverts when dividing by zero.
*/functionmod(uint256 a, uint256 b) internalpurereturns (uint256) {
require(b !=0);
return a % b;
}
}
Contract Source Code
File 3 of 3: TokenErc20.sol
/*
Implements EIP20 token standard: https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20.md
.*/pragmasolidity ^0.4.26;import"./EIP20Interface.sol";
import"./SafeMath.sol";
contractTokenErc20isEIP20Interface{
uint256constantprivate MAX_UINT256 =2**256-1;
mapping (address=>uint256) public balances;
mapping (address=>mapping (address=>uint256)) public allowed;
/*
NOTE:
The following variables are OPTIONAL vanities. One does not have to include them.
They allow one to customise the token contract & in no way influences the core functionality.
Some wallets/interfaces might not even bother to look at this information.
*/stringpublic name; //fancy name: eg Simon Bucksuint8public decimals; //How many decimals to show.stringpublic symbol; //An identifier: eg SBX//引入safemath库usingSafeMathforuint256;
constructor(uint256 _initialAmount,
string _tokenName,
uint8 _decimalUnits,
string _tokenSymbol
) public{
balances[msg.sender] = _initialAmount; // Give the creator all initial tokens
totalSupply = _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
}
functiontransfer(address _to, uint256 _value) publicreturns (bool success) {
require(balances[msg.sender] >= _value);
balances[msg.sender] =balances[msg.sender].sub( _value);
balances[_to] = balances[_to].add(_value);
emit Transfer(msg.sender, _to, _value); //solhint-disable-line indent, no-unused-varsreturntrue;
}
functiontransferFrom(address _from, address _to, uint256 _value) publicreturns (bool success) {
// uint256 allowance = allowed[_from][msg.sender];// require(balances[_from] >= _value && allowance >= _value);// balances[_to] = balances[_to].add(_value);// balances[_from] = balances[_from].sub(_value);// if (allowance < MAX_UINT256) {// allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);// }// emit Transfer(_from, _to, _value); //solhint-disable-line indent, no-unused-vars// return true;uint256 _allowance = allowed[_from][msg.sender];
assert (balances[_from] >= _value);
assert (_allowance >= _value);
assert (_value >0);
if (_allowance < MAX_UINT256) {
allowed[_from][msg.sender] = _allowance.sub(_value);
}
balances[_to] = balances[_to].add(_value);
balances[_from] = balances[_from].sub(_value);
emit Transfer(_from, _to, _value);
returntrue;
}
functionbalanceOf(address _owner) publicviewreturns (uint256 balance) {
return balances[_owner];
}
functionapprove(address _spender, uint256 _value) publicreturns (bool success) {
// allowed[msg.sender][_spender] = _value;// emit Approval(msg.sender, _spender, _value); //solhint-disable-line indent, no-unused-vars// return true;require((_value ==0) || (allowed[msg.sender][_spender] ==0));
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
returntrue;
}
functionallowance(address _owner, address _spender) publicviewreturns (uint256 remaining) {
return allowed[_owner][_spender];
}
}