solidity/test/compilationTests/zeppelin/token/SimpleToken.sol

29 lines
671 B
Solidity
Raw Normal View History

2017-07-05 10:28:15 +00:00
pragma solidity ^0.4.11;
import "./StandardToken.sol";
/**
* @title SimpleToken
* @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator.
2017-07-05 10:28:15 +00:00
* Note they can later distribute these tokens as they wish using `transfer` and other
* `StandardToken` functions.
*/
contract SimpleToken is StandardToken {
string public name = "SimpleToken";
string public symbol = "SIM";
uint256 public decimals = 18;
uint256 public INITIAL_SUPPLY = 10000;
/**
* @dev Constructor that gives msg.sender all of existing tokens.
2017-07-05 10:28:15 +00:00
*/
2018-07-04 17:20:51 +00:00
constructor() public {
2017-07-05 10:28:15 +00:00
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}
}