Skip to content

Latest commit

 

History

History
142 lines (132 loc) · 4.9 KB

SimpleToken.md

File metadata and controls

142 lines (132 loc) · 4.9 KB

SimpleToken (SimpleToken.sol)

View Source: contracts/examples/SimpleToken.sol

↗ Extends: ERC20

SimpleToken

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 ERC20 functions.

Contract Members

Constants & Variables

string public constant name;
string public constant symbol;
uint8 public constant decimals;
uint256 public constant INITIAL_SUPPLY;

Functions

Contracts