Files
openzeppelin-contracts/contracts/token/SimpleToken.sol
2017-05-24 16:47:21 -04:00

30 lines
667 B
Solidity

pragma solidity ^0.4.8;
import "./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 name = "SimpleToken";
string public symbol = "SIM";
uint public decimals = 18;
uint public INITIAL_SUPPLY = 10000;
/**
* @dev Contructor that gives the msg.sender all of existing tokens.
*/
function SimpleToken() {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}
}