12345678910111213141516171819202122 |
- pragma solidity ^0.4.24;
- import "./ERC20.sol";
- /**
- * @title DetailedERC20 token
- * @dev The decimals are only for visualization purposes.
- * All the operations are done using the smallest and indivisible token unit,
- * just as on Ethereum all the operations are done in wei.
- */
- contract DetailedERC20 is ERC20 {
- string public name;
- string public symbol;
- uint8 public decimals;
- constructor(string _name, string _symbol, uint8 _decimals) public {
- name = _name;
- symbol = _symbol;
- decimals = _decimals;
- }
- }
|