Anda di halaman 1dari 2

OpenZeppelin/zeppelin-solidity

Code Issues 81 Pull requests 30 Insights

Branch: master
Find file Copy path

zeppelin-solidity/contracts/examples/SimpleToken.sol
b503918 3 days ago
ajsantander Changes to remove warnings
4 contributors
RawBlame History

30 lines (21 sloc) 750 Bytes

pragma solidity ^0.4.18;

import "../token/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.
*/
function SimpleToken() public {
totalSupply = INITIAL_SUPPLY;
balances[msg.sender] = INITIAL_SUPPLY;
}

2017 GitHub, Inc.


Terms
Privacy
Security
Status
Help

Contact GitHub
API
Training
Shop
Blog

Anda mungkin juga menyukai