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.
23 lines
577 B
23 lines
577 B
8 years ago
|
pragma solidity ^0.4.0;
|
||
|
|
||
|
import "../StandardToken.sol";
|
||
|
|
||
|
/*
|
||
|
* 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;
|
||
|
|
||
|
function SimpleToken() {
|
||
|
totalSupply = INITIAL_SUPPLY;
|
||
|
balances[msg.sender] = INITIAL_SUPPLY;
|
||
|
}
|
||
|
|
||
|
}
|