You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
674 B
29 lines
674 B
8 years ago
|
pragma solidity ^0.4.11;
|
||
8 years ago
|
|
||
8 years ago
|
|
||
8 years ago
|
import "./StandardToken.sol";
|
||
8 years ago
|
|
||
8 years ago
|
|
||
8 years ago
|
/**
|
||
|
* @title SimpleToken
|
||
8 years ago
|
* @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.
|
||
8 years ago
|
*/
|
||
|
contract SimpleToken is StandardToken {
|
||
|
|
||
8 years ago
|
string public name = "SimpleToken";
|
||
|
string public symbol = "SIM";
|
||
8 years ago
|
uint256 public decimals = 18;
|
||
|
uint256 public INITIAL_SUPPLY = 10000;
|
||
8 years ago
|
|
||
|
/**
|
||
8 years ago
|
* @dev Contructor that gives msg.sender all of existing tokens.
|
||
|
*/
|
||
8 years ago
|
function SimpleToken() {
|
||
|
totalSupply = INITIAL_SUPPLY;
|
||
|
balances[msg.sender] = INITIAL_SUPPLY;
|
||
|
}
|
||
8 years ago
|
|
||
|
}
|