* make StandardToken state variables private
* simplify mocks
* document new internal functions
* fix link to ERC20 document
* revert order of Transfer and Mint events
* Revert "simplify mocks"
This reverts commit 371fe3e567.
* add tests for new internal functions
* add check for null account
* add checks for balances and allowance
* add inline docs to BurnableToken._burn
* remove redundant checks and clarify why
29 lines
709 B
Solidity
29 lines
709 B
Solidity
pragma solidity ^0.4.24;
|
|
|
|
|
|
import "../token/ERC20/StandardToken.sol";
|
|
|
|
|
|
/**
|
|
* @title SimpleToken
|
|
* @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
|
|
* Note they can later distribute these tokens as they wish using `transfer` and other
|
|
* `StandardToken` functions.
|
|
*/
|
|
contract SimpleToken is StandardToken {
|
|
|
|
string public constant name = "SimpleToken";
|
|
string public constant symbol = "SIM";
|
|
uint8 public constant decimals = 18;
|
|
|
|
uint256 public constant INITIAL_SUPPLY = 10000 * (10 ** uint256(decimals));
|
|
|
|
/**
|
|
* @dev Constructor that gives msg.sender all of existing tokens.
|
|
*/
|
|
constructor() public {
|
|
_mint(msg.sender, INITIAL_SUPPLY);
|
|
}
|
|
|
|
}
|